Skip to main content
GET
/
bookings
cURL
curl --request GET \
  --url https://{company}.fairwayze.com/api/integrations/bookings \
  --header 'ApiKey: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "duration": "['2026-02-04 17:00:00+00','2026-02-04 18:00:00+00')",
    "start_time": "2026-02-04T17:00:00+00:00",
    "end_time": "2026-02-04T18:00:00+00:00",
    "location": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "bay": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "tag": "<string>"
    }
  }
]

Authorizations

ApiKey
string
header
required

Query Parameters

location_id
string<uuid>
required

The location ID to retrieve bookings for

start_date
string<date>

The earliest booking date to include (Format: YYYY-MM-DD)

end_date
string<date>

The latest booking date to include (Format: YYYY-MM-DD)

Response

Booking object

id
string<uuid>
duration
string
Example:

"['2026-02-04 17:00:00+00','2026-02-04 18:00:00+00')"

start_time
string<date-time>
Example:

"2026-02-04T17:00:00+00:00"

end_time
string<date-time>
Example:

"2026-02-04T18:00:00+00:00"

location
object
bay
object