# modelprices.xyz Databricks LLM Pricing Table

> modelprices.xyz Databricks 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-14).

Returns a ranked table of per-token USD costs for every AI model served by Databricks, including input, output, cache, and batch pricing plus context window and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/databricks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-databricks-llm-pricing-table-19e16a92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kpXeyTgSrrf45bFmheH8L

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-databricks-llm-pricing-table-19e16a92
```

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

## When to prefer this

Use this endpoint when you specifically need Databricks model pricing data — especially when comparing costs across all models Databricks serves in one call, or when you need cache/batch pricing breakdowns that are not easily available from Databricks documentation directly. Prefer this over manual scraping or provider documentation when you need structured, normalized, hourly-refreshed data ranked by cost.

## Known failure modes

- Service unavailable or rate limit exceeded (HTTP 5xx)
- Payment required error if x402 payment not included (HTTP 402)
- Stale data if refresh cycle is delayed (data may be up to ~1 hour old)
- Empty or partial response if Databricks pricing page structure changes upstream

## How this service works

Databricks pricing table: per-token cost of every AI model Databricks 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 Databricks and against other providers hosting the same model. Normalized from public sources, cross-checked, refreshed hourly.

## Output

A ranked table of all AI models available on Databricks, sorted cheapest first, with per-model USD costs per 1M tokens for input, output, cache, and batch pricing modes, plus context window size and capability flags (e.g. vision, function calling). Data is normalized from public sources 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-databricks-llm-pricing-table-19e16a92/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)
