Claude Platform Docs

列出工作区速率限制

$client->beta->organization->workspaces->rateLimits->list(string workspaceID, ?GroupType groupType, ?int limit, ?string page): PageCursor<BetaWorkspaceRateLimit>
GET/v1/organizations/workspaces/{workspace_id}/rate_limits

列出为工作区配置的速率限制覆盖。

仅返回具有工作区级覆盖的组和限制器类型。没有覆盖的组继承组织限制,不会列出;请使用 GET /v1/organizations/rate_limits 查看这些限制。

省略 limit 时,所有匹配的条目会在单个页面中返回;当 limit 截断结果时,请跟随 next_page 获取剩余条目。

Parameters
workspaceID: string

The ID of the workspace.

groupType?:optional GroupType

Filter by group type.

limit?:optional int

Maximum number of items to return per page. Ranges from 1 to 1000.

When omitted, every remaining entry is returned in a single page and next_page is null.

page?:optional string

Opaque cursor from a previous response's next_page.

Returns
class BetaWorkspaceRateLimit { $type = 'workspace_rate_limit'; $groupType; $limits; /* 3 more */ }
"workspace_rate_limit" type

Object type. Always workspace_rate_limit for workspace rate-limit entries.

GroupType groupType

The kind of rate-limit group this entry represents. model_group entries apply to a family of models (listed in models); other values apply to an API-surface category and have models set to null.

The limiter values overridden for this group in this workspace. Limiter types without a workspace override are omitted and inherit the organization value.

?list<string> models

Model names this entry's limits apply to, including aliases. null when group_type is not "model_group".

string rateLimitID

The id of the RateLimit group this override applies to.

string workspaceID

ID of the Workspace this override applies to.

列出工作区速率限制
<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'my-anthropic-api-key');

$page = $client->beta->organization->workspaces->rateLimits->list(
  'workspace_id', groupType: 'batch', limit: 1, page: 'page'
);

var_dump($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"
}