Loading...
Loading...
The MightyKey API lets you programmatically create and manage agent runs, configure webhooks, and integrate autonomous business operations into your existing workflows.
https://mightykey.ai/api/v11. Create an account and organization at mightykey.ai/signup
2. Generate an API key from Portal → API Keys
3. Make your first API call:
curl -X POST https://mightykey.ai/api/v1/runs \
-H "Authorization: Bearer mk_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"requestText": "Build a landing page for my SaaS product"
}'All API responses are wrapped in a standard envelope. Success responses include a data field. Error responses include an error string.
{
"data": {
"id": "run_abc123",
"status": "intake",
"requestText": "Build a landing page...",
"createdAt": "2026-03-14T..."
}
}{
"error": "Unauthorized"
}A full OpenAPI 3.1 spec is available at /openapi.json. Import it into Postman, Insomnia, or any OpenAPI-compatible tool for interactive exploration.