# modelprices.xyz AWS Bedrock Pricing Table

> modelprices.xyz AWS Bedrock 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-16).

Returns per-token USD costs for every AI model available on AWS Bedrock, including input, output, cache, and batch pricing, ranked cheapest first with context window and capability metadata.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/bedrock
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-aws-bedrock-pricing-table-38a6568e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wa5-OaWOgo8jRXm7AQ_7m

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-aws-bedrock-pricing-table-38a6568e
```

Example prompt: Pull the full AWS Bedrock pricing table — I want to see every model's input, output, cache, and batch cost per million tokens, sorted cheapest first, along with context window sizes and capability flags.

## When to prefer this

Use this endpoint when you specifically need AWS Bedrock model pricing in a single structured call, including batch and cache token rates that are often missing from generic LLM price aggregators. Prefer it over scraping AWS documentation directly (which is unstructured and changes frequently) or using general-purpose LLM price lists that don't break out Bedrock-specific tiers. Especially useful when cross-comparing the same model hosted on Bedrock vs. other providers, or when building cost-optimization logic for AWS-native AI workloads.

## Known failure modes

- Upstream AWS Bedrock pricing page unavailable — stale cached data returned or 503 error
- Model recently added to Bedrock but not yet indexed in the hourly refresh — missing entry
- Pricing units misread from source during normalization — rare cross-check mismatch
- Rate limit exceeded on the modelprices.xyz API — 429 response
- x402 payment not confirmed — 402 response blocking access

## How this service works

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

## Output

A ranked table of all AI models hosted on AWS Bedrock, each entry including model name, input price, output price, cache price, and batch price (all in USD per 1M tokens), context window size, and capability flags (e.g. vision, reasoning), sorted ascending by cost.

## 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-aws-bedrock-pricing-table-38a6568e/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)
