# IBM watsonx LLM Pricing Table

> IBM watsonx 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-13).

Returns a ranked, normalized pricing table for every AI model available on IBM watsonx, including per-token costs for input, output, cache, and batch usage in USD per 1M tokens, with context window size and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/watsonx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ibm-watsonx-llm-pricing-table-771a9ae1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZFMXMdvQkq0Mfgh8agiw5

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 ibm-watsonx-llm-pricing-table-771a9ae1
```

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

## When to prefer this

Use this endpoint when you need a comprehensive, normalized, and ranked view of IBM watsonx model pricing in a single API call. Prefer it over manually scraping IBM documentation when you need machine-readable cost data with batch and cache pricing included. Choose it over sibling endpoints (Bedrock, Fireworks, etc.) specifically when the user's workload targets IBM watsonx infrastructure.

## Known failure modes

- Upstream IBM watsonx pricing page unavailable — stale or no data returned
- Rate limiting or payment failure on the x402 paywall — request blocked
- Model list may lag real-time IBM announcements by up to one refresh cycle (hourly)
- Capability flags may be incomplete for newly launched models

## How this service works

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

## Output

A structured table of all AI models available on IBM watsonx, sorted cheapest first, with columns for input cost, output cost, cache cost, and batch cost (all in USD per 1M tokens), plus context window size and capability flags per model. Data is refreshed hourly from normalized 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/ibm-watsonx-llm-pricing-table-771a9ae1/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)
