Skip to main content
GET
/
v1
/
events
/
{id}
cURL
curl --request GET \
  --url https://api.novacal.io/v1/events/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "canceled_at": "2023-11-07T05:31:56Z",
    "cancellation_reason": "<string>",
    "location": "<string>",
    "form_field_answers": {
      "name": "John Doe",
      "email": "john@example.com"
    },
    "status": "<string>",
    "name": "<string>",
    "organizer": {
      "first_name": "<string>",
      "last_name": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "username": "<string>",
      "timezone": "<string>",
      "time_format": 12,
      "start_of_week": 0,
      "avatar": "<string>"
    },
    "hosts": [
      {
        "first_name": "<string>",
        "last_name": "<string>",
        "name": "<string>",
        "email": "jsmith@example.com",
        "username": "<string>",
        "timezone": "<string>",
        "time_format": 12,
        "start_of_week": 0,
        "avatar": "<string>"
      }
    ],
    "booker": {
      "name": "<string>",
      "email": "jsmith@example.com",
      "timezone": "<string>",
      "time_format": 12
    },
    "guests": [
      "jsmith@example.com"
    ]
  }
}

What this endpoint is for

Use this endpoint when you already have an event ID and need the full event payload for that specific booking.

Typical use cases

  • Show booking details inside an admin view
  • Inspect the current event status before allowing a change
  • Read submitted answers, attendee details, and organizer information

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

ID of event

Response

200 - application/json

Event response

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required