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

# Age & Gender

> Meta Ads performance broken down by age segment and gender — for demographic targeting, bid adjustments, and cohort-level creative decisions in Ocular.

Demographic-cohort performance — how age groups and genders respond to your ads.

## What this data model represents

**Grain:** one row per `date × ad_account × campaign × adset × ad × age_segment × gender`.

**Metrics, grouped by category** — every number you can compute on this data model. Expand below for examples in each.

```mermaid theme={null}
flowchart LR
    R1["Spend & revenue"]:::cat --- S
    R2["Clicks & impressions"]:::cat --- S
    R3["Cost efficiency"]:::cat --- S

    S(["Metrics"]):::root

    S --- R4[Engagement]:::cat
    S --- R5["Conversion funnel"]:::cat
    S --- R6[Video]:::cat

    classDef root fill:#0f172a,color:#f8fafc,stroke:#0f172a,stroke-width:2px
    classDef cat fill:#2563eb,color:#fff,stroke:#1d4ed8,stroke-width:1.5px
```

<Accordion title="Show sample metrics in each category">
  ```mermaid theme={null}
  flowchart LR
    sr1[Ad Spend]:::leaf --- SR["Spend & revenue"]
    sr2[Conversion Value]:::leaf --- SR
    sr3[ROAS]:::leaf --- SR
    sr4[AOV]:::leaf --- SR

    ci1[Clicks All]:::leaf --- CI["Clicks & impressions"]
    ci2[Impressions]:::leaf --- CI
    ci3[CTR All]:::leaf --- CI

    ce1[CPC]:::leaf --- CE["Cost efficiency"]
    ce2[CPM]:::leaf --- CE
    ce3[CPA]:::leaf --- CE

    SR:::cat --- S
    CI:::cat --- S
    CE:::cat --- S

    S(["Metrics"]):::root

    S --- En[Engagement]:::cat
    S --- CF["Conversion funnel"]:::cat
    S --- Vd[Video]:::cat

    En --- en1[Landing Page Views]:::leaf
    En --- en2[Post Engagement]:::leaf

    CF --- cf1[View Content]:::leaf
    CF --- cf2[Add to Cart]:::leaf
    CF --- cf3[Checkouts Initiated]:::leaf

    Vd --- v1[Video Plays]:::leaf
    Vd --- v2[Video 100% Watched]:::leaf

    classDef root fill:#0f172a,color:#f8fafc,stroke:#0f172a,stroke-width:2px
    classDef cat fill:#2563eb,color:#fff,stroke:#1d4ed8,stroke-width:1.5px
    classDef leaf fill:#eff6ff,color:#1e3a8a,stroke:#bfdbfe,stroke-width:1px
  ```
</Accordion>

**Dimensions, grouped by category** — every way you can split, filter, or group those metrics. Expand below for examples in each.

```mermaid theme={null}
flowchart LR
    D1[Demographics]:::cat --- M
    D2["Campaign hierarchy"]:::cat --- M

    M(["Dimensions"]):::root

    M --- D3[Time]:::cat
    M --- D4["Account & creative"]:::cat
    M --- D5[Attribution]:::cat

    classDef root fill:#0f172a,color:#f8fafc,stroke:#0f172a,stroke-width:2px
    classDef cat fill:#9333ea,color:#fff,stroke:#7e22ce,stroke-width:1.5px
```

<Accordion title="Show sample dimensions in each category">
  ```mermaid theme={null}
  flowchart LR
    dm1[age_segment]:::leaf --- Dm[Demographics]
    dm2[gender]:::leaf --- Dm

    ch1[campaign_id]:::leaf --- CH["Campaign hierarchy"]
    ch2[adset_id]:::leaf --- CH
    ch3[ad_id]:::leaf --- CH

    Dm:::cat --- M
    CH:::cat --- M

    M(["Dimensions"]):::root

    M --- Ti[Time]:::cat
    M --- AC["Account & creative"]:::cat
    M --- At[Attribution]:::cat

    Ti --- t1[date]:::leaf
    Ti --- t2[week_start_date]:::leaf

    AC --- ac1[ad_account_id]:::leaf
    AC --- ac2[creative_id]:::leaf
    AC --- ac3[ad_type]:::leaf

    At --- at1[attribution_window]:::leaf

    classDef root fill:#0f172a,color:#f8fafc,stroke:#0f172a,stroke-width:2px
    classDef cat fill:#9333ea,color:#fff,stroke:#7e22ce,stroke-width:1.5px
    classDef leaf fill:#faf5ff,color:#581c87,stroke:#e9d5ff,stroke-width:1px
  ```
</Accordion>

**Source:** Meta Ads API, daily refresh.

## Slice by

Unique to this data model:

| Dimension     | Type   | Values                                                      |
| ------------- | ------ | ----------------------------------------------------------- |
| `age_segment` | String | `13-17`, `18-24`, `25-34`, `35-44`, `45-54`, `55-64`, `65+` |
| `gender`      | String | `Male`, `Female`, `Unknown`                                 |

Plus the standard campaign hierarchy, time, account, and attribution dimensions — documented once on the [Meta Ads Overview](/data-models/meta-ads/overview).

## Use it to answer

* Which age × gender cohorts give the highest ROAS — where should I shift budget?
* Which cohorts click a lot but don't convert — creative–landing-page mismatch?
* How does AOV vary across age groups — does that change pricing or product strategy?
* Should video length differ by audience? (shorter for younger, more informational for older)

## Available metrics

Everything you can compute on this data model. Need a metric not listed? See the [Meta Ads metric availability matrix](/data-models/meta-ads/overview#metric-availability-matrix).

| Metric                          | Formula                                      |
| ------------------------------- | -------------------------------------------- |
| **Spend & revenue**             |                                              |
| Ad Spend                        | Sum of daily spend                           |
| Conversion Value                | Sum of reported revenue                      |
| ROAS                            | Conversion Value ÷ Ad Spend                  |
| Conversions                     | Sum of reported orders                       |
| AOV                             | Conversion Value ÷ Conversions               |
| **Clicks & impressions**        |                                              |
| Clicks (All)                    | Sum of clicks (inline + outbound)            |
| Impressions                     | Sum of impressions                           |
| CTR (All)                       | Clicks ÷ Impressions × 100                   |
| Outbound Clicks                 | Sum of clicks leading off Meta               |
| Inline Clicks                   | Sum of on-platform engagement clicks         |
| Unique Clicks                   | Avg of deduplicated user clicks              |
| **Cost efficiency**             |                                              |
| CPC (All)                       | Ad Spend ÷ Clicks                            |
| CPM                             | Ad Spend ÷ Impressions × 1,000               |
| CPA                             | Ad Spend ÷ Conversions                       |
| Cost Per Outbound Click         | Ad Spend ÷ Outbound Clicks                   |
| Revenue Per Link Click          | Conversion Value ÷ Outbound Clicks           |
| **Engagement**                  |                                              |
| Landing Page Views              | Sum                                          |
| Post Engagement                 | Sum (reactions + comments + shares + clicks) |
| Inline Post Engagement          | Sum (on-platform-only)                       |
| Post Reactions                  | Sum (Like, Love, Haha, Wow, Sad, Angry)      |
| Post Shares                     | Sum                                          |
| Cost Per Post Engagement        | Ad Spend ÷ Post Engagements                  |
| Cost Per Inline Post Engagement | Ad Spend ÷ Inline Post Engagements           |
| **Conversion funnel**           |                                              |
| View Content                    | Sum                                          |
| Add to Cart                     | Sum                                          |
| Checkouts Initiated             | Sum                                          |
| Add Payment Info                | Sum                                          |
| **Video**                       |                                              |
| Video Plays                     | Sum                                          |
| Video 25% Watched               | Sum                                          |
| Video 50% Watched               | Sum                                          |
| Video 75% Watched               | Sum                                          |
| Video 100% Watched              | Sum                                          |

<Note>
  **Hook Rate** and **Hold Rate** are not precomputed here — use [Platform & Device](/data-models/meta-ads/platform-and-device) for those, or derive them from raw fields below.
</Note>

<Accordion title="Raw fields (for custom calculations)">
  This data model exposes a near-complete raw field set (one of the richest, alongside Platform & Device):

  `ad_spend` · `clicks` · `impressions` · `reported_orders` · `reported_revenue` · `unique_clicks` · `inline_clicks` · `inline_post_engagement` · `outbound_clicks` · `landing_page_views` · `add_to_cart` · `checkouts_initiated` · `view_content` · `post_engagement` · `post_reaction` · `add_payment_info` · `post_share` · `video_play_actions` · `video_views_pct_25` · `video_views_pct_50` · `video_views_pct_75` · `video_views_pct_100`
</Accordion>
