List process rules
curl --request GET \
--url https://api.seynlabs.com/v1/rules \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"processId": "<string>",
"appliesAtStep": "<string>",
"confidence": 0.5,
"frequency": 0.5,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"requestId": "<string>",
"pagination": {
"total": 1,
"limit": 1,
"offset": 1
}
}
}Rules
List process rules
Paginated list of process rules in your organization.
GET
/
v1
/
rules
List process rules
curl --request GET \
--url https://api.seynlabs.com/v1/rules \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"processId": "<string>",
"appliesAtStep": "<string>",
"confidence": 0.5,
"frequency": 0.5,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"requestId": "<string>",
"pagination": {
"total": 1,
"limit": 1,
"offset": 1
}
}
}Returns rule summaries across the organization. Filter by
reviewStatus (production integrations usually want confirmed), by libraryId, or by a case-insensitive search against the rule description.
For the structured condition and evidence, fetch a single rule with Get a process rule.Authorizations
Bearer token from app.seynlabs.com → Settings → API Keys.
Send as Authorization: Bearer sk_live_....
Query Parameters
Filter by human-review status. See Review Status.
Available options:
inferred, confirmed, rejected, modified Limit results to rules belonging to a specific knowledge library.
Substring match against rule description (case-insensitive).
Required range:
1 <= x <= 100Required range:
x >= 0⌘I