---
title: "Get a Sequence"
method: GET
path: "/v1/sequences/{sequence_id}"
tags: ["Sequences"]
---

# Get a Sequence

`GET /v1/sequences/{sequence_id}`

Gets a single sequence by its `sequence_id`. The detail response includes the sequence's ordered list of tasks.

## Path parameters

- `sequence_id` string, uuid, required

## Response `200`

Successful Response

- PublicItemResponseSequenceDetailResponse
  - `data` SequenceDetailResponse, required — Sequence resource with its ordered list of tasks.
    - `id` string, required — Unique identifier for the sequence
    - `contact_id` string, required — ID of the contact this sequence is associated with
    - `name` string, nullable — Name of the sequence
    - `description` string, nullable — Description of the sequence
    - `status` string, nullable — Current status of the sequence.
    - `template_id` string, nullable — ID of the sequence template this sequence was created from
    - `created_at` string, date-time, required — Date and time the sequence was created
    - `updated_at` string, date-time, nullable — Date and time the sequence was last updated
    - `last_interaction` string, nullable — Human-readable summary of the most recent interaction on this sequence (e.g. "Email today", "No interactions yet").
    - `enqueued_at` string, date-time, nullable — Date and time the sequence was enqueued
    - `started_at` string, date-time, nullable — Date and time the sequence was started
    - `responded_at` string, date-time, nullable — Date and time the contact responded on this sequence
    - `meeting_booked_at` string, date-time, nullable — Date and time a meeting was booked off this sequence
    - `sender_id` string, nullable — ID of the user sending this sequence
    - `sender_name` string, nullable — Full name of the user sending this sequence
    - `tasks` SequenceTaskResponse[] — Ordered list of tasks in the sequence
      - `id` string, required — Unique identifier for the task
      - `sequence_id` string, required — ID of the sequence this task belongs to
      - `order` integer, required — Position of the task within the sequence (1-indexed)
      - `name` string, nullable — Display name of the task
      - `type` 'generic' | 'auto_email' | 'manual_email' | 'auto_linkedin_connection' | 'manual_linkedin_connection' | 'auto_linkedin_message' | 'manual_linkedin_message' | 'auto_linkedin_inmail' | 'manual_linkedin_inmail' | 'auto_phone' | 'manual_phone' | 'internal_email' | 'gifting_via_email' | 'gifting_via_address' | 'complete_sequence', required
      - `status` 'unknown' | 'scheduled' | 'pending' | 'in_progress' | 'paused' | 'completed' | 'failed' | 'cancelled' | 'skipped', required
      - `scheduled_at` string, date-time, required — Date and time the task is scheduled for
      - `completed_at` string, date-time, nullable — Date and time the task was completed
      - `task_body` string, nullable — Task message body
      - `subject` string, nullable — Subject line, for subject-bearing channels (email, InMail, gifting email)
      - `outcome` 'cannot_send' | 'positive_reply' | 'negative_reply' | 'noncommital_reply' | 'email_not_found' | 'email_bounced' | 'out_of_office' | 'message_opened' | 'link_opened' | 'accepted' | 'declined' | 'profile_unreachable' | 'linkedin_not_found' | 'linkedin_connection_limit_exceeded' | 'linkedin_already_invited_recently' | 'linkedin_cannot_resend_yet' | 'linkedin_invitation_declined_previously' | 'linkedin_account_disconnected' | 'linkedin_no_inmail_credits' | 'incoming_comms_blocked' | 'not_connected' | 'connection_note_too_long' | 'gift_shipped' | 'gift_delivered' | 'gift_opened' | 'gift_thank_you_added' | 'gift_refunded' | 'gift_cancelled' | 'connection_not_accepted' | 'previous_task_incomplete' | 'do_not_contact' | 'message_evaluation_blocked' | 'account_status_excluded'
  - `meta` ResponseMeta
    - `timestamp` string, date-time — Server timestamp of the response

## Other responses

- `4XX` — Client error

---

[API](https://skmtc.dev/monaco/apis/monaco-public-api.md) · [All operations](https://skmtc.dev/monaco/apis/monaco-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/monaco/monaco-public-api/revisions/ec4d9b2b035b/schema)
