Skip to main content
GET
https://api.resend.com
/
workflows
/
:workflow_id
/
runs
// Node.js SDK is not available yet
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "status": "completed",
      "started_at": "2025-10-01T12:00:00.000Z",
      "completed_at": "2025-10-01T12:05:00.000Z",
      "created_at": "2025-10-01T12:00:00.000Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "status": "running",
      "started_at": "2025-10-02T08:30:00.000Z",
      "completed_at": null,
      "created_at": "2025-10-02T08:30:00.000Z"
    }
  ]
}
Workflows are currently in private alpha and only available to a limited number of users. APIs might change before GA.To use the methods on this page, you must upgrade your Resend SDK:
npm install resend@6.10.0-preview-workflows.0
Contact us if you’re interested in testing this feature.

Path Parameters

Query Parameters

Note that the limit parameter is optional. If you do not provide a limit, all workflow-runs will be returned in a single response.
limit
number
Number of workflow-runs to retrieve.
  • Maximum value: 100
  • Minimum value: 1
after
string
The ID after which we'll retrieve more workflow-runs (for pagination). This ID will not be included in the returned list. Cannot be used with thebefore parameter.
before
string
The ID before which we'll retrieve more workflow-runs (for pagination). This ID will not be included in the returned list. Cannot be used with the after parameter.
You can only use either after or before parameter, not both. See our pagination guide for more information.
// Node.js SDK is not available yet
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "status": "completed",
      "started_at": "2025-10-01T12:00:00.000Z",
      "completed_at": "2025-10-01T12:05:00.000Z",
      "created_at": "2025-10-01T12:00:00.000Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "status": "running",
      "started_at": "2025-10-02T08:30:00.000Z",
      "completed_at": null,
      "created_at": "2025-10-02T08:30:00.000Z"
    }
  ]
}