Skip to main content
GET
/
api
/
v1
/
embedding-models
Get Embedding Models List
curl --request GET \
  --url https://api.intelligence.io.solutions/api/v1/embedding-models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "model",
      "created": 123,
      "owned_by": "io-intelligence",
      "root": "<string>",
      "parent": "<string>",
      "max_model_len": 123,
      "permission": [
        {
          "id": "<string>",
          "object": "model_permission",
          "created": 123,
          "allow_create_engine": false,
          "allow_sampling": true,
          "allow_logprobs": true,
          "allow_search_indices": false,
          "allow_view": true,
          "allow_fine_tuning": false,
          "organization": "*",
          "group": "<string>",
          "is_blocking": false
        }
      ],
      "max_tokens": 123,
      "context_window": 123,
      "supports_images_input": true,
      "supports_prompt_cache": true,
      "input_token_price": 123,
      "output_token_price": 123,
      "cache_write_token_price": 123,
      "cache_read_token_price": 123,
      "precision": "<string>"
    }
  ]
}

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

token
string

JWT token

Authorization
string

io.net provided API Key

x-api-key
string

API key set by an SDK client

Response

Successful Response

object
string
default:list
data
ModelCard · object[]