Returns a diff between two workflow runs highlighting status changes, duration differences, and steps present in only one run.
curl --request GET \
--url https://api.strait.dev/v1/workflow-runs/{workflowRunID}/compare/{otherRunID} \
--header 'Authorization: Bearer <token>'{
"run_a": "<string>",
"run_b": "<string>",
"step_diffs": [
{
"duration_ms_a": 123,
"duration_ms_b": 123,
"step_ref": "<string>",
"only_in_a": true,
"only_in_b": true,
"status_diff": {
"a": "<string>",
"b": "<string>"
}
}
],
"$schema": "<string>",
"status_diff": {
"a": "<string>",
"b": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.strait.dev/llms.txt
Use this file to discover all available pages before exploring further.
API key passed as Bearer token
curl --request GET \
--url https://api.strait.dev/v1/workflow-runs/{workflowRunID}/compare/{otherRunID} \
--header 'Authorization: Bearer <token>'{
"run_a": "<string>",
"run_b": "<string>",
"step_diffs": [
{
"duration_ms_a": 123,
"duration_ms_b": 123,
"step_ref": "<string>",
"only_in_a": true,
"only_in_b": true,
"status_diff": {
"a": "<string>",
"b": "<string>"
}
}
],
"$schema": "<string>",
"status_diff": {
"a": "<string>",
"b": "<string>"
}
}