Search All Products

Get All Products

Returns every parking product available to your API key at the chosen airport, with the live price for the customer's drop-off and collection dates. Products with no price for those dates are left out.

GET

Query parameters

ParameterTypeRequiredExampleDescription
keystringRequiredaop*************Your API key, issued by Quick Access Parking.
airportstringRequiredMANAirport code.
departuredd-mm-YYYY hh:mmRequired25-10-2026 12:00When the customer drops the car off (UK time).
arrivaldd-mm-YYYY hh:mmRequired30-10-2026 12:00When the customer collects the car. Must be after departure.
discount_codestringOptionalNEWYEAR2026Discount code, if the customer has one.
return_responsestringRequiredfullSend full to also receive the overview, procedures and terms for each product.

Request template

JSON
{
  "key": "string",
  "airport": "string",
  "departure": "dd-mm-YYYY hh:mm",
  "arrival": "dd-mm-YYYY hh:mm",
  "discount_code": "string",
  "return_response": "string"
}

Example request

cURL

Response

JSON · 200 OK
{
  "success": true,
  "response_code": 200,
  "message": "successful",
  "data": [
    {
      "id": 1,
      "name": "Quick Park and Ride",
      "image": "https://quickaccessparking.co.uk/api/uploads/products/quick-park-and-ride.webp",
      "price": 45.00,
      "price_before_discount": 50.00,
      "discount": 5.00,
      "cancellation": true,
      "airport_code": "MAN",
      "airport_name": "Manchester Airport",
      "terminals": ["T1", "T2", "T3"],
      "status": "active",
      "sku": "YOURCODE-QPR",
      "features": "<ul><li>24/7 security patrols</li><li>Free shuttle to all terminals</li></ul>",
      "type": "park_and_ride",
      "offer": "",
      "services": [],
      "show_extra_amount": 0,
      "show_levy_charge": 0,
      "admin_charges": 1.50,
      "cancellation_charges": 2.00,
      "sms_charges": 0,
      "average_rating": 0,
      "reviews": [],
      "overview": "<p>...</p>",
      "drop_procedure": "<p>...</p>",
      "return_procedure": "<p>...</p>",
      "terms_conditions": "<p>...</p>"
    }
  ]
}

Response fields

How the stay is priced. Each calendar day is charged, counting both the drop-off day and the collection day. For example, 25 to 30 October is 6 days. price is the full amount for the stay.

Errors