# Car rental prices in Cancún, Mexico on Kayak

**Use case:** 

Loads a Kayak car rental search for Cancún, Mexico, ranked by Kayak's best-match order, and captures every supplier's price for every vehicle class, up to 50 rows. Each row includes agency, car type, mileage limit, fuel policy, and cancellation terms. Change the dates in startUrl for your own travel window.

## Input

```json
{
  "startUrl": "https://www.kayak.com/cars/Cancun,MX/2026-12-14/2026-12-21?sort=rank_a",
  "results_wanted": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "car_type": {
    "label": "Car Type",
    "format": "text"
  },
  "agency_name": {
    "label": "Agency",
    "format": "text"
  },
  "provider_name": {
    "label": "Provider",
    "format": "text"
  },
  "day_price": {
    "label": "Day Price",
    "format": "object"
  },
  "total_price": {
    "label": "Total Price",
    "format": "object"
  },
  "payment_type": {
    "label": "Payment",
    "format": "text"
  },
  "mileage_policy_type": {
    "label": "Mileage Policy",
    "format": "text"
  },
  "pickup_location": {
    "label": "Pickup Location",
    "format": "text"
  },
  "pickup_date": {
    "label": "Pickup Date",
    "format": "text"
  },
  "return_date": {
    "label": "Return Date",
    "format": "text"
  },
  "booking_url": {
    "label": "Booking URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Kayak Car Rental Scraper](https://apify.com/parsebird/kayak-car-rental-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/kayak-car-rental-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/kayak-car-rental-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
