GET
/
v2
/
news
/
List Mining News
curl --request GET \
  --url https://api.sectors.app/v2/news/ \
  --header 'Authorization: <authorization>'
{
    "count": 68,
    "next": "https://api.example.com/v2/news/?page=2&page_size=20",
    "previous": null,
    "results": [
        {
            "id": 237,
            "title": "Indonesia Nickel HPM Climbs to $15,000.33/dmt in September 2025",
            "source": "https://nikel.co.id/2025/09/15/harga-patokan-nikel-naik-jadi-us-15-00033-per-dmt-pada-september-periode-ii/",
            "timestamp": "2025-09-15 13:34:33"
        },
        {
            "id": 232,
            "title": "Indonesia cites lack of forestry permits in land seizures from nickel miners",
            "source": "https://www.mining.com/web/indonesia-cites-lack-of-forestry-permits-in-land-seizures-from-nickel-miners/",
            "timestamp": "2025-09-12 00:00:00"
        }
    ]
}
{
    "count": 68,
    "next": "https://api.example.com/v2/news/?page=2&page_size=20",
    "previous": null,
    "results": [
        {
            "id": 237,
            "title": "Indonesia Nickel HPM Climbs to $15,000.33/dmt in September 2025",
            "source": "https://nikel.co.id/2025/09/15/harga-patokan-nikel-naik-jadi-us-15-00033-per-dmt-pada-september-periode-ii/",
            "timestamp": "2025-09-15 13:34:33"
        },
        {
            "id": 232,
            "title": "Indonesia cites lack of forestry permits in land seizures from nickel miners",
            "source": "https://www.mining.com/web/indonesia-cites-lack-of-forestry-permits-in-land-seizures-from-nickel-miners/",
            "timestamp": "2025-09-12 00:00:00"
        }
    ]
}
Authorization
string
required
Authorization header that should be filled with your Sectors Financial API key.

Query Parameters

keyword
string
Performs a full-text search on the titles of news articles.
commodity
string
Filters news articles that are related to a specific commodity.
page
integer
default:"1"
The page number for paginated results.
page_size
integer
default:"20"
The number of items to return per page. Maximum value is 30.

Response

<PaginatedNewsResponse>
object