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>",
      "description": "<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": {
        "context_length": 8192,
        "developer": "Meta AI",
        "image_url": "https://example.com/gpt4.jpg",
        "short_description": "The latest and greatest AI model",
        "tags": [
          "New",
          "Premium",
          "Uncensored"
        ],
        "trendiness": 9,
        "version": "1.0"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "page_size": 123,
    "total_pages": 123,
    "has_next": true,
    "has_previous": true
  }
}

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
object
required

Pagination information