Create Image
Model Overview
Setup your API Key
API Schema
post
Body
modelstring · enumRequiredPossible values:
aspect_ratiostring · enumOptionalDefault:
The aspect ratio of the generated image.
3:2Possible values: promptstring · max: 2560Required
The text prompt describing the content, style, or composition of the image to be generated.
convert_base64_to_urlbooleanOptionalDefault:
If True, the URL to the image will be returned; otherwise, the file will be provided in base64 format.
trueResponses
200Success
application/json
post/v1/images/generations
curl -L \
--request POST \
--url 'https://api.aimlapi.com/v1/images/generations' \
--header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"model": "reve/create-image",
"prompt": "A T-Rex relaxing on a beach, lying on a sun lounger and wearing sunglasses."
}'200Success
{
"data": [
{
"url": "https://cdn.aimlapi.com/generations/hedgehog/1749730923700-29fe35d2-4aef-4bc5-a911-6c39884d16a8.png",
"b64_json": null
}
],
"meta": {
"usage": {
"credits_used": 120000
}
}
}Quick Example

"A T-Rex relaxing on a beach, lying on a sun lounger and wearing sunglasses."Last updated
Was this helpful?