Arrive Availability Feed
Summary
The Arrive availability feed enables data partners to programmatically get the availability of all of Arrive's locations within the coming hour. The feed is updated every 15 minutes.
Contact the platform team to learn more: partner-support@arrive.com
Availability Feed Calculation
The reservation window used in the availability calculation is as follows:
Parking start time equals the nearest half hour, rounded down, from the sampling time.
Parking end time equals the parking start time, plus one hour.
Example: If the availability of a location is sampled at 8:20 AM, the feed will check for the number of parking spaces available from 8:00am to 9:00am.
A location will show zero available spaces when:
- The location is closed or not accepting reservations at the time of sampling
- The location only offers event parking, and no events were scheduled at the time of sampling
- There are no reservable spaces available (e.g. sold out) at the sampled time and parking duration
Version Changes
v1.0
: Initial release
Endpoints and Authentication
- Sandbox https://api.sandbox.parkwhiz.com/v4/availability_feed/feed.json
- Production https://api.parkwhiz.com/v4/availability_feed/feed.json
Usage: These endpoints are available to Arrive partners with the 'data' api scope. Send a GET request to the above endpoints with the parameters client_id=<your client id>
and client_secret=<your client secret>
Data Description
Availability Feed Model
Field | Type | Description | Example |
---|---|---|---|
locations | array | Array of all locations available | [{"id": "7503", "spaces_available": 0 }, ...] |
last_updated | string | time stamp of when the feed was last updated | "2018-04-26T17:50:17+00:00" |
Availability Feed Location Model
Field | Type | Description | Example |
---|---|---|---|
id | string | Location's ID | 34 |
spaces_available | integer | Number of spaces available in the upcoming hour | 50 |
Sample JSON
{
"locations": [
{
"id": "7503",
"spaces_available": 0
},
{
"id": "7505",
"spaces_available": 0
},
{
"id": "7506",
"spaces_available": 0
},
{
"id": "8514",
"spaces_available": 0
},
{
"id": "4453",
"spaces_available": 100
}],
"last_updated": "2018-04-26T17:50:17+00:00
}