Turn any face photo into a fun die-cut sticker (1.6M+ runs). InstantID keeps the likeness while IP-Adapter controls take the artwork from faithful caricature to loose cartoon โ with an optional 2x upscale for print quality.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "fofr/face-to-sticker",
"input": {
"image": "https://example.com/face.webp",
"prompt": "arnold",
"prompt_strength": 4.5,
"instant_id_strength": 0.7,
"ip_adapter_weight": 0.2,
"upscale": false
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | No | a person | What the sticker should depict (character, outfit, theme) |
image | string | No | - | An image of a person to be converted to a sticker |
negative_prompt | string | No | - | Things you do not want in the image |
width | integer | No | 1024 | Output width in pixels |
height | integer | No | 1024 | Output height in pixels |
steps | integer | No | 20 | steps |
seed | integer | No | - | Fix the random seed for reproducibility |
prompt_strength | number | No | 7 | CFG scale โ higher follows the prompt harder, lower keeps more of the original likeness |
instant_id_strength | number | No | 1 | How strong the InstantID face likeness will be (0-1) |
ip_adapter_weight | number | No | 0.2 | How much the IP adapter (input image) will influence the image (0-1) |
ip_adapter_noise | number | No | 0.5 | How much noise is added to the IP adapter input |
upscale | boolean | No | false | 2x upscale the sticker (doubles the cost to 56 credits) |
upscale_steps | integer | No | 10 | Number of steps to upscale |
There are 3 ways to provide files for the image parameter:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=fofr/face-to-sticker" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "fofr/face-to-sticker",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
A face photo turned into a stylized character sticker
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "fofr/face-to-sticker",
"input": {
"image": "https://example.com/face.webp",
"prompt": "arnold",
"prompt_strength": 4.5,
"instant_id_strength": 0.7,
"ip_adapter_weight": 0.2,
"upscale": false
}
}'2x upscale for merchandise printing (56 credits)
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "fofr/face-to-sticker",
"input": {
"image": "https://example.com/face.jpg",
"prompt": "a person, astronaut helmet, cute cartoon style",
"upscale": true,
"upscale_steps": 10
}
}'POST /v1/predictions