Skip to main content
GET
/
api
/
v1
/
countries
List Countries
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/countries \
  --header 'Authorization: Bearer <token>'
{
  "countries": [
    {
      "id": "ctry_sweden12",
      "name": "Sweden",
      "iso2_code": "SE"
    }
  ],
  "pagination": {
    "count": 1,
    "next_cursor": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nordicfinancialnews.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Query Parameters

limit
integer

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

cursor
string

Opaque pagination cursor from a previous response.

fields
string

Comma-separated list of fields to include. Available fields: id, name, iso2_code.

Response

200 - application/json

Countries retrieved successfully

countries
object[]
required
pagination
object
Last modified on April 20, 2026