워크스페이스 속도 제한 목록 조회
GET/v1/organizations/workspaces/{workspace_id}/rate_limits
워크스페이스에 구성된 속도 제한 재정의 목록을 조회합니다.
워크스페이스 수준 재정의가 있는 그룹 및 리미터 유형만 반환합니다.
재정의가 없는 그룹은 조직 제한을 상속하며 나열되지 않습니다. 이를 보려면
GET /v1/organizations/rate_limits를 사용하세요.
limit이 생략되면 일치하는 모든 항목이 단일 페이지로 반환되고,
limit으로 결과가 잘리면 next_page를 따라 나머지 항목을
가져오세요.
Path parameters
Query parameters
Returns
워크스페이스 속도 제한 목록 조회
curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"Response 200
{
"data": [
{
"group_type": "batch",
"limits": [
{
"org_limit": 0,
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"rate_limit_id": "rate_limit_id",
"type": "workspace_rate_limit",
"workspace_id": "workspace_id"
}
],
"next_page": "next_page"
}Returns Examples
Response 200
{
"data": [
{
"group_type": "batch",
"limits": [
{
"org_limit": 0,
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"rate_limit_id": "rate_limit_id",
"type": "workspace_rate_limit",
"workspace_id": "workspace_id"
}
],
"next_page": "next_page"
}