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

# List Influencers

> List all AI influencers for the authenticated team

Returns all influencers for the current team, sorted by most recently created.

## Authentication

<ParamField header="Authorization" type="string">
  Bearer token. `Bearer <supabase-jwt>`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "inf-uuid",
      "team_id": "team-uuid",
      "name": "Ava Chen",
      "description": "Fitness and wellness influencer",
      "style": "realistic",
      "model": "fal:flux-pro",
      "avatar_url": "https://cdn.supapost.so/assets/team/ava-1.jpg",
      "images": [
        "https://cdn.supapost.so/assets/team/ava-1.jpg",
        "https://cdn.supapost.so/assets/team/ava-2.jpg"
      ],
      "metadata": {
        "traits": {
          "tone": "motivational",
          "niche": "fitness"
        }
      },
      "created_by": "user-uuid",
      "created_at": "2026-04-01T12:00:00Z",
      "updated_at": "2026-04-07T15:30:00Z"
    }
  ]
  ```
</ResponseExample>
