Spurwing

Spurwing is an enterprise-grade appointment scheduling, calendar, and time-management API. Its REST API powers booking widgets, marketplaces, SaaS, and healthcare scheduling with multi-user calendars, provider availability, group meetings, time-zone handling, and client booking. Public read and booking operations are scoped by a public Provider ID, while private operations use a Bearer API key. Spurwing joined Healthie.

5 APIs 0 Features
SchedulingAppointmentsBookingCalendarAvailability

APIs

Spurwing Providers API

Provider calendars are the core scheduling entity in Spurwing. Each provider has a public Provider ID used to scope public availability and booking requests, supporting multi-us...

Spurwing Availability API

Returns the days and bookable time slots a provider has open for a given appointment type and date range, with time-zone and organization-level options.

Spurwing Appointments API

Book client appointments, create group appointments, list an account's appointments, and cancel appointments. Booking is public per Provider ID; listing, group creation, and can...

Spurwing Services API

Lists the appointment types (services) configured on a provider's calendar, each defining a bookable service with its own duration and availability rules.

Spurwing Webhooks API

Spurwing references webhook-style event notifications for scheduling events in its integration guidance. Specific webhook event types and payloads are not reconciled in this art...

Collections

Pricing Plans

Spurwing Plans Pricing

1 plans

PLANS

Rate Limits

Spurwing Rate Limits

2 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Spurwing Appointment Scheduling API
  version: v2
request:
  auth:
    type: bearer
    token: '{{apiKey}}'
items:
- info:
    name: Services
    type: folder
  items:
  - info:
      name: List appointment types
      type: http
    http:
      method: GET
      url: https://api.spurwing.io/api/v2/appointment_types.json
      params:
      - name: provider_id
        value: ''
        type: query
        description: The provider's public calendar identifier.
      - name: page_size
        value: ''
        type: query
      - name: offset
        value: ''
        type: query
    docs: Lists the appointment types (services) configured on a provider's public calendar.
- info:
    name: Availability
    type: folder
  items:
  - info:
      name: List available days
      type: http
    http:
      method: GET
      url: https://api.spurwing.io/api/v2/bookings/days_available.json
      params:
      - name: provider_id
        value: ''
        type: query
      - name: appointment_type_id
        value: ''
        type: query
      - name: date_from_month
        value: ''
        type: query
      - name: organization_level
        value: ''
        type: query
      - name: timezone
        value: ''
        type: query
    docs: Returns the days a provider has availability for a given appointment type.
  - info:
      name: List available slots
      type: http
    http:
      method: GET
      url: https://api.spurwing.io/api/v2/bookings/slots_available.json
      params:
      - name: provider_id
        value: ''
        type: query
      - name: appointment_type_id
        value: ''
        type: query
      - name: start_date
        value: ''
        type: query
      - name: end_date
        value: ''
        type: query
      - name: organization_level
        value: ''
        type: query
      - name: timezone
        value: ''
        type: query
    docs: Returns bookable time slots for a provider and appointment type within a date range.
- info:
    name: Appointments
    type: folder
  items:
  - info:
      name: Complete a booking
      type: http
    http:
      method: POST
      url: https://api.spurwing.io/api/v2/bookings/complete_booking.json
      body:
        type: form-urlencoded
        data: []
    docs: Creates a booking for a client. Pass appointment_id to add an attendee to an existing group appointment.
  - info:
      name: Create group appointment
      type: http
    http:
      method: POST
      url: https://api.spurwing.io/api/v2/appointments
      body:
        type: form-urlencoded
        data: []
    docs: Creates a group appointment. Requires a Bearer API key.
  - info:
      name: List appointments
      type: http
    http:
      method: GET
      url: https://api.spurwing.io/api/v2/appointments
      params:
      - name: page_size
        value: '1000'
        type: query
      - name: offset
        value: '0'
        type: query
      - name: appointment_category
        value: ''
        type: query
      - name: load_attendees
        value: ''
        type: query
      - name: load_providers
        value: ''
        type: query
      - name: load_appointment_type
        value: ''
        type: query
    docs: Lists the authorized account's appointments. Requires a Bearer API key.
  - info:
      name: Cancel an appointment
      type: http
    http:
      method: DELETE
      url: https://api.spurwing.io/api/v2/appointments/:appointment_id
      params:
      - name: appointment_id
        value: ''
        type: path
        description: The ID of the appointment to cancel.
    docs: Cancels and deletes an appointment by id. Requires a Bearer API key.
bundled: true