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

# get_content_performance

> Joins the brand's posted content against GA4 traffic — sessions, page views, unique users.

Joins the brand's posted content (anything generated in Citable with a `posted_url`) against GA4 traffic. Returns each posted URL with its sessions, page views, and unique users over the selected window. If the brand has no Google Analytics connection, returns `hasGaConnection=false` plus a guidance note pointing to the Connectors page.

## When to use

* "Which of my blogs is actually driving traffic?"
* "What content has worked in the last 30 days?"
* "Which LinkedIn posts drove the most clicks?"

Skip when the user wants AI visibility (use [`get_brand_visibility`](/mcp/reads/get-brand-visibility)) or the to-do list (use [`get_geo_priorities`](/mcp/reads/get-geo-priorities)).

## Response

```
{ windowDays,
  items: [{ contentId, title, platform, postedUrl, postedAt, pagePath,
            sessions, pageViews, users }],
  totals,
  hasGaConnection,
  note? }
```

## Example

Calling with `{ windowDays: 30, limit: 10 }` returns the 10 most recently posted URLs with traffic joined where available.

## See also

* [Overview](/mcp/overview)
* [Google Analytics integration](/integrations/google-analytics)
