# Car rental prices in Orlando for a family trip

**Use case:** 

Loads a Kayak car rental search for Orlando, FL over a one-week window, capturing every supplier's offer for every vehicle class, including SUVs and minivans, up to 50 rows. Each row includes agency, car type, day/total price, and mileage policy — filter car_type_groups for "SUV" to isolate family vehicles.

## Input

```json
{
  "startUrl": "https://www.kayak.com/cars/Orlando,FL/2026-12-19/2026-12-26?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`).
