List active Swiss stock symbols
Paginated list of all active stock symbols traded on Swiss exchanges.
Use the optional search parameter for substring filtering on symbol or name.
Request
Add parameter in header X-API-Key
Example:X-API-Key: ********************
or
Request Code Samples
curl --location --request GET '/api/stocks/symbols?limit=50&offset&search=NES' \
--header 'X-API-Key: <api-key>'
Responses
{
"success": true,
"data": {
"total": 250,
"items": [
{
"id": 0,
"symbol": "string",
"name": "string",
"currency": "string",
"exchange": "string",
"mic_code": "string",
"country": "string",
"type": "string",
"logo_url": "string",
"is_active": true
}
]
}
}
Modified at 2026-05-01 06:16:37