Skip to main content
GET
/
schedules
Get Many Schedules
curl --request GET \
  --url https://api.lemlist.com/api/schedules \
  --header 'Authorization: Basic <encoded-value>'
{
  "schedules": [
    {
      "_id": "skd_iQiNG7VinWIUkgLy1",
      "name": "Custom Schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Paris",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4
      ],
      "public": true,
      "teamId": "tea_8QvkOiBfPdb2ZRhHi",
      "createdBy": "usr_ahfFktBBHUIxbVG5P",
      "createdAt": "2025-10-27T09:41:11.187Z"
    },
    {
      "_id": "skd_u6cfmo0a7pgwfup9i",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Paris",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_8QvkOiBfPdb2ZRhHi",
      "createdBy": "usr_ahfFktBBHUIxbVG5P",
      "createdAt": "2025-10-27T07:01:04.041Z"
    },
    {
      "_id": "skd_nNGfP0HEkRYJLW4qA",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Asia/Seoul",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_8QvkOiBfPdb2ZRhHi",
      "createdBy": "usr_ahfFktBBHUIxbVG5P",
      "createdAt": "2025-10-24T09:37:25.040Z"
    },
    {
      "_id": "skd_kgykTULiqy42doHxY",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Asia/Seoul",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_8QvkOiBfPdb2ZRhHi",
      "createdBy": "usr_ahfFktBBHUIxbVG5P",
      "createdAt": "2025-10-24T07:24:44.785Z"
    },
    {
      "_id": "skd_SvcCMF1LTI3mgzmCW",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Sofia",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_8QvkOiBfPdb2ZRhHi",
      "createdBy": "usr_46he8cjrZ7s0IQi53",
      "createdAt": "2025-10-20T13:13:34.680Z"
    }
  ],
  "pagination": {
    "totalRecords": 3039,
    "currentPage": 1,
    "nextPage": 2,
    "totalPage": 608
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.lemlist.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint uses the Schedule object.
The response includes schedule details along with pagination information.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

page
integer

The page number to retrieve

offset
integer

The number of records to skip. Used if page is not provided.

limit
integer

The maximum number of records to return

sortBy
enum<string>

The field by which to sort the schedules. Currently, only 'createdAt' is supported.

Available options:
createdAt
sortOrder
enum<string>

The sort direction. Use 'desc' for descending order; any other value (or omission) will sort in ascending order.

Available options:
asc,
desc

Response

Success

Paginated response containing multiple schedules.

schedules
object[]

Array of schedule objects

pagination
object

Pagination information