Post Enrichment API

Retrieve the full data behind any public post from its URL — post text, publish date, author details, engagement counts, attached media, and hashtags.

Endpoint: https://api.enrichmentapi.io/post_enrichment

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • post_url Required
    The URL of the post to enrich (e.g. your_post_url).

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/post_enrichment" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "post_url=your_post_url"
API Response
{
  "success": true,
  "post_id": "7051021454629627392",
  "post_url": "https://your_post_url",
  "text": "We just shipped real-time enrichment for every plan. Same key, same endpoint, no waiting on batch jobs.",
  "posted_at": "2026-08-12T09:31:00.000Z",
  "author": {
    "name": "Jordan Lee",
    "profile_id": "jordanlee",
    "headline": "Head of Growth at Northwind Labs",
    "profile_image": "https://images.enrichmentapi.io/profiles/jordanlee.jpg"
  },
  "reactions": 1284,
  "comments": 96,
  "reposts": 41,
  "media": [
    {
      "type": "image",
      "url": "https://images.enrichmentapi.io/posts/7051021454629627392-1.jpg"
    }
  ],
  "hashtags": ["#api", "#dataenrichment"]
}