curl --location --request GET 'https://api.openai.com/v1/organization/projects/proj_abc/rate_limits?after=rl_xxx&limit=20' \
--header 'Authorization: Bearer $OPENAI_ADMIN_KEY' \
--header 'Content-Type: application/json'
{
"object": "string",
"data": [
{
"object": "string",
"id": "string",
"model": "string",
"max_requests_per_1_minute": 0,
"max_tokens_per_1_minute": 0,
"max_images_per_1_minute": 0
}
],
"first_id": "string",
"last_id": "string",
"has_more": true
}