AI image generation from a text prompt
AI image generation from a text prompt. Generate album and single cover art, podcast and video thumbnails, social and campaign graphics, concept art, storyboard frames, product shots, and article illustrations. Returns one hosted still image as PNG or JPEG in square, portrait, or widescreen framing (1:1, 4:5, 9:16, 16:9, 21:9). Async by default: poll the returned pollUrl for imageUrl, or pass ?async=false to block.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
542 msmedian answer time
$0.15listed price per call
$0.15price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://app.suedeai.ai/agent/image
| Category | Image and media |
|---|---|
| Provider host | app.suedeai.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 8 from 5 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.15 | 542 ms |
Example input (from the provider)
{
"body": {
"aspectRatio": "1:1",
"outputFormat": "png",
"prompt": "<prompt>"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"aspectRatio": {
"description": "Desired frame aspect ratio.",
"enum": [
"1:1",
"9:16",
"16:9",
"3:4",
"4:3",
"3:2",
"2:3",
"5:4",
"4:5",
"21:9"
],
"type": "string"
},
"outputFormat": {
"description": "Output image format.",
"enum": [
"png",
"jpeg"
],
"type": "string"
},
"prompt": {
"description": "Visual prompt describing the image to generate.",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"imageUrl": {
"description": "Generated image URL when the render is complete; null until then.",
"format": "uri",
"type": [
"string",
"null"
]
},
"jobId": {
"description": "Job identifier for the render.",
"type": "string"
},
"pollUrl": {
"description": "Absolute URL to GET for the finished render, returned on the async accept. Needs no further payment. Null on a poll response.",
"format": "uri",
"type": [
"string",
"null"
]
},
"provider": {
"description": "Provider handling the render.",
"type": "string"
},
"status": {
"description": "Current render status: 'queued' or 'processing' while the render runs, then the terminal 'completed' or 'failed'.",
"type": "string"
}
},
"required": [
"jobId",
"status",
"provider"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}