← Free tools

Free tool · #4

LLM Model Comparison

Compare every model side by side — price (verified or labelled pending), context window, and capabilities.

Prices verified 15 Jul 2026 · 131 models

Columns
kind ≈ derived
Pin
OpenAI+1gpt-5.6-sol$5.00$30.001.1M / 128Kfncachebatchfrontier
OpenAI+1gpt-5.5$5.00$30.001.1M / 128Kfncachebatchfrontier
OpenRoutergpt-5.2-pro$21.00$168.00272K / 128Kfnfrontier
OpenRoutergpt-5.1-codex-max$1.25$10.00400K / 128Kfncachefrontier
Anthropic+3claude-fable-5$10.00$50.001M / 128Kfncachebatchfrontier
Anthropic+3claude-opus-4-8$5.00$25.001M / 128Kfncachebatchfrontier
Anthropic+4claude-opus-4-7$5.00$25.001M / 128Kfncachebatchfrontier
Anthropic+5claude-opus-4-6$5.00$25.001M / 128Kfncachebatchfrontier
Anthropic+5claude-opus-4-5$5.00$25.00200K / 64Kfncachebatchfrontier
Anthropic+5claude-opus-4-1$15.00$75.00200K / 32Kfncachebatchfrontier
OpenAI+2gpt-4$30.00$60.008.2K / 4.1Kfncachebatchfrontier
OpenAI+2gpt-4-turbo$10.00$30.00128K / 4.1Kfncachebatchfrontier
OpenAIgpt-4-turbo-preview$10.00$30.00128K / 4.1Kfncachebatchfrontier
DeepInfraHermes-3-Llama-3.1-405B$1.00$1.00131.1K / 131.1Kfnfrontier
OpenAI+3o1$15.00$60.00200K / 100Kfncachebatchfrontier
Azureo1-preview$15.00$60.00128K / 32.8Kfncachefrontier
OpenAI+1gpt-5.6pending$5.00$30.001.1M / 128Kfncachebatchfrontier
Azuregpt-4.5-previewpending$75.00$150.00128K / 16.4Kfncachefrontier
Azuregpt-4-32kpending$60.00$120.0032.8K / 4.1Kfrontier
Azuregpt-4-32k-0613pending$60.00$120.0032.8K / 4.1Kfrontier
Anthropic+2claude-4-opuspending$15.00$75.00200K / 32Kfncachebatchfrontier
Azuregpt-4-turbo-vision-previewpending$10.00$30.00128K / 4.1Kfrontier
DeepInfraL3.3-70B-Euryale-v2.3pending$0.65$0.75131.1K / 131.1Kfrontier
Groqllama-3.3-70b-versatilepending$0.59$0.79128K / 32.8Kfnfrontier
Vercel AI Gatewayllama-3.3-70bpending$0.72$0.72128K / 8.2Kfnfrontier
1–25 of 701 models1 / 29
Use this tool from code — or hand it to your agentagent prompt · REST · MCP

Hand this tool to your coding agent

Paste into Claude Code, Cursor, Codex, or any agent. It learns to call this tool over REST or MCP, reaches for it when you ask, and keeps our sourced/pending labels honest.

You can use telemeter.ai's free "LLM Model Comparison" — a keyless, read-only tool (no signup), available as an HTTP API and an MCP tool. What it does: Compare every model side by side — price (verified or labelled pending), context window, and capabilities.

Whenever I ask you something this tool answers, call it and use its result instead of estimating yourself.

REST:
  curl -sX POST https://telemeter.ai/api/tools/llm-model-comparison -H 'content-type: application/json' -d '{"models":["gpt-4o","claude-sonnet-5"]}'

MCP: the telemeter MCP server at https://telemeter.ai/mcp exposes this as the tool "llm-model-comparison" — call it with tools/call.

The response is JSON: { status, data, summary, provenance }. "provenance" carries the source and the date the figure was verified. If status is "pending" or "stale", tell me the value isn't currently verified rather than presenting it as fact.

Or call it directly. This tool runs behind one handler with three front doors — this page, a REST endpoint, and an MCP tool. Same result, read-only, no key. The example below is a request that works.

REST
curl -sX POST https://telemeter.ai/api/tools/llm-model-comparison \
  -H 'content-type: application/json' \
  -d '{"models":["gpt-4o","claude-sonnet-5"]}'
MCP — tools/call at https://telemeter.ai/mcp
curl -sX POST https://telemeter.ai/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"llm-model-comparison","arguments":{"models":["gpt-4o","claude-sonnet-5"]}}}'
Input schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "tier": {
      "type": "string",
      "enum": [
        "frontier",
        "flagship",
        "economy"
      ]
    },
    "provider": {
      "type": "string",
      "minLength": 1
    },
    "kind": {
      "type": "string",
      "enum": [
        "chat",
        "embeddings",
        "reasoning"
      ]
    },
    "capability": {
      "type": "string",
      "enum": [
        "function_calling",
        "prompt_caching",
        "batch_api"
      ]
    }
  },
  "additionalProperties": false
}

Want this across your whole stack?

Telemeter tracks real cost, latency, and quality on every production agent run — on the same verified pricing behind this tool.

No account, no cookies, nothing stored — every answer is computed from a sourced registry and never logged. Data notice →