Skip to main content
GET
/
sequences
List sequences
curl --request GET \
  --url https://app.leonar.app/api/v1/sequences \
  --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
      }
    }
  ],
  "meta": {
    "total": 142,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Query Parameters

limit
integer
default:50

Items per page

Required range: 1 <= x <= 100
offset
integer
default:0

Items to skip

Required range: x >= 0
status
string

Filter by status

sort
string
default:-created_at

Options: created_at, updated_at, name, status

Response

List of sequences

data
object[]
meta
object
Example:
{
"total": 142,
"limit": 50,
"offset": 0,
"has_more": true
}