curl --request GET \
--url https://documents.absconsulting.com/v1/vector_stores \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"name": "<string>",
"created_at": 123,
"expires_at": 123,
"metadata": {}
}
],
"has_more": true,
"first_id": "<string>",
"last_id": "<string>"
}Returns a list of vector stores.
This endpoint has a rate limit of 120 requests per user per minute.
curl --request GET \
--url https://documents.absconsulting.com/v1/vector_stores \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"name": "<string>",
"created_at": 123,
"expires_at": 123,
"metadata": {}
}
],
"has_more": true,
"first_id": "<string>",
"last_id": "<string>"
}Bearer token for authentication
The ID of the last object returned in the previous page. Use this parameter to get the next page of results.
The ID of the first object returned in the previous page. Use this parameter to get the previous page of results.
A limit on the number of objects to be returned. Limit can range between 1 and 10,000, and the default is 10,000.
Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
Successful Response
The type of object.
The list of vector stores.
Show child attributes
Whether there are more vector stores to retrieve.
The ID of the first vector store in the list.
The ID of the last vector store in the list.
Was this page helpful?