Laminar
  • Laminar
  • Platform
    • Overview
    • Getting Started
    • Advanced
      • Configurations
      • HTTP Request Batching
      • Workflow Exit Points
      • Invoke Secondary Workflows
      • Managing Notifications
    • Best Practices
    • Keywords
      • lam.resolveThenExecute
      • lam.exit
      • lam.execute
      • lam.asyncExecute
      • lam.httpRequest
      • lam.httpRequests
  • Concepts
    • Workflows
      • Global Workflow Object
    • Flows
      • Flow Types
        • HTTP Request
        • Data Transformations
      • Flow Runs
      • Supported Languages
    • API Key
    • Configurations
    • API
      • Reference
        • Workspaces
          • Issues
          • Users
          • Invitations
            • Decline
            • Accept
            • Received
            • Created
          • Workflows
          • Flows
          • Auth credentials
          • Api keys
          • Api descriptions
        • Workflow
          • Execute
            • External
          • Flows
          • Executions
        • Users
        • Flows
          • Runs
          • Versions
          • Stats
          • Recent runs
          • Read
        • Configurations
          • Properties
          • Flow credentials
          • Workspace
        • Auth credentials
        • Api descriptions
        • Api keys
        • Transform
          • Test
        • Lami
          • Public
          • Direct
        • Auth
          • Signin
          • Register
          • Refresh
          • Me
          • Users
            • Password
    • Changelog
  • External Links
    • Book a Demo
    • Playground
    • Sign In
  • Specification
Powered by GitBook
On this page

Was this helpful?

  1. Concepts
  2. API
  3. Reference
  4. Flows

Recent runs

PreviousStatsNextRead

Was this helpful?

get
Authorizations
Query parameters
workspaceIdinteger · int64Required
limitinteger · int32OptionalDefault: 10
Responses
200
OK
*/*
get
GET /flows/recent-runs HTTP/1.1
Host: api.laminar.run
Authorization: Bearer JWT
Accept: */*
200

OK

{
  "totalPages": 1,
  "totalElements": 1,
  "size": 1,
  "content": [
    {
      "id": 1,
      "flowName": "text",
      "status": "SUCCESS",
      "startedAt": "2025-05-16T13:41:28.764Z",
      "completedAt": "2025-05-16T13:41:28.764Z",
      "duration": {
        "seconds": 1,
        "nano": 1,
        "negative": true,
        "zero": true,
        "units": [
          {
            "dateBased": true,
            "timeBased": true,
            "durationEstimated": true
          }
        ]
      }
    }
  ],
  "number": 1,
  "sort": {
    "empty": true,
    "sorted": true,
    "unsorted": true
  },
  "pageable": {
    "offset": 1,
    "sort": {
      "empty": true,
      "sorted": true,
      "unsorted": true
    },
    "pageNumber": 1,
    "pageSize": 1,
    "paged": true,
    "unpaged": true
  },
  "first": true,
  "last": true,
  "numberOfElements": 1,
  "empty": true
}