Skip to main content
GET
/
job
/
{runchat_job_id}
Trigger Job
curl --request GET \
  --url https://runchat.com/api/v1/job/{runchat_job_id} \
  --header 'Authorization: Bearer <token>'
{
  "metadata": "<string>",
  "data": [
    {
      "id": "<string>",
      "label": "<string>",
      "description": "<string>",
      "data": [
        {}
      ]
    }
  ],
  "job_id": "<string>",
  "runchat_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using Runchat API key. API keys can be created from the account menu

Path Parameters

runchat_job_id
string
required

The unique identifier for the Runchat job. Jobs are created from the Tasks dashboard and back either a flow run or a saved agent chat.

Response

Successful job execution.

Response shape for flow-backed job runs (GET only).

metadata
string<json>

Stringified JSON containing execution metadata.

data
object[]

Output data from the executed nodes.

job_id
string

The job identifier.

runchat_id
string

The underlying Runchat identifier.