The LlamaGen Comic API allows you to generate and retrieve comic artwork using AI-powered image generation. This API provides endpoints to create comic artwork based on prompts and retrieve the generated comic panels with different styles.
The LlamaGen Comic API offers three main methods for interacting with comic images:
- Creating comic panels from scratch based on a text prompt
- Retrieving generated comic artwork
- (Future feature) Creating variations of existing comic panels
This guide covers the basics of using these API endpoints with useful code samples.
Creates a new comic artwork based on the provided prompt and other parameters.
curl -X POST "https://api.llamagen.ai/v1/comics/generations" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $LLAMAGENAI_API_KEY" \
-d '{
"model": "cyani-model",
"prompt": "a comic about a cat and a dog",
"size": "1024x1024"
}'
model
(string): The AI model to use for generation (e.g., "cyani-model")prompt
(string): A text description of the desired comic scenesize
(string): The size of the generated image (e.g., "1024x1024")
{
"id": "cm20e3dnb00097k8753vd0wt4",
"status": "LOADING",
"prompt": "a comic about a cat and a dog"
}
The response includes the ID of the created comic artwork, which can be used to retrieve the comic panels later.
Retrieves the generated comic panels for a specific artwork ID.
curl -X GET "https://api.llamagen.ai/v1/comics/generations/YOUR_ARTWORK_ID" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"id": "cm20e3dnb00097k8753vd0wt4",
"status": "LOADING",
"prompt": "a comic about a cat and a dog",
"comics": [
{
"page": 0,
"panels": [
{
"assetUrl": "",
"panel": 0,
"caption": ""
},
{
"assetUrl": "",
"panel": 1,
"caption": ""
},
{
"assetUrl": "",
"panel": 2,
"caption": ""
},
{
"assetUrl": "",
"panel": 3,
"caption": ""
}
]
}
]
}
The response includes the status of the comic artwork and the comicData
field containing a JSON-encoded string representing the comic panels.
// ... existing code for Types and Error Handling ...
This documentation refers to version 1.0 of the LlamaGen Comic API. Future updates and changes will be documented here.
For more information or support, please contact our API support team at [email protected].