Bitcoin Forum
August 31, 2024, 08:17:30 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] Coinnector.com - different way of exchanging coins  (Read 1658 times)
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 30, 2014, 07:09:41 PM
Last edit: March 31, 2014, 07:41:53 PM by domator
 #1

Seeing last MtGox/Vircurex/etc problems we thought there is no need to keep coins in exchange accounts. We have found a better way to exchange cryptocurrencies safely and instantly.


We are proud to announce
coinnector.com
our new solution for exchanging cryptocurrencies.

How does coinnector.com work?
To convert BTC to LTC (or the other way around), take an address from Your Litecoin wallet and paste it into our site. We will generate a Bitcoin input address for You. From now on, every Bitcoin You send to the input address will be instantly converted to Litecoins and sent back to your Litecoin address. For smaller amounts, it works almost instantly. For bigger amounts, You have to wait a few minutes until we recieve enough confirmations for your transfer (no more than 6 anyway).  

coinnector.com brings you:
  • instant exchange
  • very simple operation (just send coins from Your wallet to get them converted)
  • reduced risk of loosing founds (we don't store your coins)
  • no need to register an account

If you use any scripts or programs for coin transfer you can use our API to check current exchange rates. Use https://coinnector.com/API/ticker/ address to get exchange rates in JSON.

Want to know more?
Check out coinnector.com and read FAQ

How it works?: https://www.youtube.com/watch?v=qp4oFO3sQQA
Tutorials: https://www.youtube.com/watch?v=Ex8eTRw68sU

Communication channels:
site:  https://coinnector.com
email:  coinnector@coinnector.com
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
July 14, 2014, 01:21:04 PM
 #2

Dear All,
We finished stage II of our service. We added Dogecoin (DOGE), Namecoin (NMC) and Peercoin (PPC).
LethalBits
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 04, 2015, 04:12:44 PM
 #3

Are you guys still working ? and do you also have max limits ??
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 04, 2015, 04:26:55 PM
 #4

Yes we do.
We added also Darkcoins lately.
In theory - there is no max limit but - according to faq - it can take longer if amount is big.
LethalBits
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 04, 2015, 04:40:20 PM
 #5

OK I am going to give it a shot ... that's good you people have no limits but what about reservations, is there any way I can know how much reservations you have in advance ?? sorry I am being so noisy here but better researched before I run into any problems.
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 04, 2015, 04:45:04 PM
 #6

In case one's order is bigger than crypto we have in hot-wallet our system 100% automaticaly send money to exchanges and exchange it to desired coins. Than sends back.
LethalBits
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
March 04, 2015, 05:58:21 PM
 #7

Worked perfectly, time taken as it is mentioned in FAQ, thank you guys  Grin will come back soon
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 04, 2015, 06:10:40 PM
 #8

you are welcome :-)
In near future we are going to extend API to make possible creation of channels by API.
domator (OP)
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
May 19, 2015, 09:36:02 AM
 #9

Coinnector API
Address: https://coinnector.com/API/
You have 3 methods you can use.

1. ticker
GET https://coinnector.com/API/ticker/
returns JSON with timestamp and all pairs of cryptocurrencies. Example: "BTC_DOGE":["1883333.205499558",1] means you get 1883333.205499558 DOGE for 1 BTC. Number "1" after rate means, that value is higher (has raised) than minute ago. If there is "-1" - means it is lower than before.


2. create
POST https://coinnector.com/API/create/
Parameters:
   from_curr [an abbreviation of one of the working currencies like BTC, LTC, DRK,....]   
   to_curr   [an abbreviation of one of the working currencies like BTC, LTC, DRK,....]
   address [valid address of to_curr, this is YOUR address, and converted amount of crypto will be sent there]
   email [not obligatory, you can omit]
returns JSON with all info about a newly created channel:
   token: [a unique string to recognize your channel]
   from_curr: [the abbreviation of currency you want to convert, like: BTC, LTC, ...]
   to_curr: [the abbreviation of a desired currency, like: BTC, DOGE, ...]
   input_address: [our address, you will sent your crypto here]
   output_address: [your address, you will get your crypto there]
   created: [the date and time of creation]
   email: [option]
   history: [will be empty at that moment]

3. channel
POST https://coinnector.com/API/channel/
Parameters:
   token: [a unique string you have got during channel creation]
returns JSON with all info about a channel:
   token: [a unique string to recognize your channel]
   from_curr: [the abbreviation of currency you want to convert, like: BTC, LTC, ...]
   to_curr: the abbreviation of desired currency, like: BTC, DOGE, ...]
   input_address: [our address, you will sent your crypto here]
   output_address: [your address, you will get your crypto there]
   created: [the date and time of creation]
   email: [option]
   history: [an array with last 100 transactions you have done through this channel]


php simple example:

function coinnector_api($method, $params = array()){
   $post = http_build_query($params, "", "&");
   $curl = curl_init();
   curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
   curl_setopt($curl, CURLOPT_URL, "https://coinnector.com/API/".$method."/");
   curl_setopt($curl, CURLOPT_POST, true);
   curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
   $ret = curl_exec($curl);
   return ($ret);
}

$rates=file_get_contents('https://coinnector.com/API/ticker/');
$new_channel=coinnector_api('create',array=('from_curr'=>'BTC', 'to_curr'=>'LTC', 'address'=>'LKhn3jqqYm1gtuo8jN5rg6WUnWKkvJJawv', 'email'=>'foo@gmail.com'));
$check_channel=coinnector_api('channel',array('token'=>'03e55269-2aed-1090-c154-49eb800d2e8f'));

REMEMBER: you can create 1 channel per minute. If you want to use Coinnector for any professional integration and it is not enough for you - send us an email coinnector@coinnector.com and we will whitelist your IP.


Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!