Lojas de vetores
GET
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/?start_time&limit' \
--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
limit
string
optional
Header Params
Authorization
string
optional
Example:
Bearer $OPENAI_ADMIN_KEY
Content-Type
string
optional
Example:
application/json
Responses
Modified at 2025-01-26 06:46:25