Returns the rate limits per model for a project.
GET
/organization/projects/{project_id}/rate_limits https://api.openai.com/v1
Parameters
path Path Parameters
| Name | Type |
|---|---|
project_id
required
The ID of the project. | string |
query Query Parameters
| Name | Type |
|---|---|
limit A limit on the number of objects to be returned. The default is 100. | number |
after A cursor for use in pagination. | string |
before A cursor for use in pagination. | string |
Responses
200 application/json
Project rate limits listed successfully.
interface ProjectRateLimitListResponse {
object: "list";
data:ProjectRateLimit [];
first_id: string;
last_id: string;
has_more: boolean;
}
object: "list";
data:
first_id: string;
last_id: string;
has_more: boolean;
}