---
title: "Get Booking Info"
method: GET
path: "/v1/booking/{token}"
tags: ["booking"]
---

# Get Booking Info

`GET /v1/booking/{token}`

Get interview info and available time slots for a booking token.

This is a public endpoint — no authentication required.

## Path parameters

- `token` string, required

## Response `200`

Successful Response

- BookingInfo
  - `contact_name` string, required
  - `interview_title` string, required
  - `interview_description` string, nullable, required
  - `interview_context` string, nullable, required
  - `duration_minutes` integer, required
  - `timezone` string, required
  - `available_slots` TimeSlot[], required
    - `start` string, required
    - `end` string, required
  - `already_booked` boolean, required
  - `booking_status` string, nullable
  - `meeting_url` string, nullable
  - `scheduled_at` string, nullable
  - `allow_instant` boolean
  - `instant_url` string, nullable
  - `allow_custom_time` boolean
  - `scheduling_mode` string
  - `timeframe_start` string, nullable
  - `timeframe_end` string, nullable
  - `availability` string
  - `unavailable_reason` string, nullable
  - `can_reschedule` boolean
  - `language` string
  - `organization_name` string, nullable
  - `organizer_email` string, nullable
  - `organizer_name` string, nullable
  - `support_email` string, nullable
  - `support_url` string, nullable
  - `is_anonymous` boolean
  - `anonymity_level` string
  - `maintenance` BookingMaintenanceInfo
    - `enabled` boolean
    - `blocked` boolean
    - `reason` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/ontora/apis/ontora-api.md) · [All operations](https://skmtc.dev/ontora/apis/ontora-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ontora/ontora-api/revisions/7f57037fd94b/schema)
