API Guide
Our API enables you to track and manage all your monitored workflows. You can:
- Get all active workflows with monitoring enabled
- Retrieve historical data changes across your workflows
Prerequisites
To get the most out of this guide, you’ll need to:
- Create a Kadoa account
- Get your API key
1. Get All Active Monitoring Workflows
Use the following endpoint to retrieve your workflows:
GET /v4/workflows
The response will include all workflows that are in your scope (user, team, organization).
To get all workflows that are active and have real-time monitoring enabled, you can use the following query parameter:
2. Get Historical Data Changes
The /changes
endpoint returns all historical data changes detected by your monitoring workflows. By default, it returns changes from all your active workflows.
You can filter changes by workflow and date range using the different query parameters. See full API reference.
Example with filters:
Differences Field Explanation
Each change includes a differences
array showing structured representations of what changed:
The differences
field provides an object-based diffing with the following structure:
type
: The type of change - can beadded
,removed
, orchanged
fields
: All fields of the object (even if unchanged)
Each field change includes:
key
: Field name that was changedvalue
: Current field valuepreviousValue
: Previous field value (only present forchanged
type)
Example
Let’s look at a simplified example with three fields: id
, name
, and status
.
Data before change:
Data after change:
The differences
field would show:
Note that item with id: "004"
remains unchanged, so it doesn’t appear in the differences array.