$ curl llmtap.vercel.app --同一模型 --便宜10倍

−90%

在 gpt-5.6 系列上,相比 OpenAI 官方价格,你每个 token 少付这么多。同样的前沿模型(GPT、Claude、Gemini),兼容的 API,按精确 token 计费。无订阅,无套餐速率限制。

开始即送 $50 免费用量。无需银行卡。

terminal200 OK
$ 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"}]
    }'
gpt-5.6-sol $0.50/$3.00 gpt-5.6-terra $0.25/$1.50 gpt-5.5 $0.50/$3.00 gpt-5.4 $0.25/$1.50 codex-auto-review $0.25/$1.50 claude-opus-4.8 $0.80/$4.00 claude-sonnet-5 $0.32/$1.60 claude-haiku-4.5 $0.08/$0.32 claude-fable-5 $8.00/$40.00 gemini-3.1-pro $0.53/$3.20 gemini-3.5-flash $0.40/$2.40 USD per 1M tokens input/output

4 步开始

01

注册

30 秒创建免费账户。无需银行卡。

02

创建 API 密钥

在仪表板中生成带名称的密钥。请立即复制:只显示一次。

03

修改 base URL

把任何兼容 OpenAI 的客户端指向 https://llmtap.dev/api/v1。一行代码,仅此而已。

04

完成

同样的 SDK、同样的代码、同样的模型,只需一小部分成本。

使用方式

01

创建账户并充值

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.

02

生成 API 密钥

From the dashboard you create named keys, revoke them anytime, and see per-request usage with exact tokens.

03

改一行代码即可调用

The API is compatible with the OpenAI format: point base_url to llmtap, use your key, and your code stays the same.

每 1M token 价格

Exact billing based on tokens reported by the upstream. Official is the list price of the corresponding provider; savings are computed on input.

模型提供商inputoutput官方 in/out节省
gpt-5.6-solOpenAI$0.50$3.00$5.00/$30.0090%
gpt-5.6-terraOpenAI$0.25$1.50$2.50/$15.0090%
gpt-5.5OpenAI$0.50$3.00$5.00/$30.0090%
gpt-5.4OpenAI$0.25$1.50$2.50/$15.0090%
codex-auto-reviewOpenAI$0.25$1.50$2.50/$15.0090%
claude-opus-4.8Anthropic$0.80$4.00$5.00/$25.0084%
claude-sonnet-5Anthropic$0.32$1.60$2.00/$10.0084%
claude-haiku-4.5Anthropic$0.08$0.32$0.50/$2.5084%
claude-fable-5Anthropic$8.00$40.00$10.00/$50.0020%
gemini-3.1-proGoogle$0.53$3.20$2.00/$12.0073%
gemini-3.5-flashGoogle$0.40$2.40$1.50/$9.0073%

你能省多少?

按你的月用量,把我们的转售价格与官方价格对比。

$50$200$500$1,000$2,000
使用 llmtap
$200/月
官方零售价
$2,000/月
你节省
$1,800/月(90%)

按 input 与 output 10:1 的比例计算,即 Cursor 或 Claude Code 的典型使用模式。

与一切兼容

任何兼容 OpenAI 的客户端。改一次 base URL,其余保持不变。

CursorClaude CodeClineKilo CodeContinue.devOpenAI SDKAnthropic SDKLangChain
通用配置,粘贴到任何地方:
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.

main.py
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.

Are these the real models or knockoffs?

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.

Why is it cheaper than official pricing?

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.

Can I use this in production?

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.

What about code privacy?

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.

How do I connect to Cursor / Claude Code?

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.

Do you support subscriptions?

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.

$ 准备少花钱

创建账户,生成密钥,5 分钟内即可调用。

创建账户