組織のレート制限の一覧を取得
GET/v1/organizations/rate_limits
組織のMessages APIのレート制限の一覧を取得します。
各エントリは1つのレート制限グループ(モデルファミリー、またはFiles APIやMessage BatchesなどのAPIサーフェスカテゴリ)に対応し、それに適用されるリミッター値のセットを含みます。
Query parameters
Returns
組織のレート制限の一覧を取得
cURL
curl https://api.anthropic.com/v1/organizations/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"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"
}