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

# Get Sequence by ID

> Get a specific sequence by ID

Retrieves a specific sequence by its ID with detailed statistics.

### Path Parameters

* **id** (*required*, string): The sequence ID

### Response

Returns a JSON object containing the sequence details.

```json theme={null}
{
  "data": {
    "id": "seq_12345",
    "name": "Q1 Outbound Campaign",
    "last_used_at": "2024-02-01T15:30:00.000Z",
    "first_used_at": "2024-01-05T09:00:00.000Z",
    "total_calls": 1250
  }
}
```

### Error Responses

* **404 Not Found**: Sequence with the specified ID does not exist


## OpenAPI

````yaml GET /v1/sequences/{id}
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/sequences/{id}:
    get:
      tags:
        - Sequences
      description: Get a specific sequence by ID
      operationId: get-sequence-by-id
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Sequence ID
      responses:
        '200':
          description: Sequence retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SequenceDTO'
        '404':
          description: Sequence not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SequenceDTO:
      type: object
      properties:
        id:
          type: string
          description: Sequence ID from external integration
        name:
          type: string
          description: Sequence name
        last_used_at:
          type: string
          format: date-time
          description: Most recent call date in this sequence
        first_used_at:
          type: string
          format: date-time
          description: First call date in this sequence
        total_calls:
          type: integer
          description: Total calls made within this sequence
      required:
        - id
        - name
        - total_calls
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````