# AgentProvisions Model Pricing Lookup

> AgentProvisions Model Pricing Lookup is a paid API for AI agents from agentprovisions.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns current pricing facts for a specified AI model from its provider, paid per-call via x402 micropayment.

## Facts

- Endpoint: GET https://agentprovisions.com/v1/model-pricing-lookup
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentprovisions-model-pricing-lookup-4eab1537
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_prlM1okzwBXLhamxLX_sw

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 agentprovisions-model-pricing-lookup-4eab1537
```

Example prompt: What's the current pricing for claude-sonnet-5 from Anthropic? Use the AgentProvisions model pricing lookup to get the facts.

## When to prefer this

Choose this endpoint when you need programmatic, up-to-date pricing data for a specific AI model and provider combination, especially within an agentic workflow that needs to calculate, budget, or report on LLM costs. Prefer this over manually scraping provider pricing pages or relying on stale cached data.

## Known failure modes

- Missing or invalid required query parameters (model or provider) return a free 400 error before any payment is charged
- Unknown model/provider combinations may return empty facts arrays
- Network timeouts or service unavailability may return 5xx errors
- x402 payment validation failure prevents access to the paid route

## How this service works

Two x402-paid SKUs (model-provider-delta, model-pricing-lookup) plus free previews, health, and receipt redelivery. Paid routes validate query parameters before the payment gate — invalid/missing required parameters return a free 400, never a charge.

## Output

A JSON object containing the SKU identifier ('model-pricing-lookup'), the queried model name, the provider name, and an array of pricing facts for that model. For example: {sku: 'model-pricing-lookup', facts: [...], model: 'claude-sonnet-5', provider: 'anthropic'}.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sku": "model-pricing-lookup",
  "facts": [],
  "model": "claude-sonnet-5",
  "provider": "anthropic"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentprovisions-model-pricing-lookup-4eab1537/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentprovisions.com](https://www.zero.xyz/host/agentprovisions.com/llms.txt)
