Skip to main content
GET
/
v1
/
blog
/
content
/
{slug}
Full blog post content
curl --request GET \
  --url https://api.ngnmarket.com/v1/blog/content/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "slug": "fgn-bond-market-outlook-2026",
    "content": "# FGN Bond Market Outlook for 2026\n\nFederal Government of Nigeria bond yields have remained elevated going into 2026, with the 10-year benchmark hovering near 18.5%..."
  },
  "meta": {
    "plan": "free",
    "calls_used": 315,
    "calls_remaining": 9685,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}
This endpoint returns the full body of a blog post in markdown format, suitable for rendering in your own application. The response strips the post’s frontmatter, giving you clean content starting directly with the post body. Use the slug from any post object returned by the list, recent, or search endpoints. Pass the content through any standard markdown renderer (such as marked, react-markdown, or remark) to display it as formatted HTML.

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

slug
string
required

URL-safe slug of the blog post (e.g. fgn-bond-market-outlook-2026).

Example:

"fgn-bond-market-outlook-2026"

Response

Blog content retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object