Quick Start
7/28/26Less than 1 minute
Quick Start — QuickAPI_快快API网络商店
This guide will help you integrate QuickAPI in 5 minutes.
1. Register an Account
Visit QuickAPI to register an account.
2. Get API Key
After login, go to the API Keys page in the console to create your API Key.
⚠️ Security Tip
Keep your API Key safe and never share it with others. If you suspect a leak, regenerate it immediately.
3. Make Your First Request
Using curl
curl https://api.quickapi.store/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{"role": "user", "content": "Hello, introduce yourself"}
]
}'Using Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://api.quickapi.store/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{"role": "user", "content": "Hello, introduce yourself"}
]
)
print(response.choices[0].message.content)Using Node.js
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.quickapi.store/v1',
apiKey: 'YOUR_API_KEY'
});
const response = await client.chat.completions.create({
model: 'gpt-4o-mini',
messages: [
{ role: 'user', content: 'Hello, introduce yourself' }
]
});
console.log(response.choices[0].message.content);4. Choose Access Point
Select the optimal access point based on your network environment:
| Access Method | URL | Description |
|---|---|---|
| Beijing Tencent Cloud → Alibaba Cloud ESA | https://api-bj.quickapi.store | Recommended for North China |
| Direct to Alibaba Cloud ESA | https://api.quickapi.store | Default recommended |
| Hong Kong Cloudflare Tunnel | https://quickapi.lz-0315.com | Recommended for overseas |
| IX Direct Link | api-bj.lz-0315.com | Recommended for Equivalent to direct connection to Beijing Tencent Cloud (via IX backbone) |
Just replace the base_url with the corresponding address.
Next Steps
- Read Authentication for more API Key usage
- Read API Reference for complete API documentation
- Read Models for available AI models

