Download OpenAPI specification:Download
Available Public and Private calls are described below
symbol: example BIR or SAPP or BTC or any available symbols
symbol required | string Resource identifier |
{- "id": 0,
- "name": "string",
- "decimals": 0,
- "coininfo": "string",
- "walletEnabled": true,
- "symbol": "string"
}
market: example BIR_BTC or SAPP_BTC or LTC_BTC or any available markets
market required | string Resource identifier |
{- "id": 0,
- "market": "string",
- "quote": "string",
- "base": "string",
- "tickSize": 0,
- "minPrice": 0,
- "minVolume": 0
}
Retrieves the collection of Markets resources.
[- {
- "id": 0,
- "market": "string",
- "quote": "string",
- "base": "string",
- "tickSize": 0,
- "minPrice": 0,
- "minVolume": 0
}
]
Retrieves the collection of OrderBook resources.
market required | string Please specify the market (example BIR_BTC, SAPP_BTC ) |
[- {
- "price": 0,
- "amount": 0
}
]
Retrieves a Ticker resource.
market required | string Resource identifier |
{- "id": 0,
- "lastUpdateTimestamp": "string",
- "market": "string",
- "lastPrice": 0,
- "lowestAsk": 0,
- "highestBid": 0,
- "tradingUrl": "string",
- "baseVolume24h": 0,
- "quoteVolume24h": 0
}
Retrieves the collection of Ticker resources.
[- {
- "id": 0,
- "lastUpdateTimestamp": "string",
- "market": "string",
- "lastPrice": 0,
- "lowestAsk": 0,
- "highestBid": 0,
- "tradingUrl": "string",
- "baseVolume24h": 0,
- "quoteVolume24h": 0
}
]
Retrieves the collection of TradeHistory resources.
market required | string Please specify the market (example BIR_BTC, SAPP_BTC ) |
[- {
- "price": 0,
- "amount": 0,
- "type": "string",
- "time": "string",
- "market": "string"
}
]
Please enter your username and password from the trading platform. This API key will be encrypted with your secret string. If you want to invalidate the previous API key just do another call with a different secret string
username | string |
password | string |
secret | string |
{- "username": "YOUR_TRADING_PLATFORM_USERNAME",
- "password": "YOUR_TRADING_PLATFORM_PASSWORD",
- "secret": "zCjYLyh7I5"
}
{- "token": "string"
}
Retrieves the collection of LimitOrders resources.
market required | string Please specify the market (example BIR_BTC, SAPP_BTC ) |
[- {
- "id": "string",
- "price": 0,
- "amount": 0,
- "isMine": 0
}
]
Retrieves the collection of MyFilledOrders resources.
market required | string Please specify the market (example BIR_BTC, SAPP_BTC ) |
[- {
- "id": "string",
- "orderId": "string",
- "market": "string",
- "price": 0,
- "tx": "string",
- "initialAmount": 0,
- "amount": 0,
- "side": "string",
- "timestamp": "string",
- "type": "string",
- "status": "string"
}
]
Retrieves the collection of MyOpenOrders resources.
market required | string Please specify the market (example BIR_BTC, SAPP_BTC ) |
[- {
- "id": "string",
- "market": "string",
- "price": 0,
- "initialAmount": 0,
- "amount": 0,
- "side": "string",
- "type": "string",
- "status": "string",
- "timestamp": "string"
}
]
Retrieves a Order resource.
orderId required | string Resource identifier |
{- "id": "string",
- "amount": 0,
- "filled": 0,
- "remaining": 0,
- "side": "string",
- "price": 0,
- "status": "string",
- "market": "string"
}
market: example BIR_BTC or any available markets
type: buy or sell
price: price for selling or buying
amount: amount for selling or buying
market | string |
type | string |
price | float |
amount | float |
{- "market": "BIR_BTC",
- "type": "buy",
- "price": 0.0000015,
- "amount": 1
}
{- "id": "string"
}
Replaces the Order resource.
orderId required | string Resource identifier |
The updated Order resource
{ }
{- "id": "string",
- "canceled": 0
}