Skip to main content
The Guardian Ops endpoints allow you to programmatically interact with your abuse management data. You can retrieve cases and their details, query events, look up customers, and trigger playbook automation — all through the API. These endpoints complement Guardian Ops and are useful for:
  • Building integrations with your internal systems
  • Reporting and analytics by pulling case and event data into your own dashboards

Available endpoints

Cases

List and retrieve cases, as well as trigger playbooks.

Events

Query individual events and their details.

Customers

Look up customer records.

Rep Share

Share reports with your customers.

Pagination

List endpoints return paginated results. The response includes a next_cursor field. Pass it as the cursor query parameter in subsequent requests to retrieve the next page. When next_cursor is null, you have reached the end of the results.
# First page
curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://api.abusix.com/beta/guardian-ops/cases?limit=50"

# Next page
curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://api.abusix.com/beta/guardian-ops/cases?limit=50&cursor=CURSOR_VALUE"