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

  1. Log in to the dashboard.
  2. Go to the "Tokens" page.
  3. Click "Add Token" to get your API key.

2. Configure the Interface

BASE_URL (optional address):

  • https://api.oblion.io
  • https://api.oblion.io/v1
  • https://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:

  1. Run an online test on the chat page.
  2. 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.