Skip to main content
GET
/
v1
/
rulesets
List catalog rulesets, paginated
curl --request GET \
  --url https://api.example.com/v1/rulesets \
  --header 'Authorization: Bearer <token>'
{
  "status": 123,
  "title": "<string>",
  "type": "<string>",
  "detail": "<string>",
  "instance": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:25
Required range: 1 <= x <= 200
tag
string[] | null

Filter by tag(s). Repeat to require multiple tags (AND). Use tag=preset to list official curated presets.

include_hidden
boolean
default:false

Admin-only. When true, includes rulesets with visibility=hidden in the result. Callers without the admin role receive 403 if they pass true.

Response

Successful Response