cURL
curl --request GET \ --url http://localhost:3000/api/v1/exchanges/{identifier} \ --header 'Authorization: Bearer <token>'
{ "exchange": { "id": "exch_nasdaq1", "name": "Nasdaq Stockholm", "mic_code": "XSTO", "acronym": "NASDAQ", "country": { "id": "<string>", "name": "<string>", "iso2_code": "<string>" }, "operating_mic_code": "XSTO", "currency": "SEK", "ticker_suffix": "ST", "timezone": "Europe/Stockholm", "website": "<string>", "city": "<string>" } }
Returns detailed information about a stock exchange, including currency, timezone, and location. Look up by exchange ID (e.g. exch_nasdaq1) or MIC code (e.g. XSTO).
exch_nasdaq1
XSTO
API Key authentication using Bearer token
Bearer token for authentication
Exchange ID or MIC code (e.g. XSTO)
Exchange retrieved successfully
Show child attributes