$ curl llmtap.vercel.app --نفس-النموذج --أرخص-10-مرات
هذا ما توفره لكل توكن في سلسلة gpt-5.6 مقارنة بالسعر الرسمي من OpenAI. نفس النماذج المتقدمة (GPT وClaude وGemini) خلف واجهة برمجة متوافقة، مع فوترة دقيقة لكل توكن. بدون اشتراك، وبدون حدود معدل للخطة.
$50 من الاستخدام المجاني للبدء. بدون بطاقة.
$ curl https://llmtap.dev/api/v1/chat/completions \
-H "Authorization: Bearer sk-live-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-sol",
"messages": [{"role": "user", "content": "hello"}]
}'أنشئ حسابك المجاني في 30 ثانية. بدون بطاقة.
أنشئ مفتاحًا باسم من لوحة التحكم. انسخه فورًا: يظهر مرة واحدة فقط.
وجّه أي عميل متوافق مع OpenAI إلى https://llmtap.dev/api/v1. سطر واحد فقط.
نفس الـ SDK، ونفس الكود، ونفس النماذج، بجزء بسيط من التكلفة.
Sign up with your email. Top up with USDT or USDC (BSC network) and your balance is credited automatically once the network confirms. Promotional redeem codes are also supported.
From the dashboard you create named keys, revoke them anytime, and see per-request usage with exact tokens.
The API is compatible with the OpenAI format: point base_url to llmtap, use your key, and your code stays the same.
Exact billing based on tokens reported by the upstream. Official is the list price of the corresponding provider; savings are computed on input.
| النموذج | المزود | input | output | الرسمي in/out | التوفير |
|---|---|---|---|---|---|
| gpt-5.6-sol | OpenAI | $0.50 | $3.00 | $5.00/$30.00 | −90% |
| gpt-5.6-terra | OpenAI | $0.25 | $1.50 | $2.50/$15.00 | −90% |
| gpt-5.5 | OpenAI | $0.50 | $3.00 | $5.00/$30.00 | −90% |
| gpt-5.4 | OpenAI | $0.25 | $1.50 | $2.50/$15.00 | −90% |
| codex-auto-review | OpenAI | $0.25 | $1.50 | $2.50/$15.00 | −90% |
| claude-opus-4.8 | Anthropic | $0.80 | $4.00 | $5.00/$25.00 | −84% |
| claude-sonnet-5 | Anthropic | $0.32 | $1.60 | $2.00/$10.00 | −84% |
| claude-haiku-4.5 | Anthropic | $0.08 | $0.32 | $0.50/$2.50 | −84% |
| claude-fable-5 | Anthropic | $8.00 | $40.00 | $10.00/$50.00 | −20% |
| gemini-3.1-pro | $0.53 | $3.20 | $2.00/$12.00 | −73% | |
| gemini-3.5-flash | $0.40 | $2.40 | $1.50/$9.00 | −73% |
قارن سعر إعادة البيع لدينا بالأسعار الرسمية حسب استهلاكك الشهري.
محسوب بنسبة 10:1 بين الإدخال والإخراج، وهو النمط المعتاد لاستخدام Cursor أو Claude Code.
أي عميل متوافق مع OpenAI. غيّر الـ base URL مرة واحدة واترك الباقي كما هو.
base_url = "https://llmtap.dev/v1" api_key = "sk-..."
If your code already talks to OpenAI, pointing it to llmtap means changing base_url and the key. Streaming, function calling and the error format behave the same.
And if the upstream fails, the charge is refunded automatically. You only pay for completed responses.
from openai import OpenAI
client = OpenAI(
api_key="sk-live-your-key",
base_url="https://llmtap.dev/api/v1",
)
res = client.chat.completions.create(
model="claude-sonnet-5",
messages=[{"role": "user", "content": "hello"}],
)
print(res.choices[0].message.content)We buy capacity in bulk through subscription pools and route your requests to the official servers. Same model, shared cost. It is the same mechanism API proxies in Asia have used for years.
The request goes to the official upstream unmodified. You can run your own benchmarks against the official API and compare: same weights, same results. Plus every request is logged with exact tokens in your dashboard.
You don't pay. We lock an estimate before calling and settle against the real usage reported by the upstream. If the stream breaks or the provider errors, the hold is fully refunded to your balance automatically.
With crypto: USDT or USDC on the BSC network, processed by NowPayments. Balance is credited only once the transaction confirms on-chain. No cards, no monthly subscription: you pay per token consumed.
No. You change base_url and the API key. It works with the OpenAI SDK, with curl, and with any client that speaks the /v1/chat/completions format.
Real. Requests go to the official upstream unmodified. You can benchmark the same model against the official API and compare results: same weights, same output.
We buy capacity in bulk through subscription pools and pass the savings to you. Same mechanism API proxies have used for years. No retail margin, no per-seat licensing overhead.
Yes. We route through redundant upstream pools. If one provider degrades, requests fail over to the next available. Typical latency is within 5% of the official API. No request storage, metadata-only logging.
Requests are not stored or logged beyond metadata (model, tokens, timestamp) needed for billing. Prompt and response content is not retained. No training, no third-party sharing.
In Cursor: Settings → Models → Add OpenAI-compatible provider → base URL https://llmtap.dev/api/v1 + your key. In Claude Code: set ANTHROPIC_BASE_URL to https://llmtap.dev/api/v1 and use your key as the API token. Works with any OpenAI-compatible client.
We are pay-as-you-go only for now: you pay per exact token consumed, nothing more. Subscriptions with monthly caps are on the roadmap.