Triage a CI/CD failure log

Parse a CI, build, compiler, dependency, container, lint, or test log into a secret-redacted failure type, primary error, useful trace, fix category, and confidence score. Use it to analyze build logs and identify the first actionable root-cause signal.

$0.002 USDC   POST /v1/triage

developer-tools · ci-cd · logs

Use it for

Example input

{
  "log": "FAILED tests/test_math.py::test_total - AssertionError: assert 1 == 2",
  "step_name": "pytest"
}

Example output

{
  "failure_type": "pytest",
  "error_message": "AssertionError: assert 1 == 2",
  "stack_trace": [
    "tests/test_math.py:8: AssertionError"
  ],
  "suggested_fix_category": "test_failure",
  "confidence": 0.96
}

Call it

Use an x402 v2 payment-aware client from the quickstart. An unpaid request safely returns the exact payment challenge before any work runs.