Skip to main content
GET
/
exchange
/
api
/
v1
/
symbols
Get Symbols
curl --request GET \
  --url https://api.example.com/exchange/api/v1/symbols
{
  "value": [
    {
      "kind": 123,
      "symbol": "<string>",
      "name": "<string>",
      "isActive": true,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "success": true,
  "timestamp": 123
}

Query Parameters

kind
enum<integer>

The type of spec update. Values include: 0: Market 1: SpotGateway

Available options:
0,
1
isActive
boolean

Checks for the active state of the tradable product. Values include: true false

limit
integer
default:500

The number of rows to return

offset
integer
default:0

The offset of returned rows

Response

Tradable products data

Successful response for the Tradable Product 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