API Reference

Start a run

POST https://api.godmode.space/api/rest/runs

Request Body

Name
Type
Description

workflowId*

UUID

ID of Godmode Workflow

input*

Object

Input object for starting the workflow

Example response

{
    "data": {
        "run": {
            "id": "<uuid>"
            "status": "pending",
            "input": {},
            "output": null
        }
    }
}

Get a run by id

GET https://api.godmode.space/api/rest/runs/:id

Path Parameters

Name
Type
Description

id*

UUID

ID of Godmode Run

Example response:

{
    "run": {
        "id": "<uuid>"
        "status": "pending",
        "input": {},
        "output": null
    }
}

Last updated