API
Trade Classification News API
SITC is the United Nations trade classification used for economic analysis of merchandise trade and includes 2,970 basic headings in Revision 4. It is important for trade research, commodity trend analysis, and long-term comparison of imports and exports.
API Reference Version: 1.0.0 3 Endpoints Authentication
Base URL
https://api.pressmonitor.com Authentication
All requests use Bearer token authentication. Add the Authorization header to every call.
Authorization: Bearer YOUR_API_KEY
x-subscription-id: YOUR_SUB_ID GET
/headlines Get News Headlines
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| code | string | query | Yes | Entity code (e.g., ticker symbol, industry code) |
| lang_code | string | query | No | Filter by language code (ISO 639-1) |
| country_code | string | query | No | Filter by country code (ISO 3166-1 alpha-2) |
| count | integer | query | No | Number of results to return |
| cursor | string | query | No | Pagination cursor (alternative to search_after) |
| sort | string | query | No | Sort order (date or relevance) |
| date_from | string | query | No | Start date for news (YYYY-MM-DD format) |
| date_to | string | query | No | End date for news (YYYY-MM-DD format) |
Code Examples
curl -X GET "https://api.pressmonitor.com/headlines?code=VALUE" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" Responses
200 Success
GET
/briefs Get News Briefs
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| code | string | query | Yes | Entity code (e.g., ticker symbol, industry code) |
| lang_code | string | query | No | Filter by language code (ISO 639-1) |
| country_code | string | query | No | Filter by country code (ISO 3166-1 alpha-2) |
| count | integer | query | No | Number of results to return |
| cursor | string | query | No | Pagination cursor (alternative to search_after) |
| sort | string | query | No | Sort order (date or relevance) |
| date_from | string | query | No | Start date for news (YYYY-MM-DD format) |
| date_to | string | query | No | End date for news (YYYY-MM-DD format) |
Code Examples
curl -X GET "https://api.pressmonitor.com/briefs?code=VALUE" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" Responses
200 Success
GET
/fulltext Get Full-Text News
Parameters
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
| code | string | query | Yes | Entity code (e.g., ticker symbol, industry code) |
| lang_code | string | query | No | Filter by language code (ISO 639-1) |
| country_code | string | query | No | Filter by country code (ISO 3166-1 alpha-2) |
| count | integer | query | No | Number of results to return |
| cursor | string | query | No | Pagination cursor (alternative to search_after) |
| sort | string | query | No | Sort order (date or relevance) |
| date_from | string | query | No | Start date for news (YYYY-MM-DD format) |
| date_to | string | query | No | End date for news (YYYY-MM-DD format) |
Code Examples
curl -X GET "https://api.pressmonitor.com/fulltext?code=VALUE" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" Responses
200 Success