Image

Quote image generation

Get a price estimate for an image generation request before committing.

POST
/image/generate/quote
Sign-In-With-X<token>

Base64-encoded JSON envelope containing a CAIP-122 sign-in message and its cryptographic signature.

{
  "message": "<CAIP-122 message>",
  "signature": "<base58 for Solana, hex for EVM>"
}

In: header

Request Body

application/json

model*string

Canonical model slug.

width?integer

Desired image width in pixels.

height?integer

Desired image height in pixels.

variants?integer

Number of image variants.

resolution?string

Resolution tier (e.g. 1K, 2K, 4K).

Response Body

application/json

curl -X POST "https://beta.aimo.network/api/v1/image/generate/quote" \  -H "Content-Type: application/json" \  -d '{    "model": "string"  }'
{
  "price_usd": 0.04,
  "valid": true,
  "message": "string"
}