Public

These public endpoints do not require authentication and allow you to fetch essential market information.

Test Connectivity

get

Checks basic connectivity to the Coinlocally server.

Responses
200
Connection normal
get
GET /sapi/v2/ping HTTP/1.1
Host: openapi.coinlocally.com
Accept: */*
200

Connection normal

No content

Check Server Time

get

Returns the current server time.

Responses
200
Successfully retrieved server time
application/json
get
GET /sapi/v2/time HTTP/1.1
Host: openapi.coinlocally.com
Accept: */*
200

Successfully retrieved server time

{
  "timezone": "GMT+08:00",
  "serverTime": 1595563624731
}

Get Pairs List

get

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