Last updated 17 days ago
These public endpoints do not require authentication and allow you to fetch essential market information.
Checks basic connectivity to the Coinlocally server.
GET /sapi/v2/ping HTTP/1.1 Host: openapi.coinlocally.com Accept: */*
Connection normal
No content
Returns the current server time.
GET /sapi/v2/time HTTP/1.1 Host: openapi.coinlocally.com Accept: */*
Successfully retrieved server time
{ "timezone": "GMT+08:00", "serverTime": 1595563624731 }
Returns a list of all trading pairs with precision, limits, and fee details.
GET /sapi/v2/symbols HTTP/1.1 Host: openapi.coinlocally.com Accept: */*
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" } ] }