Coinlocally Docs
API Document
API Document
  • Introduction
    • API Basic Information
    • HTTP Error Codes
    • General Information
    • Limits
    • Endpoint Security Type
    • Signature Authentication
    • Timing Security
    • SIGNED Endpoint Example
  • Changelog
  • Spot
    • Public
    • Market
    • Trade
    • Account
  • Futures
    • Public
    • Market
    • Trade
    • Account
  • Margin
  • Withdraw
  • WebSocket
    • Spot
    • Futures
  • Official SDK
  • Enums
  • Error
  • FAQ
Powered by GitBook
On this page
  1. Spot

Public

PreviousSpotNextMarket

Last updated 17 days ago

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"
    }
  ]
}
  • GETTest Connectivity
  • GETCheck Server Time
  • GETGet Pairs List