Skip to main content
GET
/
api
/
v1
/
models
Get Models List
curl --request GET \
  --url https://api.intelligence.io.solutions/api/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "status": "active",
      "chat_daily_quota_tier_1": 123,
      "api_completions_daily_quota_tier_1": 123,
      "embeddings_daily_quota_tier_1": 123,
      "audio_transcriptions_daily_quota_tier_1": 123,
      "audio_speech_daily_quota_tier_1": 123,
      "metadata": {
        "image_url": "<string>",
        "tags": "New",
        "version": "<string>",
        "developer": "<string>",
        "short_description": "<string>",
        "enable_api_chat_completions": true,
        "enable_api_embeddings": true,
        "enable_audio_stt": true,
        "enable_audio_tts": true,
        "enable_chat_ui": true,
        "trendiness": 0,
        "license": "<unknown>",
        "tool_support": "no",
        "max_tokens": 123,
        "context_window": 123,
        "supports_images_input": false,
        "supports_prompt_cache": false,
        "input_token_price": "<string>",
        "output_token_price": "<string>",
        "cache_write_token_price": "<string>",
        "cache_read_token_price": "<string>",
        "precision": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "page_size": 123,
    "total_pages": 123,
    "has_next": true,
    "has_previous": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://io.net/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

X-Guest-Session-ID
string | null

Identifier of guest user

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:50
Required range: 1 <= x <= 100
q
string | null

Response

Successful Response

data
ModelData · object[]
required

List of available models

pagination
PaginationResponse · object
required

Pagination information