Skip to main content
GET
/
exchange
/
api
/
v1
/
exchange_info
Get Exchange Info
curl --request GET \
  --url https://api.example.com/exchange/api/v1/exchange_info
{
  "value": {
    "settlementsInfo": [
      {
        "type": "<string>",
        "durationValue": "<string>",
        "durationUnit": "<string>"
      }
    ],
    "assets": [
      "<string>"
    ],
    "symbols": [
      {
        "symbol": "<string>",
        "tickSize": "<string>",
        "maxOrderNotional": "<string>",
        "maxTakerPriceDeviation": "<string>",
        "minOrderSize": "<string>",
        "kind": "SingleNamePerpetual"
      }
    ]
  },
  "success": true,
  "timestamp": 123
}

Response

Exchange info data

Successful response for the Exchange Info API

value
object
required

The value of the response.

success
boolean
required

Whether the request was successful

timestamp
number
required

The timestamp of the response

Example:

1673031089

Last modified on April 27, 2026