curl --request GET \
--url https://documents.absconsulting.com/v1/vector_stores/{vector_store_id}/files \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"vector_store_id": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"vector_store_id": "<string>",
"created_at": 123,
"status": "<string>",
"last_error": "<string>",
"metadata": {}
}
],
"first_id": "<string>",
"last_id": "<string>",
"has_more": false
}Returns a list of vector store files.
This endpoint has a rate limit of 120 requests per user per minute.
curl --request GET \
--url https://documents.absconsulting.com/v1/vector_stores/{vector_store_id}/files \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"vector_store_id": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"vector_store_id": "<string>",
"created_at": 123,
"status": "<string>",
"last_error": "<string>",
"metadata": {}
}
],
"first_id": "<string>",
"last_id": "<string>",
"has_more": false
}Bearer token for authentication
The ID of the vector store.
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 ID of the vector store to list the files from.
The list of vector store files.
Show child attributes
The ID of the first vector store file in the list.
The ID of the last vector store file in the list.
Whether there are more vector store files to retrieve.
Was this page helpful?