Skip to main content
GET
/
api
/
v1
/
sources
List Sources
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/sources \
  --header 'Authorization: Bearer <token>'
{
  "sources": [
    {
      "id": "abc123def456",
      "name": "Dagens Industri",
      "domain": "di.se",
      "country": "SE"
    },
    {
      "id": "ghi789jkl012",
      "name": "Dagens Nyheter",
      "domain": "dn.se",
      "country": "SE"
    }
  ],
  "pagination": {
    "count": 2,
    "next_cursor": null
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

If-None-Match
string

ETag value from a previous response. Returns 304 Not Modified if data has not changed.

Query Parameters

limit
integer

Number of sources 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, domain, country.

Response

Sources retrieved

sources
object[]
pagination
object
Last modified on April 20, 2026