ベクトルストア
GET
https://api.openai.com/v1/organization/usage/vector_stores
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/v1/organization/usage/vector_stores?start_time=1730419200&limit=1' \
--header 'Authorization: Bearer $OPENAI_ADMIN_KEY' \
--header 'Content-Type: application/json'
Response Response Example
{
"object": "string",
"data": [
{
"object": "string",
"start_time": 0,
"end_time": 0,
"results": [
{
"object": "string",
"usage_bytes": 0,
"project_id": null
}
]
}
],
"has_more": true,
"next_page": null
}
Request
Query Params
start_time
string
optional
Example:
1730419200
limit
string
optional
Example:
1
Header Params
Authorization
string
optional
Example:
Bearer $OPENAI_ADMIN_KEY
Content-Type
string
optional
Example:
application/json
Responses
Modified at 2025-01-09 09:03:45