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
}

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

error_classification
enum<string>

Comma-separated canonical error classification filter. Restricts results to terminal error executions whose classification is in the set; an unrecognized value returns 400. Each value must be one of the listed enum members.

Available options:
content_moderation,
execution_timeout,
invalid_user_input,
invalid_model_config,
provider_auth,
provider_error,
provider_rate_limit,
provider_unavailable,
internal_error,
unknown
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 June 17, 2026