OpenAI-compatible access for DeepSeek & Qwen

Ship AI features with one developer API

Use familiar OpenAI SDK patterns to call supported DeepSeek and Qwen models. Create an account, generate a secure API key, and pay only for actual usage.

OpenAI-compatibleChange your base URL Usage-based pricingNo subscription required Key-protected APINo public unauthenticated access
quickstart.py
from openai import OpenAI

client = OpenAI(
    api_key="sk-your-api-key",
    base_url="https://api.ishoppers.tech/v1"
)

response = client.chat.completions.create(
    model="qwen-turbo",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)
Powered by DeepSeek Qwen More coming soon

Built for developers

A simple API gateway for modern AI models, with docs, pricing and account controls designed for developers shipping real products.

OpenAI Compatible

Switch your base_url and keep the SDK workflow you already know.

Multi-Provider

Access DeepSeek and Qwen from one endpoint, with more model choices planned.

Pay-as-you-go

Only pay for tokens used. New accounts start with $1 in free credit.

Developer Support

Clear setup guidance, support contact and transparent policies for teams evaluating the service.

Pay only for what you use

Transparent rates in USD per 1 million tokens. No monthly subscription required. See the full pricing notes for billing details.

Model Provider Input / 1M Output / 1M
deepseek-chatBest Value DeepSeek V3 $0.14 $0.28
deepseek-reasoner DeepSeek R1 $0.14 $0.28
qwen-turbo Qwen $0.21 $0.42
qwen-plus Qwen $0.55 $1.38
qwen-max Qwen $1.66 $6.64
qwen-max-latest Qwen $1.66 $6.64
qwen-max-longcontext Qwen $2.00 $8.00

Rates are shown in USD and billed by actual token consumption. View pricing details.

Up and running in minutes

1

Create an account

Sign up free and receive your starter credit.

2

Generate an API key

Open your dashboard and create a secure API key for your app.

3

Make your first call

Use the OpenAI SDK or a direct HTTP request to start building.

PythonOpenAI SDK
from openai import OpenAI

client = OpenAI(
    api_key="sk-your-api-key",
    base_url="https://api.ishoppers.tech/v1"
)

response = client.chat.completions.create(
    model="qwen-turbo",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
curlHTTP
curl https://api.ishoppers.tech/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-your-api-key" \
  -d '{"model":"qwen-turbo","messages":[{"role":"user","content":"Hello!"}]}'

Common questions

What is ShopAI?

ShopAI is an AI API gateway offering compatible access to supported model providers through one endpoint.

Is it compatible with the OpenAI SDK?

Yes. Set your API key and the ShopAI base URL, then call supported models using familiar SDK methods.

How do I begin?

Register for an account, create an API key in your dashboard, and follow the API docs.

How can I add credits?

Sign in to the dashboard and open Top Up. If your account needs help with billing, contact support.

Start building with ShopAI today

Get an OpenAI-compatible API key and connect to supported DeepSeek and Qwen models with simple usage-based pricing.

Get Started (Free) →