Vector stores
GET
https://api.openai.com/v1/organization/usage/vector_storesGet vector stores usage details for the organization.
Request
Query Params
start_time
string
required
Example:
1730419200
limit
string
required
Example:
1
Header Params
Authorization
string
required
Example:
Bearer $OPENAI_ADMIN_KEY
Content-Type
string
required
Example:
application/json
Body Params text/plain
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object
string
required
data
array [object {4}]
required
object
string
optional
start_time
integer
optional
end_time
integer
optional
results
array [object {3}]
optional
has_more
boolean
required
next_page
null
required
Example
{
"object": "page",
"data": [
{
"object": "bucket",
"start_time": 1730419200,
"end_time": 1730505600,
"results": [
{
"object": "organization.usage.vector_stores.result",
"usage_bytes": 1024,
"project_id": null
}
]
}
],
"has_more": false,
"next_page": null
}
Last modified: 2 months ago