Skip to content

Quick Start

Start With These 5 Steps

  1. Register an account.
  2. Go to Wallet in your personal center and recharge.
  3. Go to Token Management in the console and create a token.
  4. Select a group when creating the token.
  5. Copy the Base URL and token, then start calling the API.

Base URL

text
https://logox.top

After 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:

bash
curl https://logox.top/v1/models \
  -H "Authorization: Bearer sk-logox-your-key"

First Request

bash
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" }
    ]
  }'

Support QQ: 6669955