Get a booking
curl --request GET \
--url https://api.cal.id/booking/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.cal.id/booking/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.cal.id/booking/{id}', 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.cal.id/booking/{id}",
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.cal.id/booking/{id}"
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.cal.id/booking/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cal.id/booking/{id}")
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,
"data": {
"id": 5312,
"title": "Intro Call between Jordan Lee and Priya Sharma",
"description": null,
"customInputs": {},
"startTime": "2026-05-04T09:00:00.000Z",
"endTime": "2026-05-04T09:15:00.000Z",
"createdAt": "2026-04-27T16:22:04.000Z",
"updatedAt": "2026-04-27T16:22:04.000Z",
"metadata": {
"videoCallUrl": "https://meet.cal.id/intro-call/bk_9f2c1d7a4e"
},
"uid": "bk_9f2c1d7a4e",
"recurringEventId": null,
"location": "integrations:daily",
"status": "ACCEPTED",
"paid": false,
"fromReschedule": null,
"rescheduled": null,
"isRecorded": false,
"eventType": {
"id": 100482,
"title": "Intro Call",
"slug": "intro-call",
"eventName": "Intro Call between {HOST} and {ATTENDEE}",
"price": 0,
"currency": "usd",
"recurringEvent": null,
"metadata": {},
"seatsShowAttendees": false,
"hosts": [
{
"user": {
"id": 4021,
"name": "Jordan Lee",
"email": "jordan.lee@example.com"
}
}
],
"calIdTeam": null,
"length": 15,
"customReplyToEmail": null,
"allowReschedulingPastBookings": false,
"hideOrganizerEmail": false,
"disableCancelling": false,
"disableRescheduling": false,
"eventTypeColor": null
},
"user": {
"id": 4021,
"name": "Jordan Lee",
"email": "jordan.lee@example.com"
},
"attendees": [
{
"email": "priya.sharma@example.com",
"name": "Priya Sharma"
}
],
"payment": []
},
"message": "Booking retrieved"
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "Rate limit exceeded",
"error": {
"code": "TOO_MANY_REQUESTS",
"message": "Too many requests. Please retry after the rate limit window resets."
}
}Booking
Get a booking
Returns one booking by numeric ID with everything needed to render it: startTime/endTime, status, location, the public uid, plus the embedded eventType, host user, attendees and any payment records. Use uid for booker-facing links and the numeric id for the other booking endpoints. Bookings belonging to another account return 404, not 403.
GET
/
booking
/
{id}
Get a booking
curl --request GET \
--url https://api.cal.id/booking/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.cal.id/booking/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.cal.id/booking/{id}', 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.cal.id/booking/{id}",
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.cal.id/booking/{id}"
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.cal.id/booking/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cal.id/booking/{id}")
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,
"data": {
"id": 5312,
"title": "Intro Call between Jordan Lee and Priya Sharma",
"description": null,
"customInputs": {},
"startTime": "2026-05-04T09:00:00.000Z",
"endTime": "2026-05-04T09:15:00.000Z",
"createdAt": "2026-04-27T16:22:04.000Z",
"updatedAt": "2026-04-27T16:22:04.000Z",
"metadata": {
"videoCallUrl": "https://meet.cal.id/intro-call/bk_9f2c1d7a4e"
},
"uid": "bk_9f2c1d7a4e",
"recurringEventId": null,
"location": "integrations:daily",
"status": "ACCEPTED",
"paid": false,
"fromReschedule": null,
"rescheduled": null,
"isRecorded": false,
"eventType": {
"id": 100482,
"title": "Intro Call",
"slug": "intro-call",
"eventName": "Intro Call between {HOST} and {ATTENDEE}",
"price": 0,
"currency": "usd",
"recurringEvent": null,
"metadata": {},
"seatsShowAttendees": false,
"hosts": [
{
"user": {
"id": 4021,
"name": "Jordan Lee",
"email": "jordan.lee@example.com"
}
}
],
"calIdTeam": null,
"length": 15,
"customReplyToEmail": null,
"allowReschedulingPastBookings": false,
"hideOrganizerEmail": false,
"disableCancelling": false,
"disableRescheduling": false,
"eventTypeColor": null
},
"user": {
"id": 4021,
"name": "Jordan Lee",
"email": "jordan.lee@example.com"
},
"attendees": [
{
"email": "priya.sharma@example.com",
"name": "Priya Sharma"
}
],
"payment": []
},
"message": "Booking retrieved"
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"success": false,
"message": "Rate limit exceeded",
"error": {
"code": "TOO_MANY_REQUESTS",
"message": "Too many requests. Please retry after the rate limit window resets."
}
}Authorizations
Use the Authorization header with Bearer scheme.
Examples:
- API Key: Authorization: Bearer calid_xxxxx
Path Parameters
Numeric booking identifier.
Required range:
x > 1Example:
101
Was this page helpful?