Discover/SpotAngels API
live

SpotAngels APIspotangels.com

Search parking spots, garages, monthly rates, and active deals near any location via the SpotAngels API. 9 endpoints covering hourly, monthly, and free parking.

Endpoint health
verified 7d ago
get_hourly_parking_near_location
get_monthly_parking_near_location
get_free_parking_near_location
get_garage_deals
get_supported_cities
9/9 passing latest checkself-healing
Endpoints
9
Updated
21d ago

What is the SpotAngels API?

The SpotAngels API exposes 9 endpoints for querying parking availability, pricing, and deals across supported cities. Use search_parking_by_location to find nearby garages with hourly or monthly rates given a lat/lng pair, or search_parking_by_address to geocode a text query first. Responses include structured spot objects with pricing, walking distance, deal metadata, and GeoJSON geometries for map rendering.

Try it
If true, search for monthly parking options instead of hourly
End time in ISO 8601 format (e.g., 2026-05-15T12:00:00.000Z). Defaults to 2 hours from now.
Latitude of the location
Start time in ISO 8601 format (e.g., 2026-05-15T10:00:00.000Z). Defaults to now.
Longitude of the location
api.parse.bot/scraper/30085b55-bdc4-498c-b8e3-a37f3ee94129/<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/30085b55-bdc4-498c-b8e3-a37f3ee94129/search_parking_by_location?latitude=40.7580&longitude=-73.9855' \
  -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 spotangels-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.

"""SpotAngels Parking API — find parking spots, deals, and monthly options near any location."""
from parse_apis.spotangels_parking_api import SpotAngels, SpotNotFound

client = SpotAngels()

# Geocode an address to coordinates for use in parking searches.
location = client.geocodedlocations.search(query="Times Square, New York", limit=1).first()
print(f"Geocoded: {location.display_name} ({location.lat}, {location.lon})")

# Search for hourly parking near Times Square (uses coordinates).
for spot in client.spotsummaries.search(latitude=40.758, longitude=-73.9855, limit=3):
    print(f"  {spot.garage_name}: {spot.price_fmt} — {spot.walking_time_fmt}")

# Drill into the first result for full detail (calendar, pictures, reviews).
first = client.spotsummaries.search(latitude=40.758, longitude=-73.9855, limit=1).first()
if first:
    detail = first.details()
    print(f"Detail for {detail.garage_name}: bookable={detail.bookable}, spots={detail.spot_count}")

# Fetch spot details directly by ID — catch not-found errors.
try:
    spot_detail = client.spots.get_spot(id="2151506")
    print(f"Direct fetch: {spot_detail.garage_name} at {spot_detail.address}")
except SpotNotFound as exc:
    print(f"Spot not found: {exc}")

# List supported cities.
for city in client.cities.list(limit=5):
    print(f"  City: {city.name} (slug={city.slug})")

print("Exercised: geocodedlocations.search / spotsummaries.search / details / spots.get_spot / cities.list")
All endpoints · 9 totalmissing one? ·

Search for parking spots near a given lat/lng coordinate. Returns bookable garages and parking options with pricing, walking time, and deal information. Defaults to a 2-hour window starting now if times are not specified.

Input
ParamTypeDescription
monthlybooleanIf true, search for monthly parking options instead of hourly
to_timestringEnd time in ISO 8601 format (e.g., 2026-05-15T12:00:00.000Z). Defaults to 2 hours from now.
latituderequirednumberLatitude of the location
from_timestringStart time in ISO 8601 format (e.g., 2026-05-15T10:00:00.000Z). Defaults to now.
longituderequirednumberLongitude of the location
Response
{
  "type": "object",
  "fields": {
    "address": "string resolved address of the search location",
    "geojson": "GeoJSON FeatureCollection of parking spot locations",
    "results": "array of parking spot objects with id, type, address, price, distance, deals",
    "currency": "object with currency layout format string"
  }
}

About the SpotAngels API

Searching for Parking

The two primary search endpoints — search_parking_by_location and search_parking_by_address — accept either a lat/lng coordinate pair or a free-text address query, respectively. Both return a results array of parking spot objects containing id, type, address, price, distance, and deals, alongside a GeoJSON FeatureCollection for mapping and a currency object describing the local format. Time windows are specified with from_time and to_time in ISO 8601 format; both default to a 2-hour window starting at the moment of the request. Setting monthly=true switches the search to monthly-rate options.

Filtered Endpoints by Parking Type

Three convenience endpoints narrow results to specific parking types without requiring client-side filtering. get_hourly_parking_near_location and get_monthly_parking_near_location accept only latitude and longitude and return spot objects typed to their respective billing cadence — monthly results include additional fields like rate_id, monthly_type, and down_payment. get_free_parking_near_location returns a total count alongside the filtered results array, and returns an empty array in areas where no free spots are indexed. get_garage_deals similarly returns a total and results scoped to spots carrying active deal or deals metadata.

Spot Detail and Geocoding

get_parking_spot_details accepts a numeric spot_id obtainable from any search response and returns four distinct data groups: a status object with garage name, operator, coordinates, and deals; a calendar array of opening-hour entries; a pictures array with image URLs and metadata; and a crowdsource object with accuracy status and park count. When supplying time parameters to this endpoint, from_time and to_time must be provided together — passing from_time alone will cause an error. The standalone geocode_address endpoint resolves a text query to up to 5 ranked candidates, each with lat, lon, and display_name fields.

Coverage and City Support

get_supported_cities takes no inputs and returns the full list of cities where SpotAngels has parking data, each with a name and slug. Callers should check this list before querying coordinates to confirm coverage for a given metro area.

Reliability & maintenanceVerified

The SpotAngels API is a managed, monitored endpoint for spotangels.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when spotangels.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 spotangels.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
7d ago
Latest check
9/9 endpoints 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
  • Display a map of nearby bookable garages with pricing overlays using GeoJSON output from search_parking_by_location
  • Surface active parking deals in a city guide app by querying get_garage_deals for a given lat/lng
  • Build a commuter dashboard that compares monthly parking rates and down payment requirements near an office address
  • Show free street parking availability for budget-conscious drivers using get_free_parking_near_location
  • Populate a parking detail page with photos, opening hours, and crowd-sourced accuracy data from get_parking_spot_details
  • Resolve user-typed addresses to coordinates before parking search using geocode_address with up to 5 ranked candidates
  • Gate parking searches to supported regions by checking get_supported_cities before executing location queries
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 SpotAngels have an official developer API?+
SpotAngels does not publish a documented public developer API. The data accessible through this Parse API is not available through an official third-party integration layer from SpotAngels.
What does `get_parking_spot_details` return that the search endpoints don't?+
get_parking_spot_details returns four structured response groups not present in search results: a calendar array with opening-hour schedules, a pictures array with image URLs, a crowdsource object with accuracy status and park count, and a richer status object that includes garage_name and operator fields. Search endpoints only return summary pricing, distance, and deal flags.
Is there a known quirk when calling `get_parking_spot_details` with time parameters?+
Yes. If you supply from_time, you must also supply to_time in the same request. Sending from_time without to_time will produce an upstream error. to_time can be sent alone without issue.
Does the API support real-time availability or reservation booking?+
The API returns pricing, deal status, and calendar-based hours, but does not expose real-time occupancy counts or booking/reservation flows. It covers spot discovery and pricing data only. You can fork this API on Parse and revise it to add any booking-adjacent endpoints if that data becomes accessible.
Does the API cover parking outside the US?+
Coverage is limited to cities indexed by SpotAngels, which are primarily US metros. The get_supported_cities endpoint returns the definitive list of available city slugs. If a city you need is absent, you can fork this API on Parse and revise it to extend coverage as new cities are added to SpotAngels.
Page content last updated . Spec covers 9 endpoints from spotangels.com.
Related APIs in Maps GeoSee all →
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.
telgani.com API
Search for rental cars across multiple cities and filter by brand or type to find the perfect vehicle. Discover special offers, compare pricing, and explore subscription plans on Telgani.
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.
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.
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.
spareroom.co.uk API
Browse SpareRoom UK flatshare listings by city with prices, locations, images, and listing links, and fetch a curated list of top flatsharing cities.
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.