GuideConsole Guide

API Quick Start Guide

AnyRouter API quick start: register, create an API key, set the BASE_URL, pick a model and verify your setup — start calling major AI models from just $1.

Account Registration

  • 💰 Minimum top-up amount: $1
  • 🔗 Registration link: Sign up here

Setup Steps

1. Get an API Key

  1. Log in to the console
  2. Open the "API Keys" page
  3. Click "Add API Key" to get your API key

2. Endpoint Configuration

Available BASE_URL options

https://anyrouter.win
https://anyrouter.win/v1
https://anyrouter.win/v1/chat/completions

Note: Different clients may require different BASE_URLs — try the addresses above in order

3. Model Selection

  • Model names are listed in the first column of the "Supported Models" list on the home page

Testing and Verification

You can verify your configuration in the following ways:

  1. Run an online test on the chat page
  2. Test the endpoint with an API tool (such as Postman)

Sample Configuration

{
  "base_url": "https://anyrouter.win",
  "api_key": "your_token_here",
  "model": "selected_model_name"
}

Tip: Test on the chat page first; once the configuration is confirmed to work, proceed to development integration

On this page