Skip to main content
GET
/
v1
/
blog
/
posts
/
{slug}
Blog post detail
curl --request GET \
  --url https://api.ngnmarket.com/v1/blog/posts/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "meta": {
    "plan": "starter",
    "calls_used": 4821,
    "calls_remaining": 95179,
    "reset_at": "2026-05-01T00:00:00.000Z"
  },
  "data": {
    "id": "<string>",
    "slug": "<string>",
    "title": "<string>",
    "excerpt": "<string>",
    "isFeatured": true,
    "coverImage": {
      "url": "<string>"
    },
    "publishedDate": "2023-11-07T05:31:56Z",
    "author": {
      "name": "<string>",
      "bio": "<string>",
      "website": "<string>",
      "twitterX": "<string>",
      "linkedIn": "<string>",
      "avatar": {
        "url": "<string>"
      }
    },
    "categories": [
      {
        "name": "<string>",
        "slug": "<string>"
      }
    ],
    "tags": [
      {
        "name": "<string>",
        "slug": "<string>"
      }
    ],
    "companies": [
      {
        "symbol": "<string>",
        "slug": "<string>"
      }
    ],
    "content": {
      "html": "<string>"
    }
  }
}

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.

This is the only blog endpoint that returns the full article body as rendered HTML (content.html). All list endpoints return trimmed post cards. The detail response also returns the rich author profile (bio, website, social links, avatar) and named taxonomy objects for categories, tags, and companies (each item has both a display name and a slug / symbol), making it convenient for rendering an article page directly from the response. Use slugs from any list or search response.

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

Post retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object

Full article shape returned by GET /v1/blog/posts/{slug}. Includes rendered HTML body and rich author/taxonomy objects.