# Eklo Hotels Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/eklohotels/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/eklohotels-search | ## Description Search Eklo Hotels availability across France in real time and receive nightly rates, room types, occupancy, amenities, and cancellation policies from eklohotels.com as structured JSON. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/eklohotels/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Eklo Bordeaux, 2 adults, 2 nights ```json { "stay": { "rooms": 1, "adults": 2, "nights": 2, "check_in": "2026-06-12", "children": 0, "currency": "EUR", "check_out": "2026-06-14" }, "hotel": { "url": "https://www.eklohotels.com/eklo-bordeaux", "city": "Bordeaux", "name": "Eklo Bordeaux", "slug": "eklo-bordeaux", "address": "26 Quai de Brazza, 33100 Bordeaux, France", "guest_rating": 8.6 }, "rooms": [ { "name": "The Compact", "amenities": [ "private-bathroom", "tv", "air-conditioning", "desk" ], "available": true, "bed_setup": "Double bed", "room_type": "compact", "surface_m2": 11, "booking_url": "https://booking.eklohotels.com/booking/eklo-bordeaux?checkin=2026-06-12&checkout=2026-06-14&adults=2&rooms=1&type=compact", "price_total": 168, "cancellation": "Free cancellation until 6PM the day before arrival", "max_occupancy": 2, "price_breakdown": [ { "date": "2026-06-12", "price": 84 }, { "date": "2026-06-13", "price": 84 } ], "price_per_night": 84 }, { "name": "The Classic", "amenities": [ "private-bathroom", "tv", "air-conditioning", "desk", "wifi" ], "available": true, "bed_setup": "Double bed", "room_type": "classic", "surface_m2": 13, "booking_url": "https://booking.eklohotels.com/booking/eklo-bordeaux?checkin=2026-06-12&checkout=2026-06-14&adults=2&rooms=1&type=classic", "price_total": 198, "cancellation": "Free cancellation until 6PM the day before arrival", "max_occupancy": 2, "price_breakdown": [ { "date": "2026-06-12", "price": 99 }, { "date": "2026-06-13", "price": 99 } ], "price_per_night": 99 }, { "name": "The Family", "amenities": [ "private-bathroom", "tv", "air-conditioning" ], "available": true, "bed_setup": "Double bed + cabin beds", "room_type": "family", "surface_m2": 22, "booking_url": "https://booking.eklohotels.com/booking/eklo-bordeaux?checkin=2026-06-12&checkout=2026-06-14&adults=2&rooms=1&type=family", "price_total": 286, "cancellation": "Non-refundable", "max_occupancy": 6, "price_breakdown": [ { "date": "2026-06-12", "price": 143 }, { "date": "2026-06-13", "price": 143 } ], "price_per_night": 143 }, { "name": "Women's Dormitory", "amenities": [ "private-bathroom", "air-conditioning" ], "available": true, "bed_setup": "Cabin beds", "room_type": "women-dormitory", "surface_m2": null, "booking_url": "https://booking.eklohotels.com/booking/eklo-bordeaux?checkin=2026-06-12&checkout=2026-06-14&adults=1&rooms=1&type=women-dormitory", "price_total": 58, "cancellation": "Non-refundable", "max_occupancy": 1, "price_breakdown": [ { "date": "2026-06-12", "price": 29 }, { "date": "2026-06-13", "price": 29 } ], "price_per_night": 29 } ], "search_parameters": { "hotel": "eklo-bordeaux", "rooms": 1, "adults": 2, "check_in": "2026-06-12", "children": 0, "check_out": "2026-06-14" } } ``` ## Documentation ## Overview Eklo Hotels operates 10 eco-friendly hybrid properties in Nantes, Paris Expo, Roissy, Marne-la-Vallée, Montpellier, Bordeaux, Toulouse, Lyon, Lille, and Clermont-Ferrand. The booking widget sits behind anti-bot protection and a live availability backend. Piloterr calls the booking layer in real time for the dates you ask about and returns rooms, per-night rates, taxes-included totals, amenities, and cancellation policies as structured JSON. ## Quickstart ``` GET https://api.piloterr.com/v2/eklohotels/search?hotel=eklo-bordeaux&check_in=2026-06-12&check_out=2026-06-14&adults=2 ``` ## Main use cases - Track Eklo Hotels nightly rates across all 10 properties to feed a hotel price-comparison page that ranks hybrid hotels in French cities - Run a live availability widget on a corporate travel intranet that surfaces Compact and Classic rooms for business trips to Lyon, Bordeaux, or Paris Expo - Build a dormitory-vs-private-room benchmark for budget travel media, comparing Solo, Compact, and Women's Dormitory rates across French cities - Monitor weekend price elasticity at Eklo Roissy and Paris Expo around major events and trigger alerts on sudden rate drops - Refresh a family-travel meta-search index with Eklo Family room availability and per-night pricing for school holiday windows in France