조직 속도 제한 목록 조회
GET/v1/organizations/rate_limits
조직의 Messages API 속도 제한(rate limit)을 나열합니다.
각 항목은 하나의 속도 제한 그룹(모델 패밀리 또는 Files API나 Message Batches 같은 API 표면 카테고리)에 해당하며, 해당 그룹에 적용되는 제한 값 집합을 포함합니다.
limit을 생략하면 일치하는 모든 항목이 단일 페이지로 반환됩니다. limit으로 인해 결과가 잘린 경우, next_page를 따라 나머지 항목을 가져오세요.
Parameters
Returns
조직 속도 제한 목록 조회
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'my-anthropic-api-key');
$page = $client->beta->organization->rateLimits->list(
groupType: 'batch', limit: 1, model: 'model', page: 'page'
);
var_dump($page);Response 200
{
"data": [
{
"id": "id",
"group_type": "batch",
"limits": [
{
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "rate_limit"
}
],
"next_page": "next_page"
}Returns Examples
Response 200
{
"data": [
{
"id": "id",
"group_type": "batch",
"limits": [
{
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "rate_limit"
}
],
"next_page": "next_page"
}