LlamaGen.AI developer platform
Developer quickstart
Set up your environment and make your first API request in minutes
curl
1curl -X POST 'https://api.llamagen.ai/v1/comics/generations' \
2-H 'Content-Type: application/json' \
3-H 'Authorization: Bearer $LLAMAGENAI_API_KEY' \
4-d '{
5 "model": "cyani-model",
6 "prompt": " A kid standing with hands , he is standing in Paris near the Eiffel tower. He is ready for his mission ",
7 "size": "1024x1024"
8}'
Create your own comics
Generate your own comics with our easy to use API
Tailer stood before the Eiffel Tower, a girl with a mission.
Inside an empty disco, music notes beckoned.
With a deep breath, her superpower surged forth.
Swift as the wind, she headed for the stage.
Notes flared around her as she ran.
Back to the Eiffel Tower, a mystery in hand.
Developer quickstart
Retrieve a previously generated comic
curl
1curl -X GET 'https://api.llamagen.ai/v1/comics/generations/cm23iyz3r0001le03m39ykh8v' \
2-H 'Authorization: Bearer $LLAMAGENAI_API_KEY'
json
1{
2 "id": "cm23iyz3r0001le03m39ykh8v",
3 "status": "PROCESSED",
4 "comics": [
5 {
6 "page": 0,
7 "layout": "Layout0",
8 "panels": [
9 {
10 "assetUrl": "https://s.llamagen.ai/08386e26-2753-443b-b96b-ee62e3075161.webp",
11 "panel": 0,
12 "caption": "Tailer stood before the Eiffel Tower, a girl with a mission."
13 },
14 {
15 "assetUrl": "https://s.llamagen.ai/d85d5c20-462c-46a9-9030-648313de1384.webp",
16 "panel": 1,
17 "caption": "Inside an empty disco, music notes beckoned."
18 },
19 {
20 "assetUrl": "https://s.llamagen.ai/c72fff1d-04c8-40fd-8921-82ce73c26163.webp",
21 "panel": 2,
22 "caption": "With a deep breath, her superpower surged forth."
23 },
24 {
25 "assetUrl": "https://s.llamagen.ai/69ff3fff-9992-4daf-b85b-f23b0303c6b2.webp",
26 "panel": 3,
27 "caption": "Swift as the wind, she headed for the stage."
28 },
29 {
30 "assetUrl": "https://s.llamagen.ai/7be4e9f4-592f-40ff-9ea3-63169ccec765.webp",
31 "panel": 4,
32 "caption": "Notes flared around her as she ran."
33 },
34 {
35 "assetUrl": "https://s.llamagen.ai/cefd4786-c404-47b7-8aeb-f6b0af485c7b.webp",
36 "panel": 5,
37 "caption": "Back to the Eiffel Tower, a mystery in hand."
38 }
39 ]
40 }
41 ]
42}