v5
latestOpenAPI 3.1.02026-08-04166362486.5 KB[DEPRECATED] List vector stores
DEPRECATED: Use GET /stores instead
Query parameters
Maximum number of items to return per page (1-100)
Maximum number of items to return per page (1-100)
Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
Whether to include total count in response (expensive operation)
Whether to include total count in response (expensive operation)
Search query for fuzzy matching over name and description fields
Search query for fuzzy matching over name and description fields
Response
The list of vector stores
Example response
{
"pagination": {
"has_more": true,
"first_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==",
"last_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMFQyMzo1OTo1OS4wMDBaIiwiaWQiOiJ4eXo3ODkifQ==",
"total": 42
},
"data": [
{
"id": "1b8b486e-16d0-400b-8868-04cd75217a7e",
"name": "customer-support-kb",
"description": "Contains customer support articles and FAQs",
"metadata": {
"category": "support",
"language": "en"
},
"file_counts": {
"pending": 5,
"in_progress": 5,
"cancelled": 2,
"completed": 42,
"failed": 1,
"total": 50
},
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z",
"usage_bytes": 1024000,
"expires_at": "2024-01-01T00:00:00Z"
}
]
}