Setup tutorial

Connect your API key in three steps

This page keeps the URLs you need for client setup and account management in one place. Start with the recommended Base URL, then switch only when your client requires a full endpoint or Messages-compatible route.

Follow this order for your first connection

Choose a model and pricing first, get a key, copy the matching URL, then configure one client and send a small test request.

  1. 01Choose a model and check pricing

    Confirm the model name, context, vision support, and multiplier before you configure a client.

  2. 02Prepare your API key

    New user: purchase an API key first

  3. 03Copy the correct URL

    Use this for most OpenAI-compatible clients

  4. 04Fill in the client configuration

    A successful response confirms the Base URL, key, model route, and network path together.

01

Prepare your API key

Use the key delivered after purchase, or an existing key that still has quota. Keep it in a server-side environment variable.

  • New user: purchase an API key first
  • Existing user: top up the same key
  • After setup: verify quota and request logs
02

Copy the correct URL

Most OpenAI-compatible clients need the Base URL ending in /v1. Use a full endpoint only when the client explicitly asks for one.

Recommended Base URLUse this for most OpenAI-compatible clients
https://new.weeanno.shop/v1
Fallback Base URLUse when the client appends /v1 itself
https://new.weeanno.shop
Chat Completions endpointFull URL for Chat Completions-compatible requests
https://new.weeanno.shop/v1/chat/completions
Responses endpointFull URL for Responses-compatible requests
https://new.weeanno.shop/v1/responses
Messages endpointFull URL for Messages-compatible clients
https://new.weeanno.shop/v1/messages
03

Fill in the client configuration

Enter the Base URL and your API key in the matching fields. The examples below contain placeholders only.

OpenAI-compatible client

config
base_url = "https://new.weeanno.shop/v1"
api_key = "sk-your-api-key"

Claude Code · Messages-compatible

config
export ANTHROPIC_BASE_URL="https://new.weeanno.shop"
export ANTHROPIC_AUTH_TOKEN="sk-your-api-key"
export ANTHROPIC_MODEL="claude-sonnet-4-6"

Test with cURL

A successful response confirms the Base URL, key, model route, and network path together.

bash
curl https://new.weeanno.shop/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-your-api-key" \
  -d '{
    "model": "claude-sonnet-4-6",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Never paste a real API key into screenshots, chat messages, browser-side code, or a public repository.

Choose the setup by tool

Match the protocol your app expects. OpenAI-compatible tools use the /v1 Base URL; Claude Code uses the Messages-compatible gateway URL.

Cherry Studio · Chatbox · WorkBuddy

OpenAI-compatible client

Fill this Base URL

https://new.weeanno.shop/v1
Open setup guide

Codex CLI · Cursor · VS Code · Trae · OpenCode

OpenAI-compatible client

Fill this Base URL

https://new.weeanno.shop/v1
Open setup guide

Claude Code

Claude Code · Messages-compatible

Fill this Base URL

https://new.weeanno.shop
Open setup guide

OpenClaw · Hermes · Dify · n8n · LangChain · OpenWebUI

OpenAI-compatible client

Fill this Base URL

https://new.weeanno.shop/v1
Open setup guide

Common error quick check

Start with the HTTP status before changing models or keys.

401 / 403
OpenAI-compatible clients use Authorization: Bearer <key>. Claude Code uses ANTHROPIC_AUTH_TOKEN.
404
Check whether the client needs a Base URL or full endpoint, and verify the model name.
429
Reduce concurrency, shorten context, and check the remaining Token quota.
TIMEOUT
Send a small test request, then check the network path and retry with backoff.

Before contacting WEE ANNO support

Provide enough context to reproduce the failure without exposing your full API key.

  • Tool and version
  • Model name and Base URL (mask the API key)
  • HTTP status, error text, and request ID
  • Approximate time and timezone
Contact WEE ANNO support

Customer portal URLs

Purchase, top-up, order status, quota, and the full developer reference are all available from these public URLs.

Website entranceWEE ANNO homepage and navigation
https://weeanno.shop/
PurchaseBuy and receive a new API key
https://weeanno.shop/buy
Top-upAdd quota to an existing API key
https://weeanno.shop/topup
Order queryCheck payment and crediting status
https://weeanno.shop/topup/query
Token quota queryCheck remaining quota and request logs
https://weeanno.shop/quota
Developer docsSDK examples, streaming, errors, and limits
https://weeanno.shop/docs