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

# Get Influencer

> Read one influencer (consistent character) and its reference images

Returns one influencer visible to the authenticated key scope.

Pass `reference_image_urls` to Studio image generation as `image_urls` to
create new images of the same person.

## Path Parameters

<ParamField path="influencerId" type="string" required>
  Influencer ID from [List Influencers](/api-reference/list-influencers).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://www.genviral.io/api/partner/v1/influencers/11111111-1111-4111-8111-111111111111' \
    --header 'Authorization: Bearer <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "ok": true,
    "code": 200,
    "message": "Influencer retrieved",
    "data": {
      "id": "11111111-1111-4111-8111-111111111111",
      "name": "Maya",
      "reference_image_urls": [
        "https://cdn.example.com/maya.jpg"
      ],
      "created_at": "2026-08-24T12:00:00.000Z",
      "updated_at": "2026-08-24T12:00:00.000Z"
    }
  }
  ```
</ResponseExample>

## Error Responses

* `400` - `influencerId` is missing
* `401` - authentication failed
* `404` - influencer does not exist or is not visible in this scope
* `422 invalid_path` - `influencerId` is not a UUID
