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

# List Personas

> List all personas you have active licenses for

## Response

<ResponseField name="data" type="array">
  Array of licensed persona objects.
</ResponseField>

Each persona includes:

| Field       | Type   | Description      |
| ----------- | ------ | ---------------- |
| `id`        | string | Persona UUID     |
| `name`      | string | Display name     |
| `image_url` | string | Avatar image URL |

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://prod.api.unleeshed.ai/partner/v1/personas" \
    -H "X-Api-Key: pk_live_your_api_key"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://prod.api.unleeshed.ai/partner/v1/personas', {
    headers: { 'X-Api-Key': 'pk_live_your_api_key' }
  });

  const { data: personas } = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://prod.api.unleeshed.ai/partner/v1/personas",
      headers={"X-Api-Key": "pk_live_your_api_key"}
  )

  personas = response.json()["data"]
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "persona-abc-123",
        "name": "Coach Mike",
        "image_url": "https://storage.unleeshed.ai/personas/coach-mike.jpg"
      },
      {
        "id": "persona-xyz-789",
        "name": "Sports Analyst Sarah",
        "image_url": "https://storage.unleeshed.ai/personas/sarah.jpg"
      },
      {
        "id": "persona-def-456",
        "name": "The Basketball Professor",
        "image_url": "https://storage.unleeshed.ai/personas/professor.jpg"
      }
    ]
  }
  ```

  ```json 200 OK (No Licenses) theme={null}
  {
    "success": true,
    "data": []
  }
  ```
</ResponseExample>
