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

# Get Account Demographics

> Get demographics for a specific user account.

<Info>
  This tool is part of the [Demographics Tools](./index) category.
</Info>

## Parameters

| Name              | Type   | Required | Description                                        |
| ----------------- | ------ | -------- | -------------------------------------------------- |
| user\_account\_id | string | Yes      | The ID of the user account to get demographics for |

## Example Request

```json theme={null}
{
  "user_account_id": "user_account_12345"
}
```

## Example Response

```json theme={null}
{
  "user_account_id": "user_account_12345",
  "gender": {
    "male_percentage": 45,
    "female_percentage": 55
  },
  "age_groups": {
    "18-24": 20,
    "25-34": 35,
    "35-44": 25,
    "45-54": 15,
    "55+": 5
  },
  "locations": [
    { "country": "United States", "percentage": 65 },
    { "country": "United Kingdom", "percentage": 15 },
    { "country": "Canada", "percentage": 10 },
    { "country": "Australia", "percentage": 5 },
    { "country": "Other", "percentage": 5 }
  ]
}
```

## Usage Notes

* This method returns a demographic breakdown for a user account, including gender, age groups, and top locations.
* If the user account does not exist or does not belong to the tenant app, an error will be returned.
* For age-specific breakdowns, use [Get Audience Age Breakdown](./getAudienceAgeBreakdown).
