Discover/parclick.com API
live

parclick.com APIparclick.com

Access Parclick parking data via API. Search facilities by coordinates, compare prices, get detailed amenities and reviews for parking across European cities.

Endpoints
7
Updated
3mo ago
Try it
Maximum number of results per page.
Optional search label (city name, address). Used as display context; coordinates determine
Search radius in meters.
Latitude of the search center point.
Longitude of the search center point.
Vehicle type ID (1=car).
Arrival date and time in format YYYY-MM-DD HH:MM.
Departure date and time in format YYYY-MM-DD HH:MM.
api.parse.bot/scraper/c57e45a6-ec0a-43e6-be16-a8ac8152a897/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c57e45a6-ec0a-43e6-be16-a8ac8152a897/search_parking?limit=5&latitude=41.385&longitude=2.176&arrival_datetime=2026-05-20+10%3A00&departure_datetime=2026-05-20+18%3A00' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Search for available parking facilities based on geographic coordinates and time window. Returns paginated results with pricing information for each facility.

Input
ParamTypeDescription
limitintegerMaximum number of results per page.
querystringOptional search label (city name, address). Used as display context; coordinates determine actual search location.
radiusintegerSearch radius in meters.
latituderequirednumberLatitude of the search center point.
longituderequirednumberLongitude of the search center point.
vehicle_typeintegerVehicle type ID (1=car).
arrival_datetimerequiredstringArrival date and time in format YYYY-MM-DD HH:MM.
departure_datetimerequiredstringDeparture date and time in format YYYY-MM-DD HH:MM.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number (integer)",
    "items": "array of parking facility objects with id, name, slug, address, city, passes (pricing), coordinates, and amenities",
    "limit": "results per page (integer)",
    "pages": "total number of pages (integer)",
    "total": "total number of matching facilities (integer)"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": 238,
          "city": "Barcelona",
          "name": "SABA Catedral",
          "slug": "saba_catedral",
          "passes": [
            {
              "type": "daily",
              "price": 17.99,
              "duration": 24,
              "price_with_administration_fee": 20.82
            }
          ],
          "address": "Avenida de la Catedral, 8",
          "latitude": 41.385156710893,
          "longitude": 2.1765397664948
        }
      ],
      "limit": 5,
      "pages": 58,
      "total": 294
    },
    "status": "success"
  }
}

About the parclick.com API

The Parclick API exposes 7 endpoints covering parking search, airport parking, monthly subscriptions, facility details, and city discovery across European locations. Pass latitude/longitude coordinates and a time window to search_parking and get back paginated results with facility names, addresses, pricing passes, and amenities. Separate endpoints handle airport-specific lots with terminal and shuttle data, and long-term monthly subscription options.

Search and Discovery

The core search_parking endpoint accepts required latitude, longitude, arrival_datetime, and departure_datetime parameters and returns paginated facility objects — each with an id, name, slug, address, city, coordinates, passes (pricing), and amenities. The optional radius parameter controls how far from the center point to look, and limit controls page size. A total and pages field in the response lets you paginate through large result sets. search_airport_parking mirrors this interface but returns airport-specific facilities that include terminal and shuttle information alongside standard pricing.

Facility Details and Pricing

get_parking_details takes a facility slug (returned by the search endpoints) and returns the full record: an HTML description, reviews object with total_score and total_reviews, passes, precise coordinates, and access points. To query time-specific pricing, get_parking_products takes a parking_id plus an arrival/departure window and returns pass options broken into onepass, multipass, and netpass arrays, plus event_passes and a subscriptions object with monthly, labor, and nightly keys — useful when the same facility has different pricing structures depending on the booking type.

Monthly Subscriptions

search_monthly_subscription uses the same coordinate-and-datetime interface as regular search but filters specifically for facilities that offer long-term parking passes. This is distinct from the subscriptions field in get_parking_products, which gives per-facility subscription options once you already have a parking_id.

Location Utilities

autocomplete_location matches city names from a partial string (e.g. 'Barc' returns Barcelona and variants), returning each city's id, name, slug, latitude, longitude, and country_name. get_cities returns the full set of cities where Parclick operates, including timezone, locale slugs, review metadata, and media assets for each city — useful for building city-picker UIs or understanding coverage before running coordinate-based searches.

Common use cases
  • Find cheapest parking near a given address by comparing passes pricing across search_parking results.
  • Build an airport parking comparison tool using search_airport_parking terminal and shuttle fields.
  • Surface monthly parking options for commuters using search_monthly_subscription with a multi-week date window.
  • Display facility reviews and star ratings by consuming total_score and total_reviews from get_parking_details.
  • Power a city-picker autocomplete with autocomplete_location for Parclick-covered cities.
  • Enumerate all covered European cities and their coordinates using get_cities to seed a mapping interface.
  • Distinguish event-day pricing from regular rates using event_passes in get_parking_products.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Parclick have an official developer API?+
Parclick does not publish a documented public developer API or API marketplace listing as of now.
What does `get_parking_products` return that `search_parking` does not?+
search_parking includes basic passes pricing in each facility object. get_parking_products gives a full breakdown keyed by pass type — onepass, multipass, netpass, event_passes, and subscription categories (monthly, labor, nightly) — for a specific parking_id and time window. Use it when you need granular pricing tiers rather than the summary included in search results.
Does the API cover parking outside Europe?+
Coverage reflects Parclick's operational markets, which are concentrated in European cities. Non-European locations are not currently represented in get_cities or search results. You can fork the API on Parse and revise it to point at additional sources or geographies if you need broader coverage.
Can I retrieve a list of reviews for a specific facility?+
get_parking_details returns a reviews object containing a reviews array alongside total_score and total_reviews. There is no standalone endpoint for filtering or paginating reviews independently. You can fork the API on Parse and revise it to add a dedicated reviews endpoint if that level of control is needed.
How does pagination work across search endpoints?+
All three search endpoints (search_parking, search_airport_parking, search_monthly_subscription) return page, pages, limit, and total fields. Increment the page parameter in successive requests to walk through results. get_cities fetches all pages internally and returns a single combined items array with a total count.
Page content last updated . Spec covers 7 endpoints from parclick.com.
Related APIs in TravelSee all →
opentable.ca API
Search and discover restaurants on OpenTable, view detailed information like menus and reviews, and check real-time dining availability across metro areas. Find top-rated restaurants in your location and instantly see which tables are open for your preferred date and time.
fandango.com API
Search for movies and retrieve nearby theater listings with showtimes by ZIP code and date, plus showtimes for a specific movie at nearby theaters.
data.lime.bike API
Access real-time availability data for Lime bikes and scooters, including station locations, vehicle status, system alerts, and geofencing zones across multiple cities. Monitor micromobility inventory and service information to find nearby vehicles or plan your trips effectively.
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.
reservation.pc.gc.ca API
Access real-time campground availability and reservation data from the Parks Canada booking system. Search locations, retrieve available campsites and cabins, filter by equipment type, and review operating date schedules across the national park network. Includes detailed resource metadata and map-based availability overviews.
bahn.com API
Search German train schedules and stations, find connections between destinations, and compare ticket prices across Deutsche Bahn routes. Get real-time station information and transit association details to plan your train journey efficiently.
united.com API
Search United Airlines flights, check real-time flight status, and view detailed seat maps to plan your perfect trip. Compare fare options and use airport autocomplete to quickly find your departure and arrival cities.
thetrainline.com API
Search UK train stations and find the cheapest fares across date ranges, then generate direct booking links to complete your purchase on Trainline.com. Get real-time journey information to compare prices and book your tickets in seconds.