Skip to main content
GET
/
api
/
v1
/
countries
/
{identifier}
/
exchanges
List country exchanges
curl --request GET \
  --url http://localhost:3000/api/v1/countries/{identifier}/exchanges \
  --header 'Authorization: Bearer <token>'
{
  "exchanges": [
    {
      "id": "exch_nasdaq1",
      "name": "Nasdaq Stockholm",
      "mic_code": "XSTO",
      "acronym": "NASDAQ",
      "country": {
        "id": "<string>",
        "name": "<string>",
        "iso2_code": "<string>"
      }
    }
  ],
  "pagination": {
    "count": 123,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

Authorization
string
required

Bearer token for authentication

Path Parameters

identifier
string
required

Country ID, ISO 3166-1 alpha-2 code (e.g. SE), or slug (e.g. sweden)

Query Parameters

limit
integer

Number of exchanges to return per page (default 25, max 100).

cursor
string

Opaque pagination cursor from a previous response.

Response

Country exchanges retrieved successfully

exchanges
object[]
required
pagination
object