List Runs
curl --request GET \
--url https://app.uselamina.ai/v1/runs \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/runs"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.uselamina.ai/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://app.uselamina.ai/v1/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.uselamina.ai/v1/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.uselamina.ai/v1/runs")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"runId": "fc32ae7d-6840-4be3-8fb1-539a60e33fc3",
"workflowId": "80d4d454-8844-489f-b903-2ad65a414482",
"status": "completed",
"source": "api_app",
"errorMessage": null,
"startedAt": "2026-04-15T10:30:01.000Z",
"completedAt": "2026-04-15T10:32:15.000Z",
"createdAt": "2026-04-15T10:30:00.000Z"
},
{
"runId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"workflowId": "483754bf-24c9-48c1-a70e-71d2ff9682fa",
"status": "failed",
"source": "api_app",
"errorMessage": "Image generation timed out",
"startedAt": "2026-04-15T09:15:01.000Z",
"completedAt": "2026-04-15T09:20:01.000Z",
"createdAt": "2026-04-15T09:15:00.000Z"
}
],
"pagination": {
"total": 47,
"limit": 25,
"offset": 0
}
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"Track
List Runs
List past runs for the workspace with optional filters.
Returns a paginated list of run summaries (without full output details).
Use this to find runs to inspect, or to monitor recent activity.
For full output details on a specific run, use GET /v1/runs/{runId}.
Results are ordered by creation time, newest first.
GET
/
v1
/
runs
List Runs
curl --request GET \
--url https://app.uselamina.ai/v1/runs \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/runs"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.uselamina.ai/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://app.uselamina.ai/v1/runs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.uselamina.ai/v1/runs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.uselamina.ai/v1/runs")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/runs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"runId": "fc32ae7d-6840-4be3-8fb1-539a60e33fc3",
"workflowId": "80d4d454-8844-489f-b903-2ad65a414482",
"status": "completed",
"source": "api_app",
"errorMessage": null,
"startedAt": "2026-04-15T10:30:01.000Z",
"completedAt": "2026-04-15T10:32:15.000Z",
"createdAt": "2026-04-15T10:30:00.000Z"
},
{
"runId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"workflowId": "483754bf-24c9-48c1-a70e-71d2ff9682fa",
"status": "failed",
"source": "api_app",
"errorMessage": "Image generation timed out",
"startedAt": "2026-04-15T09:15:01.000Z",
"completedAt": "2026-04-15T09:20:01.000Z",
"createdAt": "2026-04-15T09:15:00.000Z"
}
],
"pagination": {
"total": 47,
"limit": 25,
"offset": 0
}
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"List past executions for your workspace, ordered by creation time (newest first).
Use this to build execution history views, audit logs, or find a specific run you need to inspect. Supports filtering by status, app ID, and time range.
Results are paginated with offset/limit. Default limit is 25, maximum 100.
Authorizations
Workspace API key. Prefix: lma_. Example: lma_abc123...
Query Parameters
Filter runs by status. Omit to return all statuses.
Available options:
queued, running, completed, failed, cancelled Filter by app/workflow ID. Only returns runs of this specific app.
Maximum number of runs to return per page.
Required range:
x <= 100Number of runs to skip (for pagination).
Only return runs created after this ISO 8601 timestamp.