Skip to main content
GET
/
v1
/
blog
/
company
/
{symbol}
Posts tagged to an NGX-listed stock
curl --request GET \
  --url https://api.ngnmarket.com/v1/blog/company/{symbol} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "symbol": "DANGCEM",
    "data": [
      {
        "slug": "dangote-cement-q1-analysis",
        "title": "Dangote Cement Q1 2026 Results: What the Numbers Say",
        "excerpt": "A breakdown of Dangote Cement's Q1 2026 financial results.",
        "coverImage": "",
        "publishedDate": "2026-04-07T11:30:00.000Z",
        "categories": [
          "corporate-news"
        ],
        "tags": [
          "DANGCEM",
          "cement",
          "earnings"
        ],
        "companies": [
          "DANGCEM"
        ],
        "url": "https://ngnmarket.com/blog/dangote-cement-q1-analysis"
      },
      {
        "slug": "ngx-cement-sector-outlook",
        "title": "NGX Cement Sector: Competitive Dynamics in 2026",
        "excerpt": "How DANGCEM, WAPCO, and BUA Cement are positioning.",
        "coverImage": "https://ngnmarket.com/images/blog/cement-sector.jpg",
        "publishedDate": "2026-03-15T09:00:00.000Z",
        "categories": [
          "markets"
        ],
        "tags": [
          "DANGCEM",
          "WAPCO",
          "cement"
        ],
        "companies": [
          "DANGCEM",
          "WAPCO"
        ],
        "url": "https://ngnmarket.com/blog/ngx-cement-sector-outlook"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 2,
      "pages": 1,
      "hasNext": false,
      "hasPrev": false
    }
  },
  "meta": {
    "plan": "free",
    "calls_used": 317,
    "calls_remaining": 9683,
    "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.

Returns all published posts explicitly tagged to the given NGX ticker symbol. This is a direct lookup on the companies field, so there’s no fuzzy matching or AI expansion. If a post covers DANGCEM, it will always appear here. Use this endpoint to build “Related articles” sections on stock pages, or to power company-specific news feeds.
Pass the ticker symbol exactly as used on the NGX (e.g. DANGCEM, MTNN, GTCO). The lookup is case-insensitive.

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

page
integer
default:1

Page number. Defaults to 1. Each page contains up to 20 posts.

Required range: x >= 1

Response

Company posts retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object