> ## Documentation Index
> Fetch the complete documentation index at: https://usenaive.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Post Analytics

> GET /v1/social/posts/:id/analytics — Get analytics for a published post.

<ParamField path="id" type="string" required>
  UUID of the post to get analytics for.
</ParamField>

<RequestExample>
  ```bash theme={"theme":"css-variables"}
  curl https://api.usenaive.ai/v1/social/posts/post-uuid/analytics \
    -H "Authorization: Bearer nv_sk_live_..."
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"theme":"css-variables"}
  {
    "post_id": "post-uuid",
    "analytics": {
      "TWITTER": {
        "impressions": 4820,
        "engagements": 312,
        "likes": 187,
        "retweets": 45,
        "replies": 23
      },
      "LINKEDIN": {
        "impressions": 2150,
        "engagements": 178,
        "likes": 134,
        "comments": 12,
        "shares": 8
      }
    }
  }
  ```
</ResponseExample>

**Note:** The analytics shape is provider-defined and varies by platform. Returns `{ "post_id": "...", "analytics": null, "hint": "Post has not been published yet" }` for unpublished posts.
