Pools
GET/api/v1/dex/pools
Fetch supported pools accepted by /api/v1/dex/trade
, /api/v1/dex/candle
and /api/v1/dex/liquidity
endpoints.
Request
Query Parameters
exchange string
Specifies exchange name
Example: dragonswap
chain string
Specifies the chain name
Example: kaia_mainnet
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
specifies the base symbol
ba string
specifies the base token address
c string
specifies the chain
e string
specifies the exchange
id string
specifies the unique id
pa string
specifies the pool address
q string
specifies the quote symbol
qa string
specifies the quote token address
[
{
"b": "string",
"ba": "string",
"c": "string",
"e": "string",
"id": "string",
"pa": "string",
"q": "string",
"qa": "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...