> ## 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.

# Get Persona

> Get detailed information about a specific persona

## Path Parameters

<ParamField path="id" type="string" required>
  Persona UUID
</ParamField>

## Response

Returns full persona profile including bio, expertise, and social links.

<ResponseField name="id" type="string">
  Persona UUID.
</ResponseField>

<ResponseField name="name" type="string">
  Display name.
</ResponseField>

<ResponseField name="image_url" type="string">
  Avatar image URL.
</ResponseField>

<ResponseField name="bio" type="string">
  Full biography.
</ResponseField>

<ResponseField name="expertise" type="array">
  Array of expertise areas (sports, leagues, topics).
</ResponseField>

<ResponseField name="social_links" type="object">
  Social media links (twitter, instagram, etc.).
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://prod.api.unleeshed.ai/partner/v1/personas/persona-abc-123" \
    -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/persona-abc-123',
    { headers: { 'X-Api-Key': 'pk_live_your_api_key' } }
  );
  ```

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

  response = requests.get(
      "https://prod.api.unleeshed.ai/partner/v1/personas/persona-abc-123",
      headers={"X-Api-Key": "pk_live_your_api_key"}
  )
  ```
</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",
      "bio": "Former NFL defensive coordinator with 25 years of coaching experience. Known for developing Pro Bowl linebackers and creating innovative blitz packages. Now sharing insights on the modern game.",
      "expertise": [
        "NFL",
        "College Football",
        "Defensive Strategy",
        "Player Development"
      ],
      "social_links": {
        "twitter": "https://twitter.com/coachmike",
        "instagram": "https://instagram.com/coachmike"
      }
    }
  }
  ```

  ```json 403 Not Licensed theme={null}
  {
    "success": false,
    "error": {
      "code": "not_licensed",
      "message": "No active license for this persona"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "success": false,
    "error": {
      "code": "not_found",
      "message": "Persona not found"
    }
  }
  ```
</ResponseExample>
