Images
List Styles
The art styles for `style` on image and video generation. No key needed.
5 styles: photorealistic, studio, anime, 3d, cartoon. Pass the id as style on POST /v1/images/generations or POST /v1/videos/generations. A style only changes the prompt text: same models, same prices. Omitting style keeps each model's natural look.
On video a style tells the model the whole clip's art style, matched to the first frame or reference image. With action it keeps an anime, 3D or cartoon woman in her style through the act instead of drifting toward realistic.
List Styles
cURL
curl --request GET \ --url https://api.spicyapi.com/v1/styles
200
JSON
{
"object": "list",
"data": [
{
"object": "style",
"id": "photorealistic",
"label": "Photorealistic",
"description": "Camera-real photo look",
"preview_url": "https://cdn.spicyapi.com/styles/photorealistic-e7d45042.webp"
},
{
"object": "style",
"id": "anime",
"label": "Anime",
"description": "Modern detailed TV anime",
"preview_url": "https://cdn.spicyapi.com/styles/anime-9ee14f87.webp"
}
]
}Response
200 · application/jsonSuccessful Response
dataStyle · object[]required
The styles.
Was this page helpful?