v1

latestOpenAPI 3.0.0Proprietary2026-07-244990150.4 KB
Blocklists

List Blocklists

List all blocklists for a workspace. Results are paginated via limit and offset query parameters.

get/v3/workspaces/{workspace_id}/blocklists

Path parameters

workspace_idstring uuid required

Workspace UUID.

Query parameters

limitinteger

Maximum number of blocklists to return (1-100).

offsetinteger

Number of blocklists to skip for pagination.

Response

OK - blocklists returned.

totalinteger

Total number of blocklists in the workspace.

limitinteger

Page size used for the request.

offsetinteger

Offset used for the request.

Example response

{
  "blocklists": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "workspace_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
      "query": "classification:malicious last_seen:1d",
      "name": "Malicious scanners",
      "ip_limit": 1000,
      "enabled": true,
      "last_ip_count": 427
    }
  ],
  "total": 3,
  "limit": 10
}