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.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.
How cursor-based pagination works
Every list response includes apagination object:
next_cursor as the cursor query parameter to fetch the next page. When next_cursor is null, you’ve reached the end.
Pagination parameters
All Nordic Financial News API list endpoints accept these pagination parameters:| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 25 | Results per page (1-100) |
cursor | string | — | Opaque cursor from a previous response |
Cursor types
Different endpoints use different cursor strategies for optimal ordering:| Endpoint | Cursor based on | Default order |
|---|---|---|
| Articles, Stories | published_at + id | Newest first |
| Companies, Countries | name + public_id | Alphabetical |
| Exchanges, Indices | name + public_id | Alphabetical |
| Categories, Sources | name + public_id | Alphabetical |
When using the
q (search) parameter, cursor pagination is replaced by relevance-ranked results. The cursor and q parameters are mutually exclusive.