ParkWhiz

ParkWhiz is a parking reservation and mobility platform (with the BestParking discovery brand) that lets drivers search, price, reserve, and pay for parking at facilities, venues, and events across North America. Its consumer apps and website are backed by a documented v4 REST API (api.parkwhiz.com / api.arrive.com) covering location and quote search, bookings, parking passes, venues and events, monthly parking, vehicles, payment methods, and accounts. ParkWhiz was rebranded to Arrive / Arrive Mobility and merged into FlashParking (Flash) in January 2021; separately, EasyPark Group acquired the rights to the "Arrive" name from Flash and rebranded itself to Arrive in 2025. The v4 API is publicly documented but partner-gated - OAuth client credentials are issued to approved partners on request (dev@parkwhiz.com), not self-serve.

6 APIs 0 Features
ParkingMobilityReservationsBookingsTransportationLocationEvents

APIs

ParkWhiz Quotes & Locations API

Search bookable parking availability and pricing (quotes) for a geographic area, destination, venue, or event, and retrieve parking location (facility) details and reviews. Retu...

ParkWhiz Bookings API

Preview, create, retrieve, list, extend, cancel, and share parking bookings from a selected quote; retrieve the pre-formatted parking pass and scan/QR code for a booking; and at...

ParkWhiz Monthly Parking API

List and retrieve recurring monthly parking bookings, the subscription-style counterpart to transient (hourly / daily / event) bookings.

ParkWhiz Venues & Events API

Search venues (stadiums, arenas, airports, theaters) and events, and retrieve the events scheduled at a venue, so drivers can find and price event parking near a destination and...

ParkWhiz Accounts & Vehicles API

Create and manage user accounts and profiles, saved vehicles, payment methods, frequent locations, and recommended bookings, plus account recovery, password reset, and phone ver...

ParkWhiz Tickets API

Preview, create, update, pay, and close parking tickets (drive-up / on-demand parking transactions and violations), and associate a vehicle with a ticket.

Collections

Pricing Plans

Parkwhiz Plans Pricing

3 plans

PLANS

Rate Limits

Parkwhiz Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🔑
OAuthScopes
OAuthScopes
🔗
Website
Website
🔗
LinkedIn
LinkedIn
🔗
Documentation
Documentation
🌐
DeveloperPortal
DeveloperPortal
🚀
GettingStarted
GettingStarted
📄
Changelog
Changelog
📦
SDK
SDK
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: ParkWhiz / Arrive API v4
  version: '4.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: OAuth
    type: folder
  items:
  - info:
      name: Generate an access token
      type: http
    http:
      method: POST
      url: https://api.parkwhiz.com/v4/oauth/token
      body:
        type: form
        data: grant_type=client_credentials&client_id={{clientId}}&client_secret={{clientSecret}}&scope=public+partner
    docs: Exchange partner credentials for an OAuth access token. Credentials are issued to approved partners by dev@parkwhiz.com.
- info:
    name: Quotes & Locations
    type: folder
  items:
  - info:
      name: Search parking quotes
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/quotes
    docs: Search bookable availability and pricing for a location, event, or time window.
  - info:
      name: Search parking locations
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/locations
    docs: Find parking facilities within a geographic area.
  - info:
      name: Retrieve a parking location
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/locations/:location_id
      params:
      - name: location_id
        value: ''
        type: path
        description: The parking location ID.
    docs: Retrieve a parking location by ID.
- info:
    name: Bookings
    type: folder
  items:
  - info:
      name: List bookings
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/bookings
    docs: List the authenticated user's bookings.
  - info:
      name: Preview a booking
      type: http
    http:
      method: POST
      url: https://api.parkwhiz.com/v4/bookings/previews
      body:
        type: json
        data: '{ "quote_id": 0 }'
    docs: Price a prospective booking before committing.
  - info:
      name: Create a booking
      type: http
    http:
      method: POST
      url: https://api.parkwhiz.com/v4/bookings
      body:
        type: json
        data: '{ "quote_id": 0, "payment_method_id": 0, "vehicle_id": 0 }'
    docs: Reserve parking from a selected quote. Requires a user-authorized token.
  - info:
      name: Retrieve the parking pass
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/bookings/:booking_id/parking_pass
      params:
      - name: booking_id
        value: ''
        type: path
        description: The booking ID.
    docs: Retrieve the pre-formatted parking pass for a booking.
  - info:
      name: Attach a vehicle to a booking
      type: http
    http:
      method: POST
      url: https://api.parkwhiz.com/v4/bookings/:booking_id/vehicle
      params:
      - name: booking_id
        value: ''
        type: path
        description: The booking ID.
      body:
        type: json
        data: '{ "vehicle_id": 0 }'
    docs: Attach a known vehicle to a booking for gate/plate validation.
  - info:
      name: Cancel a booking
      type: http
    http:
      method: DELETE
      url: https://api.parkwhiz.com/v4/bookings/:booking_id
      params:
      - name: booking_id
        value: ''
        type: path
        description: The booking ID.
    docs: Cancel a booking.
- info:
    name: Venues & Events
    type: folder
  items:
  - info:
      name: Search venues
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/venues
    docs: Search venues such as stadiums, arenas, airports, and theaters.
  - info:
      name: List events at a venue
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/venues/:venue_id/events
      params:
      - name: venue_id
        value: ''
        type: path
        description: The venue ID.
    docs: List the events scheduled at a venue.
  - info:
      name: Search events
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/events
    docs: Search events.
- info:
    name: Accounts & Vehicles
    type: folder
  items:
  - info:
      name: Retrieve current account
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/accounts/me
    docs: Retrieve the current user's account profile.
  - info:
      name: List vehicles
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/accounts/me/vehicles
    docs: List saved vehicles.
  - info:
      name: List payment methods
      type: http
    http:
      method: GET
      url: https://api.parkwhiz.com/v4/accounts/me/payment_methods
    docs: List saved payment methods.