Symbols
GET/api/v1/cex/candle/symbols
Fetch supported symbols accepted by /api/v1/cex/candle
endpoint.
Request
Query Parameters
exchange string
Specifies exchange name
Example: binance
market string
Possible values: [spot
, futures
]
Specifies market type
Example: spot
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
specifies the base symbol
e string
specifies the exchange
id string
specifies the unique id
m string
specifies the market
q string
specifies the quote symbol
s string
specifies the api symbol
[
{
"b": "string",
"e": "string",
"id": "string",
"m": "string",
"q": "string",
"s": "string"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Loading...