provider Usage GET /organization/usage/code_interpreter_sessions
@utdk/openai /organization/usage/code_interpreter_sessions
Get code interpreter sessions usage details for the organization.
start_time query required
Start time (Unix seconds) of the query time range, inclusive.
integer
end_time query
End time (Unix seconds) of the query time range, exclusive.
integer
bucket_width query
Width of each time bucket in response. Currently `1m`, `1h` and `1d` are supported, default to `1d`.
enum: 1m, 1h, 1d
project_ids query
Return only usage for these projects.
array
group_by query
Group the usage data by the specified fields. Support fields include `project_id`.
array
limit query
Specifies the number of buckets to return. - `bucket_width=1d`: default: 7, max: 31 - `bucket_width=1h`: default: 24, max: 168 - `bucket_width=1m`: default: 60, max: 1440
integer
page query
A cursor for use in pagination. Corresponding to the `next_page` field from the previous response.
string

Try it

Authentication
Configure credentials for OpenAI API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

usageCodeInterpreterSessions
GET/organization/usage/code_interpreter_sessions

required

Start time (Unix seconds) of the query time range, inclusive.

End time (Unix seconds) of the query time range, exclusive.

Width of each time bucket in response. Currently `1m`, `1h` and `1d` are supported, default to `1d`.

Return only usage for these projects.

Group the usage data by the specified fields. Support fields include `project_id`.

Specifies the number of buckets to return. - `bucket_width=1d`: default: 7, max: 31 - `bucket_width=1h`: default: 24, max: 168 - `bucket_width=1m`: default: 60, max: 1440

A cursor for use in pagination. Corresponding to the `next_page` field from the previous response.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import openai from '@utdk/openai';

await openai.usageCodeInterpreterSessions({
  "bucket_width": "1d"
})