# modelprices.xyz Jamba Pricing Table

> modelprices.xyz Jamba 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 per-token pricing for all Jamba models (Jamba 1.5 Large, Jamba Mini) across every provider that hosts them, sorted cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/jamba-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-jamba-pricing-table-53246ce5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bib6x5-VE-Zim_G-F0bTF

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-jamba-pricing-table-53246ce5
```

Example prompt: What's the cheapest way to run Jamba 1.5 Large right now — can you pull the latest per-token prices across Bedrock, Azure, Vertex, OpenRouter, and Fireworks and rank them from cheapest to most expensive?

## When to prefer this

Use this endpoint when you specifically need Jamba (AI21) model pricing and want a cross-provider comparison in a single call. Prefer this over scraping individual provider pricing pages, or over general cheapest-model endpoints when you already know you want Jamba specifically. Choose sibling endpoints on modelprices.xyz if you need pricing across all models on a specific provider rather than all providers for a specific model.

## Known failure modes

- Provider pricing data temporarily unavailable — stale or partial results returned
- Rate limit or payment failure for the $0.01 x402 call — no data returned
- Jamba model lineup changes (new model added, old deprecated) may cause temporary gaps
- Network timeout if upstream pricing sources are slow to respond

## How this service works

Jamba pricing table: what every Jamba model costs per token right now — Jamba 1.5 Large, Jamba Mini — from AI21 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 Jamba inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized pricing table listing each Jamba model variant (Jamba 1.5 Large, Jamba Mini) and every provider that hosts them (AWS Bedrock, Azure, Vertex AI, OpenRouter, Fireworks, AI21 direct), with USD per 1 million tokens for input, output, cache, and batch pricing, sorted from cheapest to most expensive. Data is 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-jamba-pricing-table-53246ce5/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)
