# modelprices.xyz Cheapest Vision/Multimodal LLM Leaderboard

> modelprices.xyz Cheapest Vision/Multimodal LLM Leaderboard is a paid API for AI agents from modelprices.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the 50 lowest-cost AI models that accept image input, ranked by token price across all providers, with input, output, and cache pricing per 1M tokens.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/cheapest/vision
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-cheapest-vision-multimodal-llm-leaderboard-5643e779
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x6SC3Vxqp1a0P-f1WySgq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability modelprices-xyz-cheapest-vision-multimodal-llm-leaderboard-5643e779
```

Example prompt: What's the cheapest AI model right now that can accept image inputs? Pull the full vision model price leaderboard so I can compare input and output token costs across providers like OpenAI, Anthropic, Google, and Meta.

## When to prefer this

Use this endpoint when you specifically need to find or compare AI models that support image/vision input ranked by cost. Prefer this over the general cheapest LLM leaderboard when the image-processing capability is a hard requirement. Use this instead of individual provider pricing tables (e.g. OpenAI or Bedrock) when you want a cross-provider comparison in a single call.

## Known failure modes

- Upstream pricing data unavailable — service may return stale or partial data
- HTTP 402 if payment is not completed via x402 protocol
- No models returned if the filter criteria exclude all vision-capable models
- Hourly refresh delay means prices could be up to 60 minutes behind actual provider changes

## How this service works

Cheapest vision/multimodal LLM leaderboard: the 50 lowest-cost AI models that accept image input, ranked by token price across every provider — GPT-5, Claude 5, Gemini 3, Llama 4, Qwen VL and more. Input, output and cache USD per 1M tokens with context window joined in. Answers 'what is the cheapest model that can read images?' in one call. Refreshed hourly.

## Output

A ranked list of up to 50 vision/multimodal LLM models, each with model name, provider, input cost per 1M tokens, output cost per 1M tokens, cache cost per 1M tokens, and context window size — sorted ascending by price and refreshed hourly.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/modelprices-xyz-cheapest-vision-multimodal-llm-leaderboard-5643e779/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from modelprices.xyz](https://www.zero.xyz/host/modelprices.xyz/llms.txt)
