Skip to content

shuchen661989/openai-compatible-api-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

No-KYC AI API Proxy

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.


Why This Exists

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.


Quick Start (30 seconds)

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)

Claude Code Migration

# 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

Models & Pricing

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 -

API Endpoints

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

Compatible With

Any tool that supports OpenAI-compatible API endpoints:

  • Claude Code — set OPENAI_BASE_URL + OPENAI_API_KEY
  • Aideraider --model openai/qwen-plus
  • Cline — configure OpenAI-compatible provider
  • Codex CLI — set API base URL in config
  • Cursor — add custom OpenAI endpoint
  • LangChainChatOpenAI(base_url=..., api_key=...)
  • Any OpenAI SDK app — change 2 lines

No KYC. No Tracking.

  • 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

Payment

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.


Free Test Key

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.


FAQ

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.


Self-Host

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 -d

Built by developers who refuse to show ID to talk to an AI.

GitHub · API Docs · Status


No passport. No face scan. Just an API key.


Star this repo


Website · Zhihu Guide · English · Pay CNY · Pay USDT

Releases

No releases published

Packages

 
 
 

Contributors