Skip to main content

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.

Nordic Financial News API list endpoints use cursor-based pagination for stable results, even as new data is added. All list endpoints (articles, stories, companies, categories, countries, exchanges, indices, sources) support cursor pagination.

How cursor-based pagination works

Every list response includes a pagination object:
{
  "articles": [...],
  "pagination": {
    "count": 25,
    "next_cursor": "eyJpZCI6..."
  }
}
Pass next_cursor as the cursor query parameter to fetch the next page. When next_cursor is null, you’ve reached the end.
# First page
curl -H "Authorization: Bearer $API_KEY" \
  "https://nordicfinancialnews.com/api/v1/articles?limit=25"

# Next page
curl -H "Authorization: Bearer $API_KEY" \
  "https://nordicfinancialnews.com/api/v1/articles?limit=25&cursor=eyJpZCI6..."

Pagination parameters

All Nordic Financial News API list endpoints accept these pagination parameters:
ParameterTypeDefaultDescription
limitinteger25Results per page (1-100)
cursorstringOpaque cursor from a previous response

Cursor types

Different endpoints use different cursor strategies for optimal ordering:
EndpointCursor based onDefault order
Articles, Storiespublished_at + idNewest first
Companies, Countriesname + public_idAlphabetical
Exchanges, Indicesname + public_idAlphabetical
Categories, Sourcesname + public_idAlphabetical
Cursors are opaque and signed. Do not attempt to construct or modify cursor values. Cursor format may change without notice.
When using the q (search) parameter, cursor pagination is replaced by relevance-ranked results. The cursor and q parameters are mutually exclusive.
Last modified on April 18, 2026