Skip to main content
The Wild Moose Execution API lets you trigger investigations programmatically - from CI/CD pipelines, custom alerting systems, or any tool that can make HTTP requests.
You don’t need to memorize the API. The Moose Builder already knows every endpoint and can help you integrate Wild Moose into your workflows.

Base URL

https://api.wildmoose.ai

What you can do

Execute a playbook

Run an investigation for a single production issue.

Batch execute

Investigate multiple issues in a single request.

List playbooks

Retrieve all available playbooks for your organization.

Authentication

All API requests require a Bearer token (JWT) in the Authorization header. See Authentication for details on obtaining and using tokens.
curl -X POST https://api.wildmoose.ai/playbook/execution \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"bookName": "perf-checks", "time": "2025-01-15T10:30:00Z"}'

Response format

All endpoints return JSON. Successful investigation responses include:
  • highlights - AI-generated root cause analysis and summary.
  • gadgetsHighlights - per-action findings and key insights.
  • actionResults - structured results from each action with links to source tools.
  • actionableMitigations - structured remediation steps with all the parameters needed to execute each mitigation (automatically, even).
When you pass a channelId, Wild Moose also posts the enrichment results to the specified channel and returns an enrichmentLink in the response.