GET
/api/public/v1/appointments/{appointmentId}

Get an appointment

Retrieve a single appointment by ID.

Path Parameters

NameTypeRequiredDescription
appointmentIdstring
Required
Appointment ID.
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/appointments/{appointmentId}" \
  -H "Authorization: Bearer your_access_token"
200Example response
json
{
  "message": "Appointment retrieved successfully!",
  "content": {
    "appointment": {
      "id": "appt_1",
      "status": "CONFIRMED"
    }
  }
}