Community Exchange API Documentation
Exchange Info
GET https://api.new.capital/v1/exchangeInfo
Current exchange trading rules and symbol information
{
"timezone": "UTC",
"serverTime": 1561977363,
"symbols": [{
"symbol": "FIX_TWINS",
"baseAsset": "FIX",
"baseAssetPrecision": 8,
"quoteAsset": "TWINS",
"baseAssetName":"FIX Network",
"quotePrecision": 4,
"orderTypes": [
// These are defined in the `ENUM definitions` section under `Order types (orderTypes)`.
// All orderTypes are optional.
],
"24h_volume":{"BTC":"0.03242766","TWINS":"423731.95413994"},
"usd_price":{"BTC":"11395.58","TWINS":"0.000872"}}
}]
}{
"message": "Not Found"
}24hr ticker price change statistics
GET https://api.new.capital/v1/ticker
24-hour rolling window price change statistics. Careful when accessing this with no symbol.
Query Parameters
Name
Type
Description
symbol
string
ex: FIX_TWINS
Recent trades list
GET https://api.new.capital/v1/trades
Get recent trades (up to last 500).
Query Parameters
Name
Type
Description
limit
integer
Default 500; max 1000
symbol
string
ex: BTC_TWINS
Order book
GET https://api.new.capital/v1/depth
Get asks and bids
Query Parameters
Name
Type
Description
limit
integer
Default 100; max 1000.
symbol
string
ex: BTC_TWINS
Last updated
Was this helpful?