# modelprices.xyz Llama Pricing Table

> modelprices.xyz Llama Pricing Table 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 a normalized, cross-provider pricing table for all Llama models (input, output, cache, batch USD per 1M tokens), sorted cheapest first, refreshed hourly.

## Facts

- Endpoint: GET https://modelprices.xyz/llama-pricing
- 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-llama-pricing-table-acaea3d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CZG9Z8F0eoTeh-JsIw77h

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-llama-pricing-table-acaea3d0
```

Example prompt: Show me the full Llama pricing table across all providers — Bedrock, Azure, Vertex, OpenRouter, Fireworks — sorted cheapest first so I can see input, output, and batch prices per million tokens for Llama 4 Scout, Llama 4 Maverick, and Llama 3.3 right now.

## When to prefer this

Use this endpoint when you specifically need Llama model pricing across multiple hosting providers in a single normalized call, especially when comparing Meta's Llama family (Scout, Maverick, 3.3) across AWS Bedrock, Azure, Vertex, OpenRouter, and Fireworks. Prefer this over general model search endpoints when the user's query is specifically about Llama-family cost or provider selection for Llama inference.

## Known failure modes

- Pricing data temporarily stale if provider APIs are unavailable during refresh cycle
- Missing rows if a provider has recently changed their pricing page structure
- Empty result if no Llama models are currently listed by any provider
- HTTP 402 if payment of $0.01 USDC is not included with the request

## How this service works

Llama pricing table: what every Llama model costs per token right now — Llama 4 Scout, Llama 4 Maverick, Llama 3.3 — from Meta and every provider that resells or hosts them (Bedrock, Azure, Vertex, OpenRouter, Fireworks). Input, output, cache and batch USD per 1M tokens, sorted cheapest first, so you can compare Llama inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized table of all Llama models (Llama 4 Scout, Llama 4 Maverick, Llama 3.3, etc.) with per-provider pricing rows including input, output, cache, and batch costs in USD per 1 million tokens, sorted from cheapest to most expensive, cross-checked and refreshed hourly across Meta, AWS Bedrock, Azure, Google Vertex, OpenRouter, and Fireworks.

## 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-llama-pricing-table-acaea3d0/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)
