1. Register and sign in
- Open the console and create your account
- Confirm you can reach the overview page after login
- Check that trial credit is visible in the balance area

Quickstart
This page is written for developers validating the current rollout. It assumes you are using the OpenAI-compatible chat completions path and a console-issued API key.
curl https://api.anlinkai.com/api/v1/chat/completions \
-H "Authorization: Bearer ak_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-flash",
"messages": [
{"role": "system", "content": "You are a concise assistant."},
{"role": "user", "content": "Write a release note headline."}
]
}'Steps
Keep the first pass simple. Validate account access, key issuance, and a single successful request before you expand your traffic shape.
activeqwen-flashhttps://api.anlinkai.com/api/v1/chat/completionsAuthorization: Bearer ...Examples
These examples are written against the current MVP surface, not a future multi-endpoint release.
curl https://api.anlinkai.com/api/v1/chat/completions \
-H "Authorization: Bearer ak_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-flash",
"messages": [
{"role": "system", "content": "You are a concise assistant."},
{"role": "user", "content": "Write a release note headline."}
]
}'const response = await fetch("https://api.anlinkai.com/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer " + process.env.ANLINK_API_KEY,
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "qwen-flash",
messages: [
{ role: "system", content: "You are a concise assistant." },
{ role: "user", content: "Write a release note headline." }
]
})
});
const data = await response.json();
console.log(data);import os
import requests
resp = requests.post(
"https://api.anlinkai.com/api/v1/chat/completions",
headers={
"Authorization": f"Bearer {os.environ['ANLINK_API_KEY']}",
"Content-Type": "application/json",
},
json={
"model": "qwen-flash",
"messages": [
{"role": "system", "content": "You are a concise assistant."},
{"role": "user", "content": "Write a release note headline."},
],
},
timeout=60,
)
print(resp.status_code)
print(resp.json())Checklist
https://console.anlinkai.comhttps://api.anlinkai.com/api/v1POST /chat/completionshttps://www.anlinkai.com/faq