Skip to content

API Quick Start Guide

Account Registration

  • 💰 Minimum recharge amount: $1
  • 🔗 Registration link: Sign up

Configuration Steps

1. Get API Key

  1. Log in to the dashboard
  2. Go to the "API Keys" page
  3. Click "Add Token" to obtain your API Key

2. API Configuration

BASE_URL options

https://dev-api.ai-study.icu
https://dev-api.ai-study.icu/v1
https://dev-api.ai-study.icu/v1/chat/completions

Note: Different clients may require different BASE_URL values. Try the addresses above in order.

3. Model Selection

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

Testing

You can verify your configuration as follows:

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

Configuration Example

json
{
  "base_url": "https://dev-api.ai-study.icu",
  "api_key": "your_token_here",
  "model": "selected_model_name"
}

Tip: Test on the chat page first to confirm your setup, then integrate into your application.