Skip to main content
GET
/
v1
/
perps
/
symbol_info
Get Symbol Info (TradingView)
curl --request GET \
  --url https://api.ondoperps.xyz/v1/perps/symbol_info \
  --header 'Authorization: Bearer <token>'
{
  "s": "ok",
  "symbol": [
    "AAPL-USD.P",
    "TSLA-USD.P"
  ],
  "description": [
    "Apple Inc. Perpetual",
    "Tesla Inc. Perpetual"
  ],
  "ticker": [
    "AAPL-USD.P",
    "TSLA-USD.P"
  ],
  "currency": [
    "USDC",
    "USDC"
  ],
  "base-currency": [
    "AAPL",
    "TSLA"
  ],
  "type": [
    "perpetual",
    "perpetual"
  ],
  "session-regular": [
    "24x7",
    "24x7"
  ],
  "timezone": [
    "Etc/UTC",
    "Etc/UTC"
  ],
  "minmovement": [
    1,
    1
  ],
  "pricescale": [
    100,
    100
  ],
  "has-intraday": [
    true,
    true
  ],
  "has-no-volume": [
    false,
    false
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

TradingView symbol info response

TradingView UDF symbol info response. Contains arrays of values for each symbol.

s
string

Status

Example:

"ok"

symbol
string[]
description
string[]
ticker
string[]
currency
string[]
base-currency
string[]
type
string[]
session-regular
string[]
timezone
string[]
minmovement
integer[]
pricescale
integer[]
has-intraday
boolean[]
has-no-volume
boolean[]
supported-resolutions
string[][]