The playground

Try any of 1042 endpoints — live.

Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.

Playground demo key · api.reefapi.com
post/car-rental/v1/cars/search2 credits

aggregated rental-car offers for a location + dates → offers[]{vehicle(name/category/ACRISS/transmission/seats/bags/fuel), price{amount,currency}, supplier(name/rating/pickup_address/coords), pickup.type, mileage, fuel_policy, free_cancellation, book_url} + facets. Location via `query` OR explicit place_id/city_id/country_id. One-way via drop_query. Dates pickup_date/dropoff_date (YYYY-MM-DD).

Working example
Parameters

Pickup location to resolve (city / airport name). Provide this OR an explicit place_id + city_id + country_id.

Explicit DiscoverCars place id (from cars/autocomplete). Use together with city_id + country_id to skip resolution.

Explicit DiscoverCars city id (pairs with place_id + country_id).

Explicit DiscoverCars country id (pairs with place_id + city_id).

Pickup date (YYYY-MM-DD). Defaults to ~30 days out if omitted.

Drop-off date (YYYY-MM-DD). Defaults to ~30 days out if omitted.

Pickup time of day (HH:MM, 24h). Default 10:00.

Drop-off time of day (HH:MM, 24h). Default 10:00.

ISO-4217 currency for prices (e.g. EUR, USD, GBP). Default EUR.

Driver's country of residence (ISO-2, e.g. US, GB) — affects pricing/availability. Default US.

Driver age (affects young/senior-driver fees). Default 35. (18–99)

Different drop-off location (city/airport name) for a one-way rental. Omit for same-location return.

Explicit drop-off place id (one-way; pairs with drop_city_id).

Explicit drop-off city id (one-way).

Explicit drop-off country id (one-way).

Cap the number of offers returned. Omit for all. (1–)

Include aggregation facets (supplier/category/price buckets) in the response. Default true.

When resolving `query`, prefer the airport location over downtown. Default true.

request preview
curl -X POST https://api.reefapi.com/car-rental/v1/cars/search \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"query":"Madrid Airport","currency":"EUR","pickup_date":"2026-07-28","dropoff_date":"2026-07-31","max_offers":"40"}'

Hit Send to run this endpoint live.