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
}
}Retrieves a list of available models for the Chat Completions API.
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
}
}The access token received from the authorization server in the OAuth 2.0 flow.
Identifier of guest user
x >= 11 <= x <= 100Successful Response
List of available models
Show child attributes
Unique model identifier
Model name
Current model status
active, inactive Daily chat quota for tier 1 users
Daily API completions quota for tier 1 users
Daily embeddings quota for tier 1 users
Daily audio transcriptions quota for tier 1 users (in seconds)
Daily audio speech generation quota for tier 1 users (in characters)
Model metadata including some optional fields
Show child attributes
URL to the model's display image
List of tags describing model features and status
"New"
Model version identifier
Organization that developed the model
Short description of the model
Flag to enable Open AI chat completions API for the model
true
Flag to enable Open AI embeddings API for the model
true
Enable speech-to-text (transcription) API for this model
true
Enable text-to-speech (generation) API for this model
true
Flag to enable chat UI for the model
true
Trendiness score of the model, higher score means more popular. Range: 0-10.
0 <= x <= 10Model license metadata
Tool calling support quirks for the model
Maximum tokens per request
Model's context window size, in tokens
Image input capability
Caching support flag
Cost per input token (USD per million tokens)
Cost per output token (USD per million tokens)
Cost for cache creation tokens (USD per million tokens)
Cost for cache read tokens (USD per million tokens)
Quantization precision (e.g., 'fp8', 'int4', 'fp16', 'fp32')
Model creation timestamp
Last update timestamp
Model description
Was this page helpful?