Skip to main content
GET
/
v1
/
blog
/
search
AI-powered blog post search
curl --request GET \
  --url https://api.ngnmarket.com/v1/blog/search \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "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.",
        "cover_image": "https://ngnmarket.com/images/blog/dangote-cement-q1.jpg",
        "published_date": "2026-04-07",
        "categories": [
          "corporate-news"
        ],
        "tags": [
          "earnings"
        ],
        "companies": [
          "DANGCEM"
        ],
        "url": "https://ngnmarket.com/blog/dangote-cement-q1-analysis",
        "relevance_score": 12
      },
      {
        "slug": "ngx-cement-sector-outlook",
        "title": "NGX Cement Sector: Competitive Dynamics in 2026",
        "excerpt": "How DANGCEM, WAPCO, and BUA Cement are positioning.",
        "cover_image": "https://ngnmarket.com/images/blog/cement-sector.jpg",
        "published_date": "2026-03-15",
        "categories": [
          "markets"
        ],
        "tags": [
          "stocks"
        ],
        "companies": [
          "DANGCEM",
          "WAPCO"
        ],
        "url": "https://ngnmarket.com/blog/ngx-cement-sector-outlook",
        "relevance_score": 8
      }
    ],
    "total": 2,
    "query": "Dangote Cement",
    "expanded_terms": [
      "dangote",
      "cement",
      "dangcem",
      "dcp",
      "bua",
      "wapco"
    ]
  },
  "meta": {
    "plan": "free",
    "calls_used": 314,
    "calls_remaining": 9686,
    "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.

Query Parameters

q
string
required

Search query. Must be a non-empty string.

Example:

"Dangote Cement"

limit
integer
default:5

Maximum number of results (1–10). Defaults to 5.

Required range: 1 <= x <= 10
from
string<date>

Filter posts published on or after this date (e.g. 2026-01-01).

to
string<date>

Filter posts published on or before this date.

Response

Search results retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object