# FarOut DeepSeek V4 Pro Chat Completions (x402 Pay-Per-Call)

> FarOut DeepSeek V4 Pro Chat Completions (x402 Pay-Per-Call) is a paid API for AI agents from farouter.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Runs a DeepSeek V4 Pro chat completion request billed per-call at $0.001 USDC via the x402 payment protocol — no API key or account required.

## Facts

- Endpoint: POST https://farouter.tech/v1/metered/models/deepseek-v4-pro/chat/completions
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/farout-deepseek-v4-pro-chat-completions-x402-pay-per-call-38598f3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j53GS7m09sd-jXnn6Z30R

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 farout-deepseek-v4-pro-chat-completions-x402-pay-per-call-38598f3b -d '<json body>'
```

Example prompt: Ask DeepSeek V4 Pro to explain the difference between Base and Solana for smart contract development — pay per call with no account needed, just deduct the $0.001 USDC from my wallet.

## When to prefer this

Choose this endpoint when you need DeepSeek V4 Pro chat completions with zero account setup, want to pay only per successful call in USDC, or are building a crypto-native or autonomous agent that needs trustless, key-free LLM access. It is ideal for bursty or experimental workloads where a subscription would be wasteful and for agents that hold a crypto wallet and need to invoke LLM inference as a paid action.

## Known failure modes

- Payment rejected or insufficient USDC balance — call is not charged
- Invalid or malformed message array — 400 error returned
- x402 payment handshake fails due to network issues on Base or Solana
- Model temporarily unavailable — upstream inference error
- Rate or quota limits on the underlying DeepSeek model

## How this service works

Pay-per-call LLM inference over x402. Frontier models (GLM, GPT, Gemini, Kimi, DeepSeek, MiniMax) billed per request in USDC on Base or Solana mainnet. No API key, no account. The 402 quotes your exact request; failed calls are never charged.

## Output

Returns a JSON object with an OpenAI-compatible chat completion structure: a choices array containing the assistant's message content and finish_reason, plus a usage object with prompt_tokens and completion_tokens counts.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usage": {
   "prompt_tokens": 6,
   "completion_tokens": 8
  },
  "choices": [
   {
    "message": {
     "role": "assistant",
     "content": "Hello! How can I help?"
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/farout-deepseek-v4-pro-chat-completions-x402-pay-per-call-38598f3b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from farouter.tech](https://www.zero.xyz/host/farouter.tech/llms.txt)
