列出组织速率限制
GET/v1/organizations/rate_limits
列出您组织的 Messages API 速率限制。
每个条目对应一个速率限制组(模型系列,或 API 接口类别,例如 Files API 或 Message Batches),并包含适用于该组的一组限制器值。
省略 limit 时,所有匹配的条目将在单个页面中返回;当 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"
}