List Indexes
GET/api/v1/developer/list-indexes
Retrieve a list of all indexed services (SDKs, CLIs, APIs) available for context retrieval. Use the returned index_id
to query specific services with the get-context endpoint.
Request
Headers
Example Request
Response
Success Response (200)
Indicates if the request was successful
Error message if the request failed, null otherwise
Contains the response data
Service Types
The indexed services are categorized into the following types:SDK
SDK
Software Development Kit documentation and examples. Includes libraries like:
- Python packages (requests, pandas, etc.)
- JavaScript/TypeScript libraries
- Language-specific SDKs
CLI
CLI
Command-line interface tools and their documentation. Examples:
- AWS CLI
- Docker CLI
- Git commands
API
API
REST APIs, GraphQL APIs, and other web service documentation:
- API endpoints and methods
- Request/response examples
- Authentication patterns
Unknown
Unknown
Services that don’t fit into the above categories or are newly indexed
Error Responses
401 - Missing API key
401 - Missing API key
401 - Invalid API key
401 - Invalid API key
404 - User account missing
404 - User account missing
404 - No API key found
404 - No API key found
Best Practices
Cache the Results: The list of available indexes doesn’t change frequently. Cache the response to minimize API calls and improve performance.
Use index_id for Queries: When calling the get-context endpoint, use the
index_id
field returned from this endpoint.