Skip to main content
GET
/
v1
/
blog
/
posts
Paginated blog post list
curl --request GET \
  --url https://api.ngnmarket.com/v1/blog/posts \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "data": [ { "slug": "fgn-bond-market-outlook-2026", "title": "FGN Bond Market Outlook for 2026", "category": "Fixed Income", "tags": [ "bonds", "FGN", "fixed income" ], "published_at": "2026-04-10T09:00:00.000Z", "excerpt": "An in-depth look at Federal Government bond yields and what investors can expect through the rest of 2026." }, { "slug": "dangote-cement-q1-analysis", "title": "Dangote Cement Q1 2026 Results: What the Numbers Say", "category": "Company Analysis", "tags": [ "DANGCEM", "cement", "earnings" ], "published_at": "2026-04-07T11:30:00.000Z", "excerpt": "A breakdown of Dangote Cement's Q1 2026 financial results and what they mean for shareholders." } ], "pagination": { "page": 1, "limit": 20, "total": 42, "pages": 3, "hasNext": true, "hasPrev": false } }, "meta": { "plan": "free", "calls_used": 312, "calls_remaining": 9688, "reset_at": "2026-05-01T00:00:00.000Z" } }
The blog posts endpoint gives you programmatic access to NGN Market’s published articles on Nigerian financial markets, company analysis, and investment insights. Results are sorted by publication date, newest first. The first two posts in the full index are reserved for featured placements and are excluded from paginated results. You can also use GET /v1/blog/recent for the latest handful of posts without pagination.

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

page
integer
default:1

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

Required range: x >= 1
excludeSlug
string

Slug of a post to exclude from results. Useful when displaying a specific post and building a "related posts" list.

Response

Blog posts retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object