> ## 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.

# Account Analytics

> GET /v1/social/accounts/:id/analytics — Get analytics for a connected social account.

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

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

<ResponseExample>
  ```json 200 theme={"theme":"css-variables"}
  {
    "account_id": "acc-uuid",
    "platform": "TWITTER",
    "analytics": {
      "followers": 12450,
      "following": 843,
      "total_posts": 156,
      "impressions_30d": 84200,
      "engagements_30d": 5320,
      "engagement_rate": 6.32
    }
  }
  ```
</ResponseExample>

**Note:** The analytics shape is provider-defined and varies by platform. Returns `{ "account_id": "...", "platform": "...", "analytics": null }` if analytics are unavailable.
