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_AEcaBR4KvwvFtFhyH",
      "name": "Custom Schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Paris",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4
      ],
      "public": true,
      "teamId": "tea_b4rMsi2trB42WyuWP",
      "createdBy": "usr_gmHgNGRcGPSTJrDbT",
      "createdAt": "2025-10-27T09:41:11.187Z"
    },
    {
      "_id": "skd_eb8Lm39mKoMW8mibE",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Paris",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_b4rMsi2trB42WyuWP",
      "createdBy": "usr_gmHgNGRcGPSTJrDbT",
      "createdAt": "2025-10-27T07:01:04.041Z"
    },
    {
      "_id": "skd_iNkGfQRHbzoS22hdA",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Asia/Seoul",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_b4rMsi2trB42WyuWP",
      "createdBy": "usr_gmHgNGRcGPSTJrDbT",
      "createdAt": "2025-10-24T09:37:25.040Z"
    },
    {
      "_id": "skd_8NyTiriwLFHXNiSTq",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Asia/Seoul",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_b4rMsi2trB42WyuWP",
      "createdBy": "usr_gmHgNGRcGPSTJrDbT",
      "createdAt": "2025-10-24T07:24:44.785Z"
    },
    {
      "_id": "skd_Qick3HJqsxiW5Bir7",
      "name": "Default schedule",
      "secondsToWait": 1200,
      "timezone": "Europe/Sofia",
      "start": "09:00",
      "end": "18:00",
      "weekdays": [
        1,
        2,
        3,
        4,
        5
      ],
      "teamId": "tea_b4rMsi2trB42WyuWP",
      "createdBy": "usr_dZKq4dpAnn8YQQMJm",
      "createdAt": "2025-10-20T13:13:34.680Z"
    }
  ],
  "pagination": {
    "totalRecords": 3039,
    "currentPage": 1,
    "nextPage": 2,
    "totalPage": 608
  }
}
This endpoint uses the Schedule object.
Retrieve all schedules associated with your team. 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