LeadArc Docsv1

Markdown for agents

This page as plain markdown, ready to paste into an LLM.

.md

Sequences

Follow-up sequences and their steps.

sequences:readread bucketreturns list of sequence

Follow-up sequences with steps

bash
curl -sS https://api.leadarc.io/v1/workspaces/airpay/sequences?limit=25 \
  -H "Authorization: Bearer $LEADARC_API_KEY"

Query parameters. Anything else is 400 unsupported_filter.

active cursor expand limit order visibility

Errors from this endpoint, on top of the common ones: invalid_cursor, invalid_request.

json
{
  "object": "sequence",
  "id": "seq_xOvbSvBxb2iRNkVtF2TOMsc1oCMVYnVwFPMd09",
  "workspace": "airpay",
  "name": "Interested but went quiet",
  "active": true,
  "visibility": "workspace",
  "send_days": ["mon", "tue", "wed", "thu", "fri"],
  "send_days_mask": 62,
  "created_by_id": "usr_zaDRRpdu8EPZSU3i89lvZgKPkVQo4uBFA_KOhm",
  "created_at": "2026-06-20T10:00:00Z",
  "steps": [
    {
      "object": "sequence_step",
      "id": "stp_Fgz1ygOA3HvHnLXpEYhVbWkFxDWJ8g7K211AFt",
      "order_index": 0,
      "type": "email",
      "title": "Send the Loom",
      "delay_value": 0,
      "delay_unit": "days",
      "wait_for_previous": false,
      "template_id": "tpl_RkPo3VxECLfgHxyPBBBi5GTDYNiRwMWrLWUEo_",
      "email_body": null,
      "linkedin_text": null
    },
    {
      "object": "sequence_step",
      "id": "stp_Fgz1ygOA3HvHnLXpEYhVbWkFxDWJ8g7K211AFt",
      "order_index": 1,
      "type": "call",
      "title": "Ring the mobile",
      "delay_value": 2,
      "delay_unit": "days",
      "wait_for_previous": true,
      "template_id": null,
      "email_body": null,
      "linkedin_text": null
    }
  ]
}

send_days is the readable form of followup_sequences.send_days_mask, which is a 7-bit weekday mask where bit i is Date.getUTCDay() and 0 is Sunday. Default 127 is every day. Both forms are returned, and these pages state the UTC basis, because a sequence set to weekdays fires on UTC weekdays and not the rep's.

wait_for_previous maps to followup_sequence_steps.wait_for_prev.

followup_sequences.deleted_at is withheld. Soft-deleted sequences are filtered out.

Base URL https://api.leadarc.io/v1. Generated from the API source.