Public
These public endpoints do not require authentication and allow you to fetch essential market information.
Returns a list of all trading pairs with precision, limits, and fee details.
Responses
200
Successful response with trading pairs
application/json
get
GET /sapi/v2/symbols HTTP/1.1
Host: openapi.coinlocally.com
Accept: */*
200
Successful response with trading pairs
{
"symbols": [
{
"quantityPrecision": 3,
"symbol": "sccadai",
"pricePrecision": 6,
"baseAsset": "SCCA",
"quoteAsset": "DAI",
"limitAmountMin": "100",
"limitPriceMin": "123.45",
"limitVolumeMin": "10",
"feeRateMaker": "0.002",
"feeRateTaker": "0.002"
},
{
"quantityPrecision": 8,
"symbol": "btcusdt",
"pricePrecision": 2,
"baseAsset": "BTC",
"quoteAsset": "USDT",
"limitAmountMin": "100",
"limitPriceMin": "123.45",
"limitVolumeMin": "10",
"feeRateMaker": "0.002",
"feeRateTaker": "0.002"
}
]
}
Last updated