Grok Imagine
ImageNot available
Grok Imagine image editing via Kie AI.
- Type
- Image Edit
- Billed
- per img
- Provider
- Grok
Pricing
/ imgPrice$4.00 / img
Supported parameters
modelSettings- Promptprompt
- Image Inputimage_urls
- Nsfw Checkernsfw_checker
Code examples
POST /v1/generationsGenerations are async — the request returns immediately with an id; poll for the result.
python
import requests
response = requests.post(
"https://api.modelstack.cc/v1/generations",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
json={
"type": "IMAGE_TO_IMAGE_EDIT",
"prompt": "A serene mountain landscape at sunset",
"model": "grok/imagine"
},
)
generation_id = response.json()["data"]["id"]
# Poll for the result
result = requests.get(
f"https://api.modelstack.cc/v1/generations/{generation_id}",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])Related models
Other generation types for this model
Frequently asked questions
How is Grok Imagine billed on ModelStack?expand_more
Grok Imagine (Image Edit) is billed at a flat, prepaid rate of $4.00 / img — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Grok Imagine support?expand_more
Besides Image Edit, Grok Imagine also supports: Text to Image, Image to Image, Text to Video, Image to Video, Upscale, Extend.
Which parameters does Grok Imagine support?expand_more
Grok Imagine supports: Prompt, Image Input, Nsfw Checker.
How can I generate with Grok Imagine?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `grok/imagine` and type `IMAGE_TO_IMAGE_EDIT` — see the code example above.