Skip to main content

Quick start

The Company News Monitoring API returns the latest news articles for a given company. Each result is enriched with an AI-generated summary, event classification, publisher metadata, sentiment, company mentions, geography, industry tags, and scraped article text. Results are returned synchronously in the HTTP response.
This is a synchronous API. The results are returned directly in the HTTP response. Use limit and offset to paginate larger result sets.

Endpoint

Method: GET /api/v1/company/news/

Base URL

https://api.akta.pro

Authentication

Pass your API key in the x-api-key request header. -H "x-api-key: YOUR_API_KEY"
Do not expose production API keys in client-side code, public repositories, screenshots, or shared documentation. The examples below use a placeholder key.

Sample request

Request reference

Query parameters

Filtering by selected categories

Use category when you only want specific types of company events. Multiple categories should be passed as a comma-separated string.

Response

A successful response returns a status, article array, count of records in the current response, total matching articles, and pagination metadata.

Top-level response fields

Article object fields

Pagination

Use limit and offset together to paginate through matching articles.
The response includes both count and total. Use count to understand how many records were returned in the current response, and total to understand how many records match the filters overall.

Implementation notes

  • Use company for the target company identifier and add a date range when monitoring a defined period.
  • Use category to narrow results to event types that matter for the workflow.
  • Use blacklisted to exclude irrelevant or low-value publishers.
  • Use limit and offset for pagination rather than requesting a large result set at once.
  • Store url, title, published_date, publisher, primary_tag, sentiment, and ai_summary for most monitoring dashboards.
  • Store scraped_text only when downstream workflows need full article text.

Use your API key directly

You can also use your API key directly in your own code by passing it in the x-api-key request header.