Quick Start
Start With These 5 Steps
- Register an account.
- Go to
Walletin your personal center and recharge. - Go to
Token Managementin the console and create a token. - Select a group when creating the token.
- Copy the
Base URLand token, then start calling the API.
Base URL
https://logox.topAfter changing the Base URL, the request format is the same as the corresponding provider's official API.
Recharge
The recharge entry is in Wallet under the personal center.
After your accumulated recharge reaches a certain amount, the account will be upgraded to VIP with the corresponding recharge rewards.
Token Entry
Token management is in Token Management in the console.
You need to select a group when creating a token. The group determines which models the token can call.
Group Selection
Official channel APIs are suitable for automated code calls, programmable tasks, large cached inputs, fixed workflows, large-context repository analysis, and workloads that frequently hit input cache.
Relay API channels vary by source. Different channels have different prices and stability levels, so they are better for flexible selection by budget and scenario.
Check Available Models
Always use the actual model list returned for the token under its current group:
curl https://logox.top/v1/models \
-H "Authorization: Bearer sk-logox-your-key"First Request
curl https://logox.top/v1/chat/completions \
-H "Authorization: Bearer sk-logox-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{ "role": "user", "content": "Hello" }
]
}'