Skip to main content
GET
/
api
/
v1
/
flow
/
{uuid}
/
executions
/
{exec_uuid}
Read one execution with per-step request/response/error
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/flow/{uuid}/executions/{exec_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "success",
    "started_at": "2023-11-07T05:31:56Z",
    "finished_at": "2023-11-07T05:31:56Z",
    "duration_ms": 123,
    "trigger_payload": {},
    "steps": [
      {
        "step_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "position": 123,
        "kind": "trigger",
        "status": "<string>",
        "started_at": "2023-11-07T05:31:56Z",
        "finished_at": "2023-11-07T05:31:56Z",
        "duration_ms": 123,
        "input": {},
        "output": {},
        "error": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required
exec_uuid
string<uuid>
required

Response

OK

success
boolean
Example:

true

data
object

One run of a deployed flow (one trigger event → walk through steps).