Skip to main content
GET
/
stocks
/
symbols
Available Symbols
curl --request GET \
  --url https://api.tradewatch.io/stocks/symbols \
  --header 'api-key: <api-key>'
{
  "items": [
    {
      "symbol": "<string>",
      "name": "<string>",
      "country": "<string>",
      "description": "<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.

country
enum<string> | null
default:all

The country associated with the symbol (see ISO 3166-1 alpha-2)

Available options:
cn,
de,
us,
ch,
uk,
gr,
fr,
be,
es,
nl,
nz,
pt,
it,
all
cursor
string

Cursor for the next page

Response

Successful Response

items
SymbolsOutFullStocks · 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