Skip to main content
GET
/
v1
/
news
/
{company}
Company news articles
curl --request GET \
  --url https://api.ngnmarket.com/v1/news/{company} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "company": "DANGCEM",
    "data": [
      {
        "title": "Dangote Cement reports record Q1 revenue amid price hike",
        "link": "https://businessday.ng/markets/article/dangote-cement-q1-revenue",
        "source": "BusinessDay",
        "pubDate": "Thu, 17 Apr 2026 10:30:00 GMT",
        "daysOld": 4,
        "timeAgo": "4 days ago",
        "guid": "https://businessday.ng/markets/article/dangote-cement-q1-revenue"
      },
      {
        "title": "NGX: DANGCEM leads advancers as cement stocks rally",
        "link": "https://nairametrics.com/2026/04/14/ngx-dangcem-leads",
        "source": "Nairametrics",
        "pubDate": "Mon, 14 Apr 2026 08:15:00 GMT",
        "daysOld": 7,
        "timeAgo": "1 week ago",
        "guid": "https://nairametrics.com/2026/04/14/ngx-dangcem-leads"
      }
    ],
    "total": 2
  },
  "meta": {
    "plan": "starter",
    "calls_used": 4822,
    "calls_remaining": 95178,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}
This endpoint returns up to five recent news articles related to a specific company, sourced in real time from Nigerian financial news outlets. You can pass either a company name or its NGX ticker symbol. Articles older than 90 days are automatically excluded. News is fetched live on each request, so response times may be slightly higher than other endpoints. If no articles are found within the past 90 days, the data array is empty. This endpoint requires a Starter plan or higher.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Path Parameters

company
string
required

Company name or NGX ticker symbol (e.g. DANGCEM or Dangote Cement). URL-encode spaces.

Example:

"DANGCEM"

Response

News articles retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object