Discover/SpotHero API
live

SpotHero APIspothero.com

Search SpotHero parking availability by location and time window. Returns pricing, amenities, walking distance, ratings, and restrictions for nearby facilities.

This API takes change requests — .
Endpoint health
verified 3h ago
search_parking
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the SpotHero API?

The SpotHero API exposes 1 endpoint — search_parking — that returns all available parking facilities near a given coordinate for a specified time window. A single call surfaces up to dozens of spot objects, each carrying pricing, real-time availability, walking distance, amenity flags, ratings, and access restrictions. It is useful for any application that needs to compare parking options near a venue, transit hub, or address.

Try it
Parking end time in ISO format YYYY-MM-DDTHH:MM:SS or YYYY-MM-DDTHH:MM.
Parking start time in ISO format YYYY-MM-DDTHH:MM:SS or YYYY-MM-DDTHH:MM.
Latitude of the destination (e.g. 41.8839).
Longitude of the destination (e.g. -87.6310).
api.parse.bot/scraper/cdfba353-4dac-4fd2-998f-3ccefeceda82/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cdfba353-4dac-4fd2-998f-3ccefeceda82/search_parking?ends=2026-07-15T17%3A00%3A00&starts=2026-07-15T09%3A00%3A00&latitude=41.8839288418&longitude=-87.6309569143' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace spothero-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: SpotHero SDK — bounded, re-runnable; every call capped."""
from parse_apis.spothero_com_api import SpotHero, InvalidInput

client = SpotHero()

# Search for parking near Times Square, NYC for tomorrow morning
for spot in client.spots.search(
    latitude="40.7580",
    longitude="-73.9855",
    starts="2026-07-15T09:00:00",
    ends="2026-07-15T17:00:00",
    limit=3,
):
    print(spot.title, spot.price_cents, spot.available_spaces)

# Get the first result for deeper inspection
first = client.spots.search(
    latitude="41.8839",
    longitude="-87.6310",
    starts="2026-07-15T10:00:00",
    ends="2026-07-15T14:00:00",
    limit=1,
).first()

try:
    if first:
        print(first.title, first.street_address, first.city, first.state)
        print("Rating:", first.rating_average, "from", first.rating_count, "reviews")
        for amenity in first.amenities:
            print(" -", amenity.name)
except InvalidInput as e:
    print("bad input:", e)

print("exercised: spots.search")
All endpoints · 1 totalmissing one? ·

Search for available parking spots near a geographic coordinate within a time window. Returns all nearby facilities with pricing, availability, walking distance, amenities, ratings, and restrictions. Results are sorted by relevance. Each spot includes full facility details in a single response — no detail fetch needed.

Input
ParamTypeDescription
endsrequiredstringParking end time in ISO format YYYY-MM-DDTHH:MM:SS or YYYY-MM-DDTHH:MM.
startsrequiredstringParking start time in ISO format YYYY-MM-DDTHH:MM:SS or YYYY-MM-DDTHH:MM.
latituderequiredstringLatitude of the destination (e.g. 41.8839).
longituderequiredstringLongitude of the destination (e.g. -87.6310).
Response
{
  "type": "object",
  "fields": {
    "spots": "array of parking spot objects with full facility details",
    "total": "integer count of spots returned"
  },
  "sample": {
    "data": {
      "spots": [
        {
          "city": "Chicago",
          "state": "IL",
          "title": "13 N Clark St. (70 W Madison Building)",
          "currency": "USD",
          "amenities": [
            {
              "name": "Valet",
              "type": "valet"
            },
            {
              "name": "Garage - Covered",
              "type": "covered"
            }
          ],
          "available": true,
          "facility_id": "2231",
          "postal_code": "60602",
          "price_cents": 2500,
          "rating_count": 1544,
          "restrictions": [
            "Height Restriction: 6' 0\""
          ],
          "visual_flags": [
            "Shortest Walk"
          ],
          "facility_type": "garage",
          "navigation_tip": "Enter this location on North Clark Street.",
          "rating_average": 4.6,
          "street_address": "13 North Clark Street",
          "available_spaces": 21,
          "total_price_cents": 2650,
          "hours_of_operation": [],
          "walking_distance_meters": 152,
          "walking_duration_seconds": 133
        }
      ],
      "total": 93
    },
    "status": "success"
  }
}

About the SpotHero API

What the API Returns

The search_parking endpoint accepts a latitude/longitude pair plus starts and ends timestamps in ISO 8601 format (e.g. 2024-11-15T18:00:00 to 2024-11-15T22:00:00). The response contains a spots array and a total integer. Each object in spots is a full facility record that includes the facility name, street address, distance on foot, price for the requested window, availability status, amenities (covered parking, EV charging, etc.), user ratings, and any access restrictions such as height limits or vehicle type exclusions.

Parameters and Coverage

All four inputs — latitude, longitude, starts, and ends — are required. There are no optional filters for price range, amenity type, or vehicle class at the query level; filtering must be done client-side against the returned spots array. Results are sorted by relevance as determined by SpotHero's own ranking, not by price or distance. Coverage reflects SpotHero's own inventory, which is concentrated in major US cities.

Response Shape

The total field tells you how many spot objects were returned before any client-side filtering. Each spot object is self-contained: you get facility identity (name, address), cost for the exact time window requested, walking distance from the searched coordinate, availability flag, a list of amenities, an aggregate rating, and restriction details. There is no pagination parameter in the current endpoint — the single call returns all matching spots for the coordinate and time window.

Reliability & maintenanceVerified

The SpotHero API is a managed, monitored endpoint for spothero.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when spothero.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official spothero.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Show ranked parking options with prices on an event venue detail page
  • Compare covered vs. uncovered parking costs near an airport for a given flight window
  • Alert users to EV charging availability at lots near a destination
  • Pre-populate a travel itinerary with parking cost estimates for a city trip
  • Build a parking price tracker that logs SpotHero rates for a specific coordinate over time
  • Filter lots by rating to surface only highly rated facilities near a sports stadium
  • Estimate parking budget by querying the same coordinate across multiple time windows
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does SpotHero have an official public developer API?+
SpotHero does not publish a public developer API for third-party access. This Parse API provides structured access to parking search data from spothero.com without requiring a SpotHero developer account.
What does the `spots` array actually contain per facility?+
Each object in spots includes the facility name, street address, total price for the queried time window, walking distance from the searched coordinate, a real-time availability status, a list of amenities (such as covered parking or EV charging), an aggregate user rating, and access restrictions like vehicle height limits.
Does the API support filtering by amenity, price range, or vehicle type?+
There are no server-side filter parameters on search_parking beyond the required coordinate and time window. All amenity, price, and restriction data is present in each spot object, so you can filter the returned spots array client-side. You can fork this API on Parse and revise it to add a filtering layer on top of the results.
Can I retrieve monthly or recurring parking rates, not just hourly/event windows?+
The current endpoint is designed for transient (single-session) parking queries defined by a starts and ends window. Monthly permit rates and recurring reservation data are not currently exposed. You can fork this API on Parse and revise it to add an endpoint targeting SpotHero's monthly parking listings.
How current is the pricing and availability data?+
Pricing and availability reflect what SpotHero surfaces for the requested time window at the time of the API call. SpotHero inventory and pricing can change frequently, especially near high-demand events, so results should be treated as point-in-time snapshots rather than guaranteed quotes.
Page content last updated . Spec covers 1 endpoint from spothero.com.
Related APIs in TravelSee all →
spotangels.com API
Find real-time parking availability, pricing, and deals across supported cities by searching locations or addresses, with options to filter by parking type (hourly, monthly, free, or garages). Get detailed information about specific parking spots including rates and locations to make informed parking decisions on the go.
bestparking.com API
Search for available parking spots across cities, view detailed lot information including pricing and availability, use location autocomplete to quickly find parking near any destination, and see which cities are supported.
parclick.com API
Search for parking spaces across locations and airports, compare pricing and availability in real-time, and browse monthly subscription options with detailed facility information. Quickly find parking solutions by autocompleting locations and discovering available cities all in one place.
spotahome.com API
Search rental properties on Spotahome and retrieve detailed listing information including pricing, availability, amenities, pet policy, and landlord profiles. Filter by city, budget, dates, and more to explore mid- to long-term rental options across Spotahome's global inventory.
plugshare.com API
Search for EV charging stations worldwide by location and radius. Retrieve real-time availability, connector types, user reviews, and amenity details for any station. Filter by residential or commercial property type to find chargers at apartment complexes, parking facilities, and more.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
agencyspotter.com API
Search and discover agencies with detailed information including their locations, staff profiles, and client reviews. Find the right agency partner by browsing comprehensive directory listings and accessing insights into their team and reputation.
skiplagged.com API
Search for flights across airlines including hidden-city ticketing options, and look up airport information by name or code to find the best travel deals. Access Skiplagged's flight inventory and routing data to discover cheaper itineraries and alternative airport combinations.