Claude requires your passport from July 8, 2026. We don't even ask for your email.
OpenAI-compatible API proxy for Qwen & DeepSeek models. $1 per 1M input tokens. No identity verification, no credit card, no phone number. Pay with crypto.
Anthropic is requiring government ID + face scan for all Claude Free/Pro/Max users starting July 8, 2026.
We built this proxy so developers can keep building without uploading their passport to an AI company.
from openai import OpenAI
client = OpenAI(
base_url="https://amzmate.top/api/v1",
api_key="dp-dff7131fdae39578b9427de8091e9447064170371add4fbc" # Free test key
)
response = client.chat.completions.create(
model="qwen-plus",
messages=[{"role": "user", "content": "Hello, world!"}]
)
print(response.choices[0].message.content)# Before (Claude — requires KYC from July 8)
export ANTHROPIC_API_KEY=sk-ant-...
# After (No-KYC alternative)
export OPENAI_API_KEY=dp-dff7131fdae39578b9427de8091e9447064170371add4fbc
export OPENAI_BASE_URL=https://amzmate.top/api/v1| Model | Input Price | Output Price | Quality |
|---|---|---|---|
| qwen-plus | $1.00 / 1M tokens | $3.00 / 1M tokens | ~85% of GPT-4 |
| qwen-max | $2.00 / 1M tokens | $6.00 / 1M tokens | ~95% of GPT-4 |
| qwen-turbo | $0.50 / 1M tokens | $1.50 / 1M tokens | Fast & cheap |
| deepseek-chat | $2.00 / 1M tokens | $2.00 / 1M tokens | Strong reasoning |
Compare to Claude (post-July 8 with KYC):
| Claude Sonnet 4.6 | Our Qwen-Plus | Savings | |
|---|---|---|---|
| Price/M input | $3.00 | $1.00 | 3x cheaper |
| KYC required | YES (passport+selfie) | NO | - |
| Region locked | Many regions blocked | Global | - |
| Endpoint | Description |
|---|---|
/v1/chat/completions |
Auto-routes to cheapest model |
/qwen/v1/chat/completions |
Qwen models only |
/deepseek/v1/chat/completions |
DeepSeek models only |
/v1/models |
List available models |
Any tool that supports OpenAI-compatible API endpoints:
- Claude Code — set
OPENAI_BASE_URL+OPENAI_API_KEY - Aider —
aider --model openai/qwen-plus - Cline — configure OpenAI-compatible provider
- Codex CLI — set API base URL in config
- Cursor — add custom OpenAI endpoint
- LangChain —
ChatOpenAI(base_url=..., api_key=...) - Any OpenAI SDK app — change 2 lines
- No identity verification required — ever
- No credit card or billing address
- No phone number
- No email required for API access
- Pay with USDT (crypto)
- We don't log your prompts or responses
- Your data is NOT used for model training
USDT (TRC-20): 0x9A8fE50c020C96e76770D86Be2158651dc9F8a36
$1 = 1M input tokens on qwen-plus. Top up credits, use until depleted. No subscription, no auto-renewal.
Contact for larger volumes or custom pricing.
API Key: dp-dff7131fdae39578b9427de8091e9447064170371add4fbc
Base URL: https://amzmate.top/api/v1
Credits: Free trial credits included
Rate limited to prevent abuse. For production use, top up via USDT.
Q: Is this legal? A: Yes. We resell API access from official providers (Alibaba Cloud DashScope, DeepSeek). You're buying compute, not evading sanctions.
Q: Why not use OpenRouter? A: OpenRouter charges a markup on top of official pricing. We pass through at near-cost + small margin. Also: OpenRouter still routes through providers that may require KYC.
Q: Will you ever require KYC? A: No. The entire point of this service is KYC-free access. We built it specifically because we refuse to upload our passport to use an AI.
Q: What if Qwen goes down?
A: DeepSeek is configured as a backup. The /v1/chat/completions endpoint auto-routes to available models.
Q: How do I know you're not logging my data? A: Check our source code. The proxy is open source. Or run your own instance — the setup takes 5 minutes.
Want to run your own proxy? See SELFHOST.md.
git clone https://github.com/shuchen661989/openai-compatible-api-proxy.git
cd openai-compatible-api-proxy
docker-compose up -dBuilt by developers who refuse to show ID to talk to an AI.