Skip to main content
GET
/
crypto
/
symbols
Available Symbols
curl --request GET \
  --url https://api.tradewatch.io/crypto/symbols \
  --header 'api-key: <api-key>'
{
  "items": [
    {
      "symbol": "<string>",
      "name": "<string>"
    }
  ],
  "total": 123,
  "current_page": "<string>",
  "current_page_backwards": "<string>",
  "previous_page": "<string>",
  "next_page": "<string>"
}

Authorizations

api-key
string
header
required

Authentication via API key header

Query Parameters

size
integer
default:10

The number of items per page.

mode
enum<string>
default:base

The mode of the response. Mode of the symbols list. 'base' returns only symbols, 'full' returns symbols with their names.

Available options:
full,
base
cursor
string

Cursor for the next page

Response

Successful Response

items
SymbolsOutFull · object[]
required
total
integer | null

Total items

current_page
string | null

Cursor to refetch the current page

current_page_backwards
string | null

Cursor to refetch the current page starting from the last item

previous_page
string | null

Cursor for the previous page

next_page
string | null

Cursor for the next page