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

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

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}/single-use-link', 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}/single-use-link",
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}/single-use-link"

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}/single-use-link")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

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

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
{
  "success": true,
  "link": "https://zeeg.me/S/axo3kbv54/30min-discovery-call",
  "eventTypeUri": "https://api.zeeg.me/v2/event-types/80f46bf5-eb01-4c07-960e-a9a3e18aae5e"
}
{
"message": "Unauthenticated."
}
{
"error": "Entry for EventType not found"
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

UUID of the scheduling page

Query Parameters

price
number

If you have enabled payments for a scheduling page, you can assign a price when generating a single-use scheduling link to override the default price. This is helpful when you want to offer a paid event at a discounted price or completely for free. If your scheduling page has multiple durations, please note that the price override applies to all durations.

Response

OK

success
boolean
eventTypeUri
string<uri>
Last modified on April 29, 2026