BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Images

List image generation models

Lists every available image generation model, each with supported_parameters — the authoritative list of what that model's route actually accepts (e.g. whether aspect_ratio is honored natively, whether input_references enables image-to-image). No auth required; with an organization API key, the response is filtered by the org's model allowlist.

GET/api/v1/images/models

Deep guide →

GET /api/v1/images/models
curl https://bazaarlink.ai/api/v1/images/models
Response examples

Success. Returns the model list; cached for 5 minutes (private, uncached with an organization key). supported_parameters is the authoritative per-route support table.

{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-image-2",
      "object": "model",
      "created": 1753500000,
      "owned_by": "openai",
      "name": "GPT Image 2",
      "description": "…",
      "pricing": {
        "prompt": "0.000005",
        "completion": "0.00004",
        "image": "0.04"
      },
      "architecture": {
        "modality": "text+image->image",
        "input_modalities": [
          "text",
          "image"
        ],
        "output_modalities": [
          "image"
        ]
      },
      "supported_parameters": [
        "model",
        "prompt",
        "n",
        "size",
        "stream",
        "aspect_ratio",
        "resolution",
        "quality",
        "background",
        "output_format",
        "output_compression",
        "seed",
        "input_references"
      ]
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
List image generation models — BazaarLink API