Skip to main content
GET
/
scheduled_events
List scheduled events
curl --request GET \
  --url https://api.calendly.com/scheduled_events \
  --header 'Authorization: Bearer <token>'
{
  "collection": [
    {
      "uri": "<string>",
      "name": "<string>",
      "meeting_notes_plain": "<string>",
      "meeting_notes_html": "<string>",
      "status": "active",
      "start_time": "2023-11-07T05:31:56Z",
      "end_time": "2023-11-07T05:31:56Z",
      "event_type": "<string>",
      "location": {
        "type": "<string>",
        "location": "<string>",
        "join_url": "<string>",
        "status": "<string>"
      },
      "invitees_counter": {
        "total": 123,
        "active": 123,
        "limit": 123
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "event_memberships": [
        {
          "user": "<string>",
          "user_email": "jsmith@example.com",
          "user_name": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "count": 123,
    "next_page": "<string>",
    "previous_page": "<string>",
    "next_page_token": "<string>",
    "previous_page_token": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://calendly-preview.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE. Request the minimum scopes your integration needs. See the Scopes catalog for the full list.

Query Parameters

user
string<uri>

URI of the user.

organization
string<uri>
required

URI of the organization.

invitee_email
string<email>
status
enum<string>
Available options:
active,
canceled
min_start_time
string<date-time>
max_start_time
string<date-time>
group
string<uri>
count
integer
default:20

Number of results to return per page (1-100).

Required range: 1 <= x <= 100
page_token
string

Opaque cursor for retrieving the next page of results.

sort
string

Field and direction to sort results by.

Response

OK

collection
object[]
pagination
object