Skip to main content
GET
/
v1
/
crypto
/
trading-pair
Get Trading Pair Information
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/crypto/trading-pair \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "base": "<string>",
    "created_at": "<string>",
    "exchange": "<string>",
    "id": 123,
    "instrument_type": 123,
    "is_valid": true,
    "quote": "<string>",
    "symbol": "<string>",
    "updated_at": "<string>"
  },
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

base
string
required

Base currency (e.g., BTC)

quote
string
required

Quote currency (e.g., USDT)

Response

Successfully retrieved trading pair

data
object
error
object
pagination
any
request_id
string
success
boolean