Create Influencer
curl --request POST \
--url https://api.supapost.so/influencers \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"style": "<string>",
"model": "<string>",
"images": [
"<string>"
],
"traits": {}
}
'import requests
url = "https://api.supapost.so/influencers"
payload = {
"name": "<string>",
"description": "<string>",
"style": "<string>",
"model": "<string>",
"images": ["<string>"],
"traits": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
description: '<string>',
style: '<string>',
model: '<string>',
images: ['<string>'],
traits: {}
})
};
fetch('https://api.supapost.so/influencers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.supapost.so/influencers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'description' => '<string>',
'style' => '<string>',
'model' => '<string>',
'images' => [
'<string>'
],
'traits' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.supapost.so/influencers"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.supapost.so/influencers")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/influencers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}"
response = http.request(request)
puts response.read_body{
"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": {
"gender": "female",
"ageRange": "25-30",
"ethnicity": "East Asian",
"skinTone": "light",
"faceShape": "oval",
"jawline": "soft",
"eyeColor": "brown",
"eyeShape": "almond",
"noseShape": "small",
"lipShape": "full",
"facialHair": "none",
"hairColor": "black",
"hairStyle": "straight",
"hairLength": "long",
"bodyType": "athletic",
"height": "tall",
"tattoos": "none",
"piercings": "ears",
"glasses": "none",
"clothingStyle": "athleisure",
"expression": "confident smile",
"pose": "standing",
"lighting": "natural",
"background": "gym"
}
},
"created_by": "user-uuid",
"created_at": "2026-04-08T10:00:00Z",
"updated_at": null
}
{
"success": false,
"message": "name, description, and images are required"
}
Influencers
Create Influencer
Create a new AI influencer
POST
/
influencers
Create Influencer
curl --request POST \
--url https://api.supapost.so/influencers \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"style": "<string>",
"model": "<string>",
"images": [
"<string>"
],
"traits": {}
}
'import requests
url = "https://api.supapost.so/influencers"
payload = {
"name": "<string>",
"description": "<string>",
"style": "<string>",
"model": "<string>",
"images": ["<string>"],
"traits": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
description: '<string>',
style: '<string>',
model: '<string>',
images: ['<string>'],
traits: {}
})
};
fetch('https://api.supapost.so/influencers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.supapost.so/influencers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'description' => '<string>',
'style' => '<string>',
'model' => '<string>',
'images' => [
'<string>'
],
'traits' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.supapost.so/influencers"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.supapost.so/influencers")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/influencers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"style\": \"<string>\",\n \"model\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"traits\": {}\n}"
response = http.request(request)
puts response.read_body{
"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": {
"gender": "female",
"ageRange": "25-30",
"ethnicity": "East Asian",
"skinTone": "light",
"faceShape": "oval",
"jawline": "soft",
"eyeColor": "brown",
"eyeShape": "almond",
"noseShape": "small",
"lipShape": "full",
"facialHair": "none",
"hairColor": "black",
"hairStyle": "straight",
"hairLength": "long",
"bodyType": "athletic",
"height": "tall",
"tattoos": "none",
"piercings": "ears",
"glasses": "none",
"clothingStyle": "athleisure",
"expression": "confident smile",
"pose": "standing",
"lighting": "natural",
"background": "gym"
}
},
"created_by": "user-uuid",
"created_at": "2026-04-08T10:00:00Z",
"updated_at": null
}
{
"success": false,
"message": "name, description, and images are required"
}
Creates an AI influencer persona with reference images and optional personality traits. The first image in the array is used as the avatar.
Authentication
string
Bearer token.
Bearer <supabase-jwt>.Body
string
required
Display name for the influencer.
string
required
A description of the influencer persona.
string
default:"realistic"
Image generation style, e.g.
"realistic", "anime", "3d".string
AI model identifier for generating images of this influencer.
string[]
required
Array of reference image URLs. The first image is used as the avatar.
object
Physical and stylistic traits for the influencer. Available fields (all strings):
gender, ageRange, ethnicity, skinTone, faceShape, jawline, eyeColor, eyeShape, noseShape, lipShape, facialHair, hairColor, hairStyle, hairLength, bodyType, height, tattoos, piercings, glasses, clothingStyle, expression, pose, lighting, background.{
"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": {
"gender": "female",
"ageRange": "25-30",
"ethnicity": "East Asian",
"skinTone": "light",
"faceShape": "oval",
"jawline": "soft",
"eyeColor": "brown",
"eyeShape": "almond",
"noseShape": "small",
"lipShape": "full",
"facialHair": "none",
"hairColor": "black",
"hairStyle": "straight",
"hairLength": "long",
"bodyType": "athletic",
"height": "tall",
"tattoos": "none",
"piercings": "ears",
"glasses": "none",
"clothingStyle": "athleisure",
"expression": "confident smile",
"pose": "standing",
"lighting": "natural",
"background": "gym"
}
},
"created_by": "user-uuid",
"created_at": "2026-04-08T10:00:00Z",
"updated_at": null
}
{
"success": false,
"message": "name, description, and images are required"
}
⌘I