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

# Get Talent Profile

> Retrieve detailed talent profile information

# Get Talent Profile

Retrieve comprehensive profile information for a specific talent.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.weir.ai/talent/talent_123456789' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
    -H 'x-source: console'
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "data": {
      "talentId": "talent_123456789",
      "fullname": "John Athlete",
      "email": "john@athlete.com",
      "phone": "+1-555-0100",
      "bio": "Professional athlete and content creator",
      "socialMedia": {
        "twitter": "@johnathlete",
        "instagram": "@johnathlete",
        "tiktok": "@johnathlete"
      },
      "licenseCount": 5,
      "activeLicenses": 3,
      "status": "active",
      "verified": true,
      "agencyId": "org_123456789",
      "joinedAt": "2024-01-15T10:30:00Z"
    },
    "message": "Talent profile retrieved successfully",
    "status": "success"
  }
  ```
</ResponseExample>

## Path Parameters

<ParamField path="talentId" type="string" required>
  Unique identifier of the talent.
</ParamField>

## Response Fields

<ResponseField name="data" type="object" required>
  Talent profile data.

  <Expandable title="Talent Profile Properties">
    <ResponseField name="talentId" type="string" required>
      Unique talent identifier.
    </ResponseField>

    <ResponseField name="fullname" type="string" required>
      Talent's full name.
    </ResponseField>

    <ResponseField name="email" type="string" required>
      Email address.
    </ResponseField>

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

    <ResponseField name="socialMedia" type="object">
      Social media handles.
    </ResponseField>

    <ResponseField name="licenseCount" type="integer">
      Total number of licenses.
    </ResponseField>

    <ResponseField name="activeLicenses" type="integer">
      Number of active licenses.
    </ResponseField>
  </Expandable>
</ResponseField>

## Usage Examples

<CodeGroup>
  ```javascript JavaScript theme={null}
  const getTalentProfile = async (talentId, accessToken) => {
    const response = await fetch(`https://api.weir.ai/talent/${talentId}`, {
      headers: {
        'Authorization': `Bearer ${accessToken}`,
        'x-source': 'console'
      }
    });
    if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
    return await response.json();
  };
  ```

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

  def get_talent_profile(talent_id, access_token):
      response = requests.get(
          f'https://api.weir.ai/talent/{talent_id}',
          headers={
              'Authorization': f'Bearer {access_token}',
              'x-source': 'console'
          }
      )
      response.raise_for_status()
      return response.json()
  ```
</CodeGroup>
