Skip to main content
PATCH
/
influencers
/
{id}
Update Influencer
curl --request PATCH \
  --url https://api.example.com/influencers/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "style": "<string>",
  "model": "<string>",
  "images": [
    "<string>"
  ],
  "traits": {}
}
'

Path Parameters

id
string
required
Influencer ID.

Body Parameters

All fields are optional. Only provided fields will be updated.
name
string
Influencer name.
description
string
Description / prompt used to generate.
style
string
Art style: realistic, anime, 3d, fashion, minimal.
model
string
AI model used (e.g. fal:flux-pro, higgsfield:soul).
images
string[]
Array of image URLs. The first image is used as the avatar.
traits
object
Character traits (demographics, face, hair, body, style).

Response

200
{
  "id": "inf-uuid",
  "name": "Amy",
  "description": "A young woman...",
  "style": "realistic",
  "model": "fal:flux-pro",
  "images": ["https://cdn.supapost.so/assets/...", "..."],
  "updated_at": "2026-04-09T12:00:00Z"
}