Request Body
Copy
Ask AI
{
"index_name": "my_index",
"index_key": "64_character_hex_string_representing_32_bytes"
}
Show parameters
Show parameters
Response
Copy
Ask AI
{
"index_name": "my_index",
"index_key": "64_character_hex_string_representing_32_bytes",
"index_config": {
"type": "ivfflat",
"dimension": 384,
"n_lists": 1024,
"metric": "euclidean"
},
"status": "ready",
"vector_count": 10000,
"created_at": "2023-10-01T12:00:00Z"
}
Show response fields
Show response fields
Name of the index
Encryption key used for the index
Configuration details of the index, including:
type
: Index type (e.g., ivfflat)dimension
: Embedding dimensionn_lists
: Number of inverted listsmetric
: Distance metric used
Current status of the index (e.g., ready, training)
Total number of vectors indexed
Timestamp when the index was created
Example Usage
Copy
Ask AI
curl -X POST "http://localhost:8000/v1/indexes/describe" \
-H "X-API-Key: cyborg_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"index_name": "my_index",
"index_key": "your_64_character_hex_key_here"
}'