Skip to main content
Back to API Platform

Consistent Characters API

Generate consistent character variations with FLUX Kontext, Nano Banana Pro/2, Flux 2 Dev, or Qwen Image 2 Pro. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
Credit Cost
1 credit
Type
image

API Endpoint

POST
/api/v1/models/consistent-characters/run

Parameters

Input parameters accepted by this model

ParameterTypeDefault
input_image
required
url
-
num_images
integer
4
background
enum
neutral
randomize_images
boolean
true
model_type
enum
flux-kontext
prompt
string
-

Example Outputs

Real outputs generated by this model

the same person sketching in a notebook on a park bench, autumn setting
View Details

the same person sketching in a notebook on a park bench, autumn setting

1 credits
9.8s
the same person as a chef in a restaurant kitchen, white chefs coat, focused
View Details

the same person as a chef in a restaurant kitchen, white chefs coat, focused

1 credits
9.7s
the same person riding a bicycle through a European old town, casual jacket
View Details

the same person riding a bicycle through a European old town, casual jacket

1 credits
9.8s
the same person working on a laptop at a modern cafe, headphones, focused
View Details

the same person working on a laptop at a modern cafe, headphones, focused

1 credits
9.8s
the same person painting at an art studio easel, paint-splattered apron
View Details

the same person painting at an art studio easel, paint-splattered apron

1 credits
9.7s
the same person on a beach at sunset in a light summer dress, ocean breeze
View Details

the same person on a beach at sunset in a light summer dress, ocean breeze

1 credits
9.8s
the same person cooking in a bright modern kitchen, wearing an apron, laughing
View Details

the same person cooking in a bright modern kitchen, wearing an apron, laughing

1 credits
9.8s
the same person among flowers at a botanical garden, sundress, sunny day
View Details

the same person among flowers at a botanical garden, sundress, sunny day

1 credits
9.7s
the same person browsing shelves in a cozy bookstore, cardigan, soft lighting
View Details

the same person browsing shelves in a cozy bookstore, cardigan, soft lighting

1 credits
9.7s
the same person gardening in a sunny backyard, rolled-up sleeves, holding a potted plant
View Details

the same person gardening in a sunny backyard, rolled-up sleeves, holding a potted plant

1 credits
13.0s
the same person reading by a fireplace in a cozy cabin, knit sweater, mug of tea
View Details

the same person reading by a fireplace in a cozy cabin, knit sweater, mug of tea

1 credits
12.8s
the same person jogging along a waterfront promenade in athletic wear, morning light
View Details

the same person jogging along a waterfront promenade in athletic wear, morning light

1 credits
9.7s
the same person choosing fresh vegetables at a farmers market, tote bag
View Details

the same person choosing fresh vegetables at a farmers market, tote bag

1 credits
9.7s
the same person walking through an autumn park in a scarf and wool coat, leaves falling
View Details

the same person walking through an autumn park in a scarf and wool coat, leaves falling

1 credits
9.7s
the same person in a tailored business suit in a modern office, confident pose
View Details

the same person in a tailored business suit in a modern office, confident pose

1 credits
9.7s
the same person teaching in front of a classroom whiteboard, friendly gesture
View Details

the same person teaching in front of a classroom whiteboard, friendly gesture

1 credits
9.8s
the same person as a scientist in a bright laboratory, white lab coat, holding a glass flask
View Details

the same person as a scientist in a bright laboratory, white lab coat, holding a glass flask

1 credits
9.7s
the same person playing acoustic guitar on a rooftop at golden hour
View Details

the same person playing acoustic guitar on a rooftop at golden hour

1 credits
9.7s
the same person studying at a university library, hoodie, surrounded by books
View Details

the same person studying at a university library, hoodie, surrounded by books

1 credits
9.7s
the same person hiking on a sunny mountain trail, wearing a red windbreaker, wide smile
View Details

the same person hiking on a sunny mountain trail, wearing a red windbreaker, wide smile

1 credits
12.9s
the same person sitting in a cozy coffee shop reading a book, warm afternoon light
View Details

the same person sitting in a cozy coffee shop reading a book, warm afternoon light

1 credits
12.9s
the same person giving a presentation in a conference room, smart casual attire
View Details

the same person giving a presentation in a conference room, smart casual attire

1 credits
9.8s
the same person fishing on a calm lake at dawn, flannel shirt and cap
View Details

the same person fishing on a calm lake at dawn, flannel shirt and cap

1 credits
9.7s
the same person sitting in a cozy coffee shop reading a book, warm afternoon light
View Details

the same person sitting in a cozy coffee shop reading a book, warm afternoon light

1 credits
13.4s
the same person hiking on a sunny mountain trail, wearing a red windbreaker, wide smile
View Details

the same person hiking on a sunny mountain trail, wearing a red windbreaker, wide smile

1 credits
10.3s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

4 credits
9.4s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

4 credits
22.1s

Code Examples

Copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/consistent-characters/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A beautiful mountain landscape at golden hour",
    "aspect_ratio": "1:1"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 1,
  "creditsRemaining": 95,
  "expiresAt": "2025-01-23T12:00:00Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 1,
  "expiresAt": "2025-01-23T12:00:00Z"
}