curl --request POST \
--url https://api.eigenpal.com/v1/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target": "<string>",
"input": {},
"files": {},
"overrides": {
"steps": {}
},
"metadata": {}
}
'import requests
url = "https://api.eigenpal.com/v1/runs"
payload = {
"target": "<string>",
"input": {},
"files": {},
"overrides": { "steps": {} },
"metadata": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({target: '<string>', input: {}, files: {}, overrides: {steps: {}}, metadata: {}})
};
fetch('https://api.eigenpal.com/v1/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eigenpal.com/v1/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'target' => '<string>',
'input' => [
],
'files' => [
],
'overrides' => [
'steps' => [
]
],
'metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eigenpal.com/v1/runs"
payload := strings.NewReader("{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eigenpal.com/v1/runs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Start a run
Start a run. Send JSON or multipart/form-data.
curl --request POST \
--url https://api.eigenpal.com/v1/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target": "<string>",
"input": {},
"files": {},
"overrides": {
"steps": {}
},
"metadata": {}
}
'import requests
url = "https://api.eigenpal.com/v1/runs"
payload = {
"target": "<string>",
"input": {},
"files": {},
"overrides": { "steps": {} },
"metadata": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({target: '<string>', input: {}, files: {}, overrides: {steps: {}}, metadata: {}})
};
fetch('https://api.eigenpal.com/v1/runs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eigenpal.com/v1/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'target' => '<string>',
'input' => [
],
'files' => [
],
'overrides' => [
'steps' => [
]
],
'metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eigenpal.com/v1/runs"
payload := strings.NewReader("{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eigenpal.com/v1/runs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eigenpal.com/v1/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"target\": \"<string>\",\n \"input\": {},\n \"files\": {},\n \"overrides\": {\n \"steps\": {}\n },\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"id": "<string>",
"finished": true,
"source": {
"id": "<string>",
"name": "<string>",
"version": "<string>",
"versionId": "<string>",
"slug": "<string>",
"model": "<string>",
"git": {
"requestedRef": "<string>",
"resolvedRef": "<string>",
"resolvedTag": "<string>",
"commitSha": "<string>"
},
"implementationAvailable": true,
"automationFound": true,
"currentVersion": "<string>"
}
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}{
"issues": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
],
"requestId": "<string>",
"hint": "<string>",
"docsUrl": "<string>"
}Authorizations
API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.
Query Parameters
Release or git ref. Defaults to latest.
1Seconds to wait before returning (max 600). Omit for async.
0 <= x <= 600Body
Run envelope. Declare provenance with the X-Eigenpal-Trigger header (api or cli). Legacy 0.5.12 body shapes remain accepted.
Automation target without a version suffix, e.g. workflows.invoice or agents.support.
1Scalar and structured automation arguments.
Show child attributes
Show child attributes
File inputs as ingress references ({ "$fileId": "file_..." } or { "$inline": { filename, mimeType, base64 } }). Upload bytes via multipart files.<fieldName> parts instead.
Show child attributes
Show child attributes
Per-step output overrides. Workflow runs only.
Show child attributes
Show child attributes
Caller-supplied run metadata.
Show child attributes
Show child attributes