# modelprices.xyz — Microsoft Azure LLM Pricing Table

> modelprices.xyz — Microsoft Azure LLM 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 ranked table of per-token USD costs (input, output, cache, batch) for every AI model available on Microsoft Azure, sorted cheapest first, with context window sizes and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/azure
- 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-microsoft-azure-llm-pricing-table-3408a68c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JKaRj5Huhs_v3_aAebMWl

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-microsoft-azure-llm-pricing-table-3408a68c
```

Example prompt: Pull the full Azure LLM pricing table — I want to see every model ranked cheapest first with input, output, cache, and batch costs per million tokens, plus their context window sizes.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-normalized, hourly-refreshed pricing table for all Azure-hosted LLMs in a single call — especially for cost comparison, model selection, or budget forecasting workflows. Prefer over scraping Azure's pricing pages directly, which requires parsing and normalizing across multiple formats.

## Known failure modes

- Service temporarily unavailable (503) if refresh pipeline is delayed
- Stale data possible in the rare interval between hourly refreshes
- Model not yet listed if Azure added it within the last refresh cycle
- Payment failure (402) if x402 micropayment is not correctly handled by client

## How this service works

Microsoft Azure pricing table: per-token cost of every AI model Microsoft Azure serves, in one call — input, output, cache and batch USD per 1M tokens, ranked cheapest first, with context window and capability flags joined in. Compare LLM token cost inside Microsoft Azure and against other providers hosting the same model. Normalized from public sources, cross-checked, refreshed hourly.

## Output

A ranked list of all AI models available on Microsoft Azure, each with USD price per 1 million tokens for input, output, cached, and batch usage modes, along with context window size in tokens and capability flags (e.g. vision, reasoning), sorted ascending by cost. Data is refreshed hourly from public sources.

## 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-microsoft-azure-llm-pricing-table-3408a68c/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)
