Skip to main content
GET
/
influencers
List Influencers
curl --request GET \
  --url https://api.supapost.so/influencers
[
  {
    "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"
  }
]
Returns all influencers for the current team, sorted by most recently created.

Authentication

Authorization
string
Bearer token. Bearer <supabase-jwt>.
[
  {
    "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"
  }
]