API Quick Start Guide
Account Registration
- 💰 Minimum recharge amount: $1
- 🔗 Registration link: Sign up
Configuration Steps
1. Get API Key
- Log in to the dashboard
- Go to the "API Keys" page
- 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/completionsNote: 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:
- Run an online test on the chat page
- 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.