Skip to main content
1

Create an account and generate an API key

Sign up for a Nordic Financial News account, then navigate to Settings > API Keys to generate your key.API access is available on Plus and Pro plans.
2

Make your first request

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://nordicfinancialnews.com/api/v1/articles?limit=5"
3

Explore the response

Every list endpoint returns a resource array (e.g. articles, stories) along with pagination cursors. Use the cursor parameter to page through results.
Example response
{
  "articles": [
    {
      "id": "art_abc123def",
      "title": "Volvo rapporterar rekordvinst",
      "title_en": "Volvo reports record profit",
      "summary_en": "Volvo Group reported record quarterly profit...",
      "content_type": "news",
      "published_at": "2024-06-15T10:30:00Z",
      "country": "SE",
      "companies": [
        { "id": "comp_volvo123", "name": "Volvo Group", "ticker_symbol": "VOLV-B.ST" }
      ]
    }
  ],
  "pagination": {
    "count": 5,
    "next_cursor": "eyJpZCI6..."
  }
}

Next steps

Authentication

Learn about API keys, scopes, and rate limits.

API reference

Browse all endpoints with interactive examples.