Connect Multiple Crypto Exchanges with Single API

CoinRay makes it easy to connect your backend to multiple cryptocurrency exchanges.
It converts all the different API's into 1 simple and easy to use API.

CoinRay API

Every exchange in the Crypto Currency eco system has it's own API's, rate limits and quircks.

CoinRay is designed to make it easy to create your crypto currency trading platform.
You only have to know the CoinRay API and you can instantly get access to all the support exchanges.
15
Exchanges
10,000+
Markets

Data examples

Below you can find some sample data returned by the API.
Candle stick
[
   [
   1526925600,       // Time
   "8400.00000000",  // Open
   "8400.0",         // High
   "8367.0",         // Low
   "8367.00000000",  // Close
   "6850.02843554"   // Volume
 ],
 [
   1526929200,       // Time
   "8371.47314065",  // Open
   "8400.0",         // High
   "8313.72841382",  // Low
   "8317.00000005",  // Close
   "16278.186919"    // Volume
 ],
]
Order book
{
 "bids": [
   [
     "6334.93778968", // Price
     "0.09167001"     // Quantity
   ],
   [
     "6334.93778967", // Price
     "0.00049168"     // Quantity
   ]
 ]
 "asks": [
   [
     "6336.0",        // Price
     "0.00027829"     // Quantity
   ],
   [
     "6372.0",        // Price
     "0.01322749"     // Quantity
   ]
 ]
}
Trades
[
 [
   "d89bc21d7....",  // orderId
   1530522212,       // Time
   "6372.89137849",  // Price
   "0.00096552",     // Quantity
   "buy"             // Type
 ],
 [
   "1daf0f361....",  // orderId
   1530522210,       // Time
   "6372.89137848",  // Price
   "0.000197",       // Quantity
   "buy"             // Type
 ]
]