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. Futures

Public

PreviousFuturesNextMarket

Last updated 17 days ago

Test Connectivity

get

Checks connectivity to the host.

Responses
200
Connection successful
application/json
get
GET /fapi/v1/ping HTTP/1.1
Host: futuresopenapi.coinlocally.com
Accept: */*
200

Connection successful

{}

Check Server Time

get

Returns the server time and time zone.

Responses
200
Successfully retrieved server time
application/json
get
GET /fapi/v1/time HTTP/1.1
Host: futuresopenapi.coinlocally.com
Accept: */*
200

Successfully retrieved server time

{
  "serverTime": 1607702400000,
  "timezone": "China standard time"
}

Contract List

get

Retrieves the list of available futures contracts.

Responses
200
List of contract specifications
application/json
get
GET /fapi/v1/contracts HTTP/1.1
Host: futuresopenapi.coinlocally.com
Accept: */*
200

List of contract specifications

[
  {
    "symbol": "H-HT-USDT",
    "pricePrecision": 8,
    "side": 1,
    "maxMarketVolume": 100000,
    "multiplier": 6,
    "minOrderVolume": 1,
    "maxMarketMoney": 10000000,
    "type": "H",
    "maxLimitVolume": 1000000,
    "maxValidOrder": 20,
    "multiplierCoin": "HT",
    "minOrderMoney": 0.001,
    "maxLimitMoney": 1000000,
    "status": 1,
    "minLever": 1,
    "maxLever": 75,
    "openTakerFee": 0.0002,
    "openMakerFee": 0.0002,
    "closeTakerFee": 0.0002,
    "closeMakerFee": 0.0002
  }
]
  • GETTest Connectivity
  • GETCheck Server Time
  • GETContract List