Skip to main content
GET
/
v1
/
companies
/
{symbol}
/
news
Company news by ticker symbol
curl --request GET \
  --url https://api.ngnmarket.com/v1/companies/{symbol}/news \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "company": "Dangote Cement Plc",
    "data": [
      {
        "title": "Dangote Cement reports record Q1 revenue amid price hike",
        "link": "https://businessday.ng/markets/article/dangote-cement-q1-revenue",
        "source": "BusinessDay",
        "pub_date": "Thu, 17 Apr 2026 10:30:00 GMT",
        "days_old": 4,
        "time_ago": "4 days ago",
        "guid": "https://businessday.ng/markets/article/dangote-cement-q1-revenue"
      }
    ],
    "total": 1
  },
  "meta": {
    "plan": "starter",
    "calls_used": 4823,
    "calls_remaining": 95177,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ngnmarket.com/llms.txt

Use this file to discover all available pages before exploring further.

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

symbol
string
required

NGX ticker symbol (e.g. DANGCEM). Case-insensitive.

Example:

"DANGCEM"

Query Parameters

limit
integer
default:10

Maximum number of articles to return (1–50). Defaults to 10.

Required range: 1 <= x <= 50
maxAge
integer
default:90

Maximum age of articles in days (1–365). Defaults to 90.

Required range: 1 <= x <= 365

Response

News articles retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object