The /face-to-sticker API endpoint triggers the face-to-sticker workflow. This API turns your photos into fun and eye-catching stickers using the Aicado AI platform.

Insert line aboveInsert line belowDelete

This API endpoint is accessed using the POST method.

When you make a request to this endpoint, you should include the following query parameters:

<aside> 💡 Go to this page to find out how to get the Access Token.

</aside>

Body Params

Name Type Required? Description
image_url string Required URL of the video.

Examples:

"https://storage.googleapis.com/falserverless/model_tests/face_to_sticker/elon.jpg" | | prompt | string | Optional | The prompt to use for generating the image. Be as descriptive as possible for best results.

Examples:

"a person" | | negative_prompt | string | Optional | The negative prompt to use. Use it to address details that you don't want in the image. This could be colors, objects, scenery and even the small details (e.g. moustache, blurry, low resolution). Default value: "" | | num_inference_steps | integer | Optional | Increasing the amount of steps tells Stable Diffusion that it should take more steps to generate your final result which can increase the amount of detail in your image. Default value: 20 | | guidance_scale | float | Optional | The CFG (Classifier Free Guidance) scale is a measure of how close you want the model to stick to your prompt when looking for a related image to show you. Default value: 4.5 | | instant_id_strength | float | Optional | The strength of the instant ID. Default value: 0.7 | | ip_adapter_weight | float | Optional | The weight of the IP adapter. Default value: 0.2 | | ip_adapter_noise | float | Optional | The amount of noise to add to the IP adapter. Default value: 0.5 | | image_size | string | Optional | The size of the generated image. Default value: square_hd

Possible values: "square_hd", "square", "portrait_4_3", "portrait_16_9", "landscape_4_3", "landscape_16_9" | | upscale | boolean | Optional | Whether to upscale the image 2x.9" | | upscale_steps | integer | Optional | The number of steps to use for upscaling. Only used if upscale is true. Default value: 10 | | seed | integer | Optional | The same seed and the same prompt given to the same version of Stable Diffusion will output the same image every time. | | enable_safety_checker | boolean | Optional | If set to false, the safety checker will be disabled. Default value: true | | response_webhook_url | string | Optional | The webhook URL to receive response updates. |

Responses

Code Examples