Skip to main content

Generate, preserve, swap, and animate real people

An identity generation API built from independent primitives that compose into full content workflows, with async jobs, webhooks, and provenance built in.

AI-generated on-model look
$POST/generate/image/v1
prompt: "curly hair, pastel studio, beauty"
$POST/identity/faceswap/v1
$POST/background/replace/v1
status: 200 · succeeded
Composable workflows

Chain primitives into pipelines

Each step passes its result_url to the next. Same async job model, end to end.

Generate to Background to Upscale workflow
Quickstart

One call to your first image

Authenticate with a single header, submit a job, and poll or receive a webhook when it completes.

Generate an image
curl https://api.imagepipeline.io/generate/image/v1 \
-H "X-API-Key: $IMAGEPIPELINE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "a person in a red jacket on a rooftop at golden hour",
"width": 1024,
"height": 1024
}'