Skip to main content
GET
/
v1
/
executions
List executions
curl --request GET \
  --url https://api.eachlabs.ai/v1/executions \
  --header 'X-API-Key: <api-key>'
{
  "executions": [
    {
      "id": "exec_abc123",
      "model": "flux-1-1-pro",
      "status": "success",
      "workflow_id": "wf_abc123",
      "workflow_execution_id": "wf_exec_abc123",
      "execution_cost": 0.05,
      "run_time": 12.5,
      "created_at": "2026-01-01T00:00:00Z",
      "started_at": "2026-01-01T00:00:02Z",
      "completed_at": "2026-01-01T00:00:15Z",
      "output": "https://storage.example.com/predictions/abc123/image.jpg"
    }
  ],
  "total_count": 123,
  "offset": 0,
  "limit": 20
}

Documentation Index

Fetch the complete documentation index at: https://docs.eachlabs.ai/llms.txt

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

Authorizations

X-API-Key
string
header
required

API key for authentication

Query Parameters

limit
integer
default:20

Maximum number of executions to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of executions to skip for pagination

Required range: x >= 0
model
string

Filter executions by model slug

status
string

Comma-separated status filter

workflow_id
string

Filter by workflow ID

workflow_execution_id
string

Filter by workflow execution ID

from
string<date-time>

Start of creation time window, as RFC 3339

to
string<date-time>

End of creation time window, as RFC 3339

Response

List of executions

executions
object[]
required
total_count
integer
required

Total number of matching executions

Example:

123

offset
integer
required

Applied offset

Example:

0

limit
integer
required

Applied limit

Example:

20

Last modified on May 28, 2026