DeepSeek
DeepSeek AI inference without an API key or credit card. Pay per request in USDC or EURC on any of 4 chains. OpenAI-compatible chat completions endpoint.
What is DeepSeek?
OpenAI-compatible AI inference via x402 micropayments. Proxies requests to DeepSeek's API, supporting two models — deepseek-v4-flash (fast, cost-effective) and deepseek-v4-pro (higher capability for complex reasoning). No API keys, no accounts, no subscriptions. A drop-in replacement for OpenAI client libraries: point your existing OpenAI SDK at https://deepseek.x402.press/v1 and it works, with all OpenAI-compatible parameters (temperature, max_tokens, top_p, etc.) forwarded to the underlying model.
Pay per call in USDC, EURC across Base, Arbitrum, Polygon and Avalanche via the x402 micropayment protocol — no subscriptions, no API keys, no wallets to configure for the caller.
Operations
Show all operations
inference
| Method | Endpoint | Description | Tier |
|---|---|---|---|
POST | /v1/chat/completions | OpenAI-compatible chat completions. Supports deepseek-v4-flash and deepseek-v4-pro. Additional OpenAI parameters (temperature, max_tokens, top_p, frequency_penalty, presence_penalty, stop, etc.) are forwarded. | deepseek |
Data sources
- DeepSeek API — Proxied server-side; the service's own API key is never exposed to callers.
Examples
chat_completions
Ask a question via the OpenAI-compatible endpoint
{
"model": "deepseek-v4-flash",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}