Skip to main content
GET
/
v1
/
instruments
Danh sách mã giao dịch
curl --request GET \
  --url https://api-gw.verolabs.co/v1/instruments \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "symbol": "<string>",
      "asset_class": "<string>",
      "status": "<string>",
      "exchange": "<string>",
      "base": "<string>",
      "quote": "<string>",
      "currency": "<string>",
      "isin": "<string>",
      "listing_date": "2023-12-25",
      "delisting_date": "2023-12-25"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Search the available instrument universe by asset class, exchange and symbol prefix.

Search by symbol

Use q to search by symbol prefix.

Filter universe

Use asset_class and exchange to narrow results.

Common use cases

  • Build symbol autocomplete.
  • Check whether a symbol is available.
  • Filter the universe before requesting ticks or candles.

Key parameters

  • asset_class: asset group such as stock, crypto or fx.
  • exchange: market or venue identifier.
  • q: case-insensitive symbol prefix.
  • limit and cursor: pagination controls.

Authorizations

X-API-KEY
string
header
required

API key được cấp cho tài khoản của bạn.

Query Parameters

asset_class
string
Example:

"crypto"

exchange
string
Example:

"BINANCE"

q
string

Tiền tố symbol, không phân biệt hoa thường

Example:

"BTC"

limit
integer
default:1000
Required range: 1 <= x <= 10000
Example:

100

cursor
string

Token phân trang lấy từ next_cursor trước đó.

Response

OK

data
object[]
next_cursor
string | null