Skip to main content
GET
/
api
/
v1
/
logs
/
executions
List execution logs
curl --request GET \
  --url https://api.dualship.run/api/v1/logs/executions \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Workspace-Id: <x-workspace-id>'
{
  "limit": 123,
  "logs": [
    {
      "country": "<string>",
      "created_at": "<string>",
      "error_message": "<string>",
      "flow_id": "<string>",
      "flow_slug": "<string>",
      "flow_version": 123,
      "id": "<string>",
      "ip_address": "<string>",
      "latency_ms": 123,
      "method": "<string>",
      "path": "<string>",
      "request_body": "<string>",
      "request_headers": {},
      "request_id": "<string>",
      "request_query": {},
      "response_body": "<string>",
      "response_headers": {},
      "response_status": 123,
      "success": true,
      "user_agent": "<string>"
    }
  ],
  "offset": 123,
  "total": 123
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Headers

X-Workspace-Id
string
required

Workspace ID

Query Parameters

project_id
string

Project ID (uses default if not specified)

flow_id
string

Filter by flow ID

flow_slug
string

Filter by flow slug

request_id
string

Filter by request ID

method
string

Filter by HTTP method (GET, POST, etc.)

path
string

Search in path (case-insensitive)

status_code
integer

Filter by exact status code

status_min
integer

Filter by minimum status code

status_max
integer

Filter by maximum status code

status_category
string

Filter by status category (2xx, 3xx, 4xx, 5xx)

success
boolean

Filter by success status

latency_min
integer

Filter by minimum latency (ms)

latency_max
integer

Filter by maximum latency (ms)

ip_address
string

Filter by IP address

user_agent
string

Search in user agent (case-insensitive)

country
string

Filter by country code

error
string

Search in error message (case-insensitive)

start_time
string

Filter logs after this time (RFC3339)

end_time
string

Filter logs before this time (RFC3339)

sort_by
string
default:created_at

Sort by field (created_at, latency_ms, response_status, method)

sort_order
string
default:desc

Sort order (asc, desc)

limit
integer
default:100

Limit results (max 1000)

offset
integer
default:0

Offset for pagination

Response

List of execution logs with pagination

limit
integer
logs
object[]
offset
integer
total
integer