組織のレート制限の一覧を取得
GET/v1/organizations/rate_limits
組織の Messages API のレート制限(rate limit)を一覧表示します。
各エントリは 1 つのレート制限グループ(モデルファミリー、または Files API や Message Batches などの API サーフェスカテゴリのいずれか)に対応し、それに適用されるリミッター値のセットを含みます。
limit を省略すると、一致するすべてのエントリが 1 ページで返されます。limit によって結果が切り詰められた場合は、next_page をたどって残りのエントリを取得してください。
Query parameters
Returns
組織のレート制限の一覧を取得
curl https://api.anthropic.com/v1/organizations/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"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"
}