{
"index_name": "my_index",
"index_key": "64_character_hex_string_representing_32_bytes"
}
Show parameters
{
"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
type
: Index type (e.g., ivfflat)dimension
: Embedding dimensionn_lists
: Number of inverted listsmetric
: Distance metric usedcurl -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"
}'
Was this page helpful?