curl --location --request GET 'https://api.openai.com/v1/organization/costs?start_time=1730419200&limit=1' \
--header 'Authorization: Bearer $OPENAI_ADMIN_KEY' \
--header 'Content-Type: application/json'
{
"object": "string",
"data": [
{
"object": "string",
"start_time": 0,
"end_time": 0,
"results": [
{
"object": "string",
"amount": {
"value": 0,
"currency": "string"
},
"line_item": null,
"project_id": null
}
]
}
],
"has_more": true,
"next_page": null
}