Create influencer
POST/api/v2/influencers/create sync
Create a new influencer from a set of images. The first image is used as the face image. Costs 250 credits.
curl -X POST "https://influencerstudio.com/api/v2/influencers/create" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Sofia Martinez",
"image_urls": [
"https://example.com/photo1.jpg",
"https://example.com/photo2.jpg",
"https://example.com/photo3.jpg"
],
"workspace_id": "workspace_id_example",
"age": 25
}'