AI Connections

High-performance LLM API relay — powered by DeepSeek, priced at 90% of official rates

Quick Start

1
Register
Visit aiconnections.top/register and create an account. You'll get $0.50 free credit instantly.
2
Get an API Key
After login, go to TokenAdd New Token. Name it anything, leave quota at 0 (uses your account balance). Copy the generated key.
3
Call the API
Use the OpenAI-compatible endpoint:
curl https://aiconnections.top/v1/chat/completions \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

API Reference

Base URLhttps://aiconnections.top/v1
AuthAuthorization: Bearer YOUR_TOKEN
FormatOpenAI-compatible (chat completions)
StreamingSupported ("stream": true)

Models & Pricing

DeepSeek V4 series. All prices include a 5-10% service fee over direct API costs — no hidden charges, no minimum spend.

ModelInput / 1M tokensOutput / 1M tokensContext
deepseek-v4-flash$0.154$0.3081M
deepseek-v4-pro$0.455$0.911M

Plans

Starter

$1
one-time
  • deepseek-v4-flash
  • No expiry
  • $0.50 free trial

Standard

$10
one-time
  • Flash + Pro
  • No expiry
  • Best for daily use

Pro

$50
one-time
  • All models
  • No expiry
  • Includes reasoner

Enterprise

$200
one-time
  • All models
  • No expiry
  • Priority support

Rate Limits

600 requests / minute per IP address. Exceeding returns HTTP 429 Too Many Requests. Contact us if you need higher limits.

Top Up / Recharge

1
Purchase a top-up code from us via your preferred payment method (Alipay, WeChat, Stripe, crypto).
2
Go to Top UpRedeem Code → enter the code → click Redeem Now.
3
Your balance updates instantly. Check your balance on the Top Up page.

SDK Examples

Python (openai package)

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_TOKEN",
    base_url="https://aiconnections.top/v1"
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

JavaScript

const response = await fetch("https://aiconnections.top/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "deepseek-v4-flash",
    messages: [{ role: "user", content: "Hello!" }]
  })
});
const data = await response.json();
console.log(data.choices[0].message.content);

FAQ

Q: What's the difference from DeepSeek official API?
Same models, same quality. We charge 90% of official rates. No billing setup needed — just top up and use.

Q: Does credit expire?
No. Your balance never expires.

Q: Which OpenAI features are supported?
Chat completions, streaming, function calling, JSON mode — all standard features.

Q: Need more quota or custom plans?
Contact us. We're happy to set up custom pricing for high-volume users.