Returns a paginated list of live, translated articles ordered by publication date (newest first). Supports filtering by country, category, company ticker, and content type. Use updated_after for incremental syncing, or q for full-text search ranked by relevance. Use ids for batch lookup of specific articles. Responses include cursor-based pagination and support field projection to minimize payload size.
API Key authentication using Bearer token
Bearer token for authentication
Number of articles to return per page (default 25, max 100).
Opaque pagination cursor returned as pagination.next_cursor from a previous response. Mutually exclusive with q.
Comma-separated list of fields to include in the response. Reduces payload size. Available fields: id, title, title_en, summary_en, article_url, content_type, published_at, story_ids, source, companies, country, category, image_url.
ISO 8601 datetime. Returns only articles updated after this timestamp. Use this for polling-based real-time updates: store the timestamp of your last sync, then request only newer results on each poll (see the Real-Time Updates guide at /api-docs). Disables cursor pagination — all matching results are returned in a single response.
Full-text search query (2-200 characters). Results are ranked by relevance instead of publication date. Mutually exclusive with cursor. Disables caching.
Filter by country using ISO 3166-1 alpha-2 code (e.g. SE, NO, DK).
Filter by company stock ticker symbol. Returns articles mentioning the company.
Filter by article content type.
news, analysis, press_release, market_commentary, market_news, trading_halt, trading_event, other ISO 8601 datetime. Returns articles published on or after this timestamp.
ISO 8601 datetime. Returns articles published before this timestamp.
Comma-separated list of article IDs for batch lookup (max 100). Cannot be combined with cursor or updated_after.
Articles retrieved successfully