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.All plans include API access. Check your plan’s limits in API key settings.
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 additional results.
Example response
{
  "articles": [
    {
      "id": "art_abc123def",
      "title": "Volvo reports record profit",
      "article_url": "https://di.se/articles/volvo-q3-2026",
      "content_type": "news",
      "published_at": "2026-03-15T09:30:00Z",
      "category": { "id": "cat_earnings1", "name": "Earnings & Financial Results" },
      "source": { "name": "Dagens Industri", "domain": "di.se" },
      "company_ids": ["comp_volvo123"],
      "country": "SE"
    }
  ],
  "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.

Disclaimer

This API provides AI-processed, aggregated financial news and data for informational purposes only, not financial advice.

Data is sourced from third parties and may be translated, summarised, or otherwise processed using automated systems. It may contain errors, inaccuracies, omissions, or lack full context.

You are responsible for validating any data before relying on it and for how this data is used in your applications, including compliance with any applicable laws or regulations. Do not use this API as the sole basis for investment or financial decisions.

Nordic Financial News does not guarantee the accuracy, completeness, or timeliness of the data and is not responsible for any loss or damage resulting from its use.

Last modified on April 6, 2026