# get_company_aum

The latest regulated AUM for an investment adviser, by client type.

Canonical: https://chikaraintel.com/docs/mcp/tools/get_company_aum

Group: Companies. Read only.

## When to use

Use it for a quick sizing of an asset manager. For the trend over time, use get_company_aum_history.

Call `search_companies` first.

## Parameters

- `reference` (uuid, body, required) The company's reference UUID.

## Example

Prompt: "How much does Ashcombe Capital Partners manage?"

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_company_aum",
    "arguments": {
      "reference": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31"
    }
  }
}
```

Result (invented records):

```json
{
  "currency_code": "USD",
  "summary_type": "client",
  "publish_date": "2026-03-28T00:00:00+00:00",
  "entries": [
    {
      "client_type": "pooled_investment_vehicles",
      "client_type_label": "Pooled investment vehicles",
      "number_of_clients": 14,
      "fewer_than_5": false,
      "regulatory_assets_under_management": 4200000000
    },
    {
      "client_type": "pension_plans",
      "client_type_label": "Pension and profit sharing plans",
      "number_of_clients": 6,
      "fewer_than_5": false,
      "regulatory_assets_under_management": 1150000000
    }
  ]
}
```

## Errors

- `No AUM data found for this company`: The organisation has no AUM record. Most companies that aren't investment advisers won't.
- `Not found.`: No organisation has that reference.

## Built on

- GET /v1/organisations/{organisationReference} (https://chikaraintel.com/docs/api/reference/organisations/get-organisation.md)
