Skip to main content
GET
/
v2
/
news
News Articles
curl --request GET \
  --url https://api.sectors.app/v2/news/ \
  --header 'Authorization: <api-key>'
{ "results": [ { "created_at": "2026-03-06T03:58:02.988713+00:00", "title": "1 Inti Dot Com buy Shares of PT NFC Indonesia Tbk", "body": "...", "source": "https://...", "timestamp": "2026-03-06T10:46:27", "sector": "technology", "sub_sector": [ "software-it-services" ], "tags": [ "Insider Trading" ], "tickers": [ "NFCX.JK" ], "dimension": null } ], "pagination": { "total_count": 3824, "showing": 1, "limit": 20, "offset": 0, "has_next": true, "has_previous": false, "next_offset": 20, "previous_offset": null } }

Authorizations

Authorization
string
header
required

API key passed directly in the Authorization header (without Bearer prefix).

Query Parameters

sector
string

IDX only. Comma-separated sector slugs (kebab-case).

sub_sector
string

IDX only. Comma-separated subsector slugs (kebab-case).

commodity_type
string

Mining only. Filter by commodity type. E.g. Coal, Nickel.

start
string

ISO date (YYYY-MM-DD). Filter articles on or after this date.

end
string

ISO date (YYYY-MM-DD). Filter articles on or before this date.

limit
integer
default:20

Items per page. Max 30.

offset
integer
default:0

Items to skip for pagination.

tags
string

IDX only. Comma-separated tag slugs. Get valid values from the News Tags endpoint.

tickers
string

IDX only. Comma-separated ticker symbols. E.g. BBCA,BBRI.

extension
enum<string>
default:idx

Data source. Default idx.

Available options:
idx,
mining
keyword
string

Mining only. Full-text search on article titles.

Response

Paginated list of news articles.

results
object[]
required
pagination
object
required