Skip to main content
GET
/
workflows
/
:workflow_id
/
runs
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.workflows.runs.list({
  workflowId: 'c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd',
});
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "status": "completed",
      "trigger": { "event_name": "user.created" },
      "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",
      "trigger": null,
      "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.1
Contact us if you’re interested in testing this feature.

Path Parameters

import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.workflows.runs.list({
  workflowId: 'c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd',
});
{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "status": "completed",
      "trigger": { "event_name": "user.created" },
      "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",
      "trigger": null,
      "started_at": "2025-10-02T08:30:00.000Z",
      "completed_at": null,
      "created_at": "2025-10-02T08:30:00.000Z"
    }
  ]
}