Skip to main content
GET
/
sequences
/
{id}
Get a sequence
curl --request GET \
  --url https://app.leonar.app/api/v1/sequences/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f6a7b8c9-0123-45de-fabc-678901234ef0",
    "name": "Senior Engineers Outreach - Paris",
    "status": "active",
    "priority": "high",
    "created_at": "2025-01-25T11:00:00Z",
    "updated_at": "2025-02-10T14:00:00Z",
    "steps_count": 5,
    "enrollments": {
      "total": 150,
      "active": 45,
      "paused": 10,
      "finished": 80,
      "replied": 32,
      "bounced": 3
    }
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Path Parameters

id
string<uuid>
required

Sequence ID

Response

Sequence details

data
object
Example:
{
  "id": "f6a7b8c9-0123-45de-fabc-678901234ef0",
  "name": "Senior Engineers Outreach - Paris",
  "status": "active",
  "priority": "high",
  "created_at": "2025-01-25T11:00:00Z",
  "updated_at": "2025-02-10T14:00:00Z",
  "steps_count": 5,
  "enrollments": {
    "total": 150,
    "active": 45,
    "paused": 10,
    "finished": 80,
    "replied": 32,
    "bounced": 3
  }
}