To see which existing encrypted indexes are available to your CyborgDB client, you can use list_indexes:
from cyborgdb import Client

# Create a client
client = Client('http://localhost:8000', 'your-api-key')

# List all available indexes
indexes = client.list_indexes()

print(indexes)
# Example output:
# ["index_one", "index_two", "index_three"]
This returns an array of index names that are available to your API key.

API Reference

For more information on listing encrypted indexes, refer to the API reference: