{currency_pair}: Get trading pair details

API: gateio.ws:gate.io-api
Endpoint: /spot/currency_pairs/{currency_pair}
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 1135ms

Description

Returns trading rules and specifications for a specific trading pair including minimum order sizes, price precision, trading fees, and market order limits. Use this before placing orders to ensure compliance with trading rules.

From spec: Get detailed information about a specific trading pair including trading fees, limits, and precision.

Usage Tips

- Trading pair format is BASE_QUOTE (e.g., BTC_USDT, ETH_BTC) - Check trade_status field - must be 'tradable' for active trading - Precision values indicate decimal places for price and amount - Fee is expressed as a percentage (0.2 = 0.2%) - min_base_amount and min_quote_amount define minimum order sizes

Parameters (1)

currency_pair (string, path, required)

Trading pair in format BASE_QUOTE (e.g., BTC_USDT)

Examples (1)

Get BTC_USDT trading pair details probe-gate

Demonstrates retrieving trading rules and specifications for the BTC/USDT pair including fees and order limits.

curl 'https://api.gateio.ws/api/v4/spot/currency_pairs/BTC_USDT'
import requests

resp = requests.get("https://api.gateio.ws/api/v4/spot/currency_pairs/BTC_USDT")
data = resp.json()
import zingu_apis

api = zingu_apis.api("gateio")
result = api.fetch("spot/currency_pairs/{currency_pair}")

for item in result:
    print(item)
const resp = await fetch("https://api.gateio.ws/api/v4/spot/currency_pairs/BTC_USDT");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 01:04:46.213734 200 1135ms
2026-04-15 01:42:32.867291 200 1376ms
2026-04-14 01:08:38.269942 200 1352ms
2026-04-12 14:27:10.552867 200 1222ms
2026-04-10 01:48:28.344973 200 2483ms
2026-04-09 01:05:05.632025 200 1185ms
2026-04-08 07:23:28.563184 200 1393ms
2026-04-07 00:06:00.805889 200 1542ms
2026-04-05 16:56:39.740366 ERR