Images
$ openai admin:organization:usage images
GET/organization/usage/images
Get images usage details for the organization.
Parameters
--bucket-width: optional "1m" or "1h" or "1d"
Width of each time bucket in response. Currently 1m, 1h and 1d are supported, default to 1d.
--group-by: optional array of "project_id" or "user_id" or "api_key_id" or 3 more
Group the usage data by the specified fields. Support fields include project_id, user_id, api_key_id, model, size, source or any combination of them.
--limit: optional number
Specifies the number of buckets to return.
bucket_width=1d: default: 7, max: 31bucket_width=1h: default: 24, max: 168bucket_width=1m: default: 60, max: 1440
--page: optional string
A cursor for use in pagination. Corresponding to the next_page field from the previous response.
--size: optional array of "256x256" or "512x512" or "1024x1024" or 2 more
Return only usages for these image sizes. Possible values are 256x256, 512x512, 1024x1024, 1792x1792, 1024x1792 or any combination of them.
Images
openai admin:organization:usage images \
--admin-api-key 'My Admin API Key' \
--start-time 0{
"object": "page",
"data": [
{
"object": "bucket",
"start_time": 1730419200,
"end_time": 1730505600,
"results": [
{
"object": "organization.usage.images.result",
"images": 2,
"num_model_requests": 2,
"size": null,
"source": null,
"project_id": null,
"user_id": null,
"api_key_id": null,
"model": null
}
]
}
],
"has_more": false,
"next_page": null
}
Returns Examples
{
"object": "page",
"data": [
{
"object": "bucket",
"start_time": 1730419200,
"end_time": 1730505600,
"results": [
{
"object": "organization.usage.images.result",
"images": 2,
"num_model_requests": 2,
"size": null,
"source": null,
"project_id": null,
"user_id": null,
"api_key_id": null,
"model": null
}
]
}
],
"has_more": false,
"next_page": null
}