列出組織速率限制
GET/v1/organizations/rate_limits
列出您組織的 Messages API 速率限制。
每個項目對應一個速率限制群組(模型系列,或 API 介面類別,例如 Files API 或 Message Batches),並包含適用於該群組的一組限制器值。
省略 limit 時,所有符合的項目會在單一頁面中傳回;當 limit 截斷結果時,請依循 next_page 擷取其餘項目。
Query parameters
Returns
列出組織速率限制
cURL
curl https://api.anthropic.com/v1/organizations/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "Authorization: Bearer $ANTHROPIC_AUTH_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"
}