REST API Reference
{ "index_name": "my_index", "index_key": "64_character_hex_string_representing_32_bytes" }
Show parameters
index_config
{ "index_name": "my_index", "index_type": "ivfflat", "is_trained": true, "index_config": { "type": "ivfflat", "dimension": 384, "n_lists": 1024, "metric": "euclidean" } }
Show response fields
# Retrieve index config config=$(curl -s -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" }' | jq '.index_config') echo "Index configuration: $config"
Was this page helpful?