Skip to main content
GET
/
event-types
/
{uuid}
Get a scheduling page
curl --request GET \
  --url https://api.zeeg.me/v2/event-types/{uuid} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.zeeg.me/v2/event-types/{uuid}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.zeeg.me/v2/event-types/{uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeeg.me/v2/event-types/{uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.zeeg.me/v2/event-types/{uuid}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.zeeg.me/v2/event-types/{uuid}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.zeeg.me/v2/event-types/{uuid}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "resource": {
    "uri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
    "uuid": "80f46bf5-eb01-4c07-960e-a9a3e18aae5e",
    "title": "30-Minute Discovery Call",
    "type": "ONE_ON_ONE",
    "slug": "30min-discovery-call",
    "schedulingUrl": "https://zeeg.me/lena-meier/30min-discovery-call",
    "isActive": true,
    "duration": 30,
    "eventDurations": [
      {
        "minutes": 30,
        "default": true
      }
    ],
    "profile": {
      "type": "User",
      "firstName": "Lena",
      "lastName": "Meier",
      "slug": "lena-meier",
      "url": "https://zeeg.me/lena-meier",
      "avatarUrl": null,
      "email": "lena.meier@horizondigital.de"
    },
    "description": "<p>Let's connect for a quick 30-minute discovery call to explore how we can help your business grow.</p>",
    "color": "2196f3",
    "maxActiveInvitees": 1,
    "inviteeNameFormat": "FULL_NAME",
    "inviteePhoneNumber": false,
    "inviteeQuestions": [
      {
        "id": 1,
        "order": 1,
        "question": "What would you like to discuss?",
        "isActive": true,
        "isRequired": true,
        "type": "TEXT_INPUT",
        "options": null
      }
    ],
    "availabilityType": "shared",
    "schedule": {
      "uri": "https://api.zeeg.me/v2/schedules/Q1ZYo391da",
      "uuid": "Q1ZYo391da",
      "title": "Working hours",
      "timezone": "Europe/Berlin",
      "weeklyHours": [
        {
          "day": "Mon",
          "timesets": [
            [
              "09:00",
              "17:00"
            ]
          ]
        },
        {
          "day": "Tue",
          "timesets": [
            [
              "09:00",
              "17:00"
            ]
          ]
        },
        {
          "day": "Wed",
          "timesets": [
            [
              "09:00",
              "17:00"
            ]
          ]
        },
        {
          "day": "Thu",
          "timesets": [
            [
              "09:00",
              "17:00"
            ]
          ]
        },
        {
          "day": "Fri",
          "timesets": [
            [
              "09:00",
              "17:00"
            ]
          ]
        }
      ],
      "specialHours": []
    },
    "hosts": [],
    "notifications": {
      "inviteeConfirmation": "email",
      "addEventLinkNotif": true,
      "bccEmails": null,
      "excludePII": false,
      "excludeHostEmails": false,
      "privateCalendarEvent": false,
      "defaultNotifications": {},
      "customNotifications": {},
      "notificationVariables": []
    },
    "currentTime": "2026-03-23T10:00:00.000000Z",
    "isSecret": false
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

UUID of a specific scheduling page

Response

OK

resource
object
required

A scheduling page (event type) with full details, as returned when fetching a single scheduling page. Extends the list shape with hosts, notifications, and Flexi configuration.

Last modified on April 29, 2026