Developers
Documentation
A technical guide to integrating leading AI models through Oblion's unified API.
On this page
API Configuration
Configuration Steps
1. Get a Token
- Log in to the dashboard.
- Go to the "Tokens" page.
- Click "Add Token" to get your API key.
2. Configure the Interface
BASE_URL (optional address):
https://api.oblion.iohttps://api.oblion.io/v1https://api.oblion.io/v1/chat/completions
Note: Different clients may require a different
BASE_URL. We recommend trying the addresses above one at a time.
3. Model Selection
Model names are listed in the first column of the "Supported Models" table on the dashboard home page.
Testing and Verification
You can verify your configuration in the following ways:
- Run an online test on the chat page.
- Use an API tool (such as Postman) to test the API directly.
Example Configuration
{
"base_url": "https://api.oblion.io",
"api_key": "your_token_here",
"model": "selected_model_name"
}
Note: We recommend testing on the chat page first to confirm your configuration is correct before continuing with development and integration.