# modelprices.xyz DeepSeek Pricing Table

> modelprices.xyz DeepSeek 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 current per-token pricing for all DeepSeek models (V4, R1, Coder, etc.) across every provider that hosts or resells them, sorted cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/deepseek-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-deepseek-pricing-table-bf05921a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tdX68ZYBkjmTQBNUlH0bV

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-deepseek-pricing-table-bf05921a
```

Example prompt: Show me the current per-token prices for all DeepSeek models — R1, V4, Coder — across every provider like Bedrock, Azure, Vertex, and OpenRouter, sorted cheapest first so I can pick the most cost-effective place to run inference.

## When to prefer this

Choose this endpoint when you need a comprehensive, cross-provider DeepSeek-specific pricing table in a single call. It is ideal for cost optimization workflows targeting DeepSeek models specifically, where you want input/output/cache/batch breakdowns normalized across all major resellers. Prefer this over the single-model lookup endpoint when you need to compare multiple DeepSeek models or providers simultaneously, and over generic cheapest-model queries when you specifically want DeepSeek coverage.

## Known failure modes

- Pricing data temporarily stale if provider APIs are unresponsive during the hourly refresh
- Payment of $0.01 USDC required via x402; unpaid requests return 402 Payment Required
- Specific model or provider not yet indexed returns empty row or is omitted from results
- Network timeout if modelprices.xyz is temporarily unavailable

## How this service works

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

## Output

A normalized table of all DeepSeek models (V4, R1, Coder, etc.) with input, output, cache, and batch USD prices per 1M tokens for each provider (DeepSeek native, AWS Bedrock, Azure, Vertex AI, OpenRouter, Fireworks), sorted ascending by cost. Data is refreshed hourly and cross-checked across 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/modelprices-xyz-deepseek-pricing-table-bf05921a/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)
