> ## Documentation Index
> Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

---
id: c05741ed-a18b-433e-8d77-170f0b565f68
---

# Retrieve a sequence

> Retrieve details of a specific sequence by its ID.

export const ScopesList = ({scopes = [], description = "This API requires one of the following scopes:"}) => {
  if (!scopes || scopes.length === 0) {
    return null;
  }
  const sortedScopes = scopes.sort((a, b) => a.localeCompare(b));
  return <div>
      <div className="text-sm mb-2">{description}</div>
      <div>
        {sortedScopes.map((scope, index) => <div key={index}>
            <code>
              <span className="text-xs">{scope}</span>
            </code>
          </div>)}
      </div>
    </div>;
};

export const SupportedProducts = ({marketing, sales, service, cms, data, commerce, marketingLevel, salesLevel, serviceLevel, cmsLevel, dataLevel, commerceLevel}) => {
  const translations = {
    description: "Requires one of the following products or higher.",
    productNames: {
      marketing: "Marketing Hub",
      sales: "Sales Hub",
      service: "Service Hub",
      cms: "Content Hub",
      data: "Data Hub",
      commerce: "Revenue Hub"
    },
    tiers: {
      free: "Free",
      starter: "Starter",
      professional: "Professional",
      enterprise: "Enterprise"
    }
  };
  const translateTier = tier => {
    if (!tier) return '';
    const lowerTier = tier.toLowerCase();
    return translations.tiers[lowerTier] || tier;
  };
  const products = [{
    name: marketing ? translations.productNames.marketing : '',
    level: translateTier(marketingLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/marketing-bolt.svg",
    alt: "Marketing Hub"
  }, {
    name: sales ? translations.productNames.sales : '',
    level: translateTier(salesLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/sales-star.svg",
    alt: "Sales Hub"
  }, {
    name: service ? translations.productNames.service : '',
    level: translateTier(serviceLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/service-heart.svg",
    alt: "Service Hub"
  }, {
    name: cms ? translations.productNames.cms : '',
    level: translateTier(cmsLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/content-play.svg",
    alt: "Content Hub"
  }, {
    name: data ? translations.productNames.data : '',
    level: translateTier(dataLevel),
    icon: "https://developers.hubspot.com/hubfs/Knowledge_Base_2023-24-25/subscription_key_icons/operations_icon.svg",
    alt: "Data Hub"
  }, {
    name: commerce ? translations.productNames.commerce : '',
    level: translateTier(commerceLevel),
    icon: "https://developers.hubspot.com/hubfs/Knowledge_Base/subscription_key_icons/commerce_icon.svg",
    alt: "Revenue Hub"
  }].filter(product => product.name && product.level);
  if (products.length === 0) return null;
  return <div>
      <div className="text-sm mb-2">{translations.description}</div>
      <div className={`grid ${products.length === 1 ? 'grid-cols-1' : 'grid-cols-2'} gap-1.5`}>
        {products.map((product, index) => <div key={index} style={{
    display: 'flex',
    alignItems: 'center'
  }}>
            <img src={product.icon} alt={product.alt} className="w-3.5 h-3.5 mr-1.5 mt-2.5 mb-2.5 flex-shrink-0 align-middle" />
            <span className="font-medium mr-1 text-sm">{product.name} -</span>
            <span className="text-sm">{product.level}</span>
          </div>)}
      </div>
    </div>;
};

<AccordionGroup>
  <Accordion title="Supported products" defaultOpen="true" icon="cubes">
    <SupportedProducts marketing={true} sales={true} service={true} cms={true} marketingLevel="FREE" salesLevel="PROFESSIONAL" serviceLevel="PROFESSIONAL" cmsLevel="FREE" />
  </Accordion>

  <Accordion title="Required Scopes" icon="key">
    <ScopesList
      scopes={[
  'automation.sequences.read'
]}
    />
  </Accordion>
</AccordionGroup>


## OpenAPI

````yaml specs/2026-03/automation-sequences-v2026-03.json GET /automation/sequences/2026-03/{sequenceId}
openapi: 3.0.1
info:
  title: Sequences
  description: Basepom for all HubSpot Projects
  version: 2026-03
  x-hubspot-product-tier-requirements:
    marketing: FREE
    sales: PROFESSIONAL
    service: PROFESSIONAL
    cms: FREE
    commerce: FREE
    crmHub: FREE
    dataHub: FREE
  x-hubspot-api-use-case: >-
    You need to enroll them in a HubSpot sequence using an app you designed to
    maintain a list of contacts.
  x-hubspot-introduction: >-
    Use the Sequences API to get a list of sequences get a specific sequence,
    enroll a contact in a sequence, and view a contact’s enrollment status.
servers:
  - url: https://api.hubapi.com
security: []
tags:
  - name: Basic
paths:
  /automation/sequences/2026-03/{sequenceId}:
    get:
      tags:
        - Basic
      summary: Retrieve details for a sequence
      description: Retrieve details of a specific sequence by its ID.
      operationId: get-/automation/sequences/2026-03/{sequenceId}
      parameters:
        - name: sequenceId
          in: path
          description: ''
          required: true
          style: simple
          explode: false
          schema:
            type: string
        - name: userId
          in: query
          description: ''
          required: true
          style: form
          explode: true
          schema:
            type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicSequenceResponse'
        default:
          $ref: '#/components/responses/Error'
          description: ''
      security:
        - oauth2:
            - automation.sequences.read
components:
  schemas:
    PublicSequenceResponse:
      required:
        - createdAt
        - dependencies
        - id
        - name
        - steps
        - updatedAt
        - userId
      type: object
      properties:
        createdAt:
          type: string
          description: The date and time when the sequence was created.
          format: date-time
        dependencies:
          type: array
          description: >-
            An array of dependencies for the sequence steps, each represented as
            a PublicSequenceStepDependencyResponse object.
          items:
            $ref: '#/components/schemas/PublicSequenceStepDependencyResponse'
        folderId:
          type: string
          description: The identifier of the folder containing the sequence.
        id:
          type: string
          description: The unique identifier for the sequence.
        name:
          type: string
          description: The name of the sequence.
        settings:
          $ref: '#/components/schemas/PublicSequenceSettingsResponse'
        steps:
          type: array
          description: >-
            An array of steps included in the sequence, each represented by a
            PublicSequenceStepResponse object.
          items:
            $ref: '#/components/schemas/PublicSequenceStepResponse'
        updatedAt:
          type: string
          description: The date and time when the sequence was last updated.
          format: date-time
        userId:
          type: string
          description: The ID of the user associated with the sequence.
    PublicSequenceStepDependencyResponse:
      required:
        - createdAt
        - dependencyType
        - id
        - reliesOnSequenceStepId
        - reliesOnStepOrder
        - requiredBySequenceStepId
        - requiredByStepOrder
        - updatedAt
      type: object
      properties:
        createdAt:
          type: string
          description: The date and time when the step dependency was created.
          format: date-time
        dependencyType:
          type: string
          description: >-
            The type of dependency between sequence steps with accepted values
            being TASK_COMPLETION or MANUAL_PAUSE.
          enum:
            - MANUAL_PAUSE
            - TASK_COMPLETION
        id:
          type: string
          description: The unique identifier of the step dependency.
        reliesOnSequenceStepId:
          type: string
          description: >-
            The unique identifier of the sequence step that is responsible for
            creating and resolving this dependency.
        reliesOnStepOrder:
          type: integer
          description: >-
            The order number of the step that is responsible for creating and
            resolving this dependency.
          format: int32
        requiredBySequenceStepId:
          type: string
          description: >-
            The unique identifier of the sequence step that requires this
            dependency.
        requiredByStepOrder:
          type: integer
          description: The order number of the step that requires this dependency.
          format: int32
        updatedAt:
          type: string
          description: The date and time when the step dependency was last updated.
          format: date-time
    PublicSequenceSettingsResponse:
      required:
        - createdAt
        - eligibleFollowUpDays
        - id
        - individualTaskRemindersEnabled
        - sellingStrategy
        - sendWindowEndMinute
        - sendWindowStartMinute
        - taskReminderMinute
        - updatedAt
      type: object
      properties:
        createdAt:
          type: string
          description: The timestamp of when the sequence settings were created.
          format: date-time
        eligibleFollowUpDays:
          type: string
          description: Specifies the days on which follow-up actions are allowed.
          enum:
            - BUSINESS_DAYS
            - EVERYDAY
            - WEEKDAYS_ONLY
        id:
          type: string
          description: The unique identifier for the sequence settings.
        individualTaskRemindersEnabled:
          type: boolean
          description: Indicates whether individual task reminders are enabled.
        sellingStrategy:
          type: string
          description: >-
            (deprecated) Defines the unenrollment strategy, with accepted values
            being ACCOUNT_BASED or LEAD_BASED. If ACCOUNT_BASED is used, all
            contacts associated with the same company will be unenrolled if one
            contact meets any of the unenrollment criteria.
          enum:
            - ACCOUNT_BASED
            - LEAD_BASED
        sendWindowEndMinute:
          type: integer
          description: >-
            Indicates the end minute of the time window during which automated
            emails can be sent.
          format: int32
        sendWindowStartMinute:
          type: integer
          description: >-
            Indicates the start minute of the time window during which automated
            emails can be sent.
          format: int32
        taskReminderMinute:
          type: integer
          description: Specifies the minute of day at which task reminders are triggered.
          format: int32
        updatedAt:
          type: string
          description: The timestamp of when the sequence settings were last updated.
          format: date-time
    PublicSequenceStepResponse:
      required:
        - actionType
        - createdAt
        - delayMillis
        - id
        - stepOrder
        - updatedAt
      type: object
      properties:
        actionType:
          type: string
          description: The type of action to be performed in the sequence step.
          enum:
            - EMAIL
            - FINISH_ENROLLMENT
            - TASK
        createdAt:
          type: string
          description: The date and time when the sequence step was created.
          format: date-time
        delayMillis:
          type: integer
          description: The delay in milliseconds before the sequence step is executed.
          format: int64
        emailPattern:
          $ref: '#/components/schemas/PublicEmailPatternResponse'
        id:
          type: string
          description: The unique identifier of the sequence step.
        stepOrder:
          type: integer
          description: The order of the step within the sequence.
          format: int32
        taskPattern:
          $ref: '#/components/schemas/PublicTaskPatternResponse'
        updatedAt:
          type: string
          description: The date and time when the sequence step was last updated.
          format: date-time
    Error:
      required:
        - category
        - correlationId
        - message
      type: object
      properties:
        category:
          type: string
          description: The error category
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: Context about the error condition
          example: >-
            {invalidPropertyName=[propertyValue], missingScopes=[scope1,
            scope2]}
        correlationId:
          type: string
          description: >-
            A unique identifier for the request. Include this value with any
            error reports or support tickets
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: further information about the error
          items:
            $ref: '#/components/schemas/ErrorDetail'
        links:
          type: object
          additionalProperties:
            type: string
          description: >-
            A map of link names to associated URIs containing documentation
            about the error or recommended remediation steps
        message:
          type: string
          description: >-
            A human readable message describing the error along with remediation
            steps where appropriate
          example: An error occurred
        subCategory:
          type: string
          description: >-
            A specific category that contains more specific detail about the
            error
      example:
        message: Invalid input (details will vary based on the error)
        correlationId: aeb5f871-7f07-4993-9211-075dc63e7cbf
        category: VALIDATION_ERROR
        links:
          knowledge-base: https://www.hubspot.com/products/service/knowledge-base
    PublicEmailPatternResponse:
      required:
        - createdAt
        - id
        - templateId
        - updatedAt
      type: object
      properties:
        createdAt:
          type: string
          description: The date and time when the email pattern was created.
          format: date-time
        id:
          type: string
          description: The unique identifier of the email pattern.
        templateId:
          type: string
          description: >-
            The unique identifier of the email template associated with the
            pattern.
        threadEmailToStepOrder:
          type: integer
          description: >-
            The order identifying the previous step to which the email thread is
            linked.
          format: int32
        updatedAt:
          type: string
          description: The date and time when the email pattern was last updated.
          format: date-time
    PublicTaskPatternResponse:
      required:
        - createdAt
        - id
        - taskPriority
        - taskType
        - updatedAt
      type: object
      properties:
        createdAt:
          type: string
          description: The date and time when the task pattern was created.
          format: date-time
        id:
          type: string
          description: The unique identifier for the task pattern.
        notes:
          type: string
          description: Additional notes or comments associated with the task.
        queueId:
          type: integer
          description: The identifier for the queue associated with the task.
          format: int32
        subject:
          type: string
          description: The subject line of the task.
        taskPriority:
          type: string
          description: The priority level assigned to the task.
          enum:
            - HIGH
            - LOW
            - MEDIUM
            - NONE
        taskType:
          type: string
          description: The type of task, such as an email or call.
          enum:
            - CALL
            - EMAIL
            - LINKED_IN_CONNECT
            - LINKED_IN_MESSAGE
            - MEETING
            - TODO
        templateId:
          type: integer
          description: The identifier for the template used in the task.
          format: int64
        threadEmailToStepOrder:
          type: integer
          description: The order of the step to which the email thread is related.
          format: int32
        updatedAt:
          type: string
          description: The date and time when the task pattern was last updated.
          format: date-time
    ErrorDetail:
      required:
        - message
      type: object
      properties:
        code:
          type: string
          description: The status code associated with the error detail
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: Context about the error condition
          example: '{missingScopes=[scope1, scope2]}'
        in:
          type: string
          description: The name of the field or parameter in which the error was found.
        message:
          type: string
          description: >-
            A human readable message describing the error along with remediation
            steps where appropriate
        subCategory:
          type: string
          description: >-
            A specific category that contains more specific detail about the
            error
  responses:
    Error:
      description: An error occurred.
      content:
        '*/*':
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.hubspot.com/oauth/authorize
          tokenUrl: https://api.hubapi.com/oauth/v1/token
          scopes:
            automation.sequences.enrollments.write: ''
            automation.sequences.read: ''

````