# Priceline Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/priceline/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/priceline-search | ## Description Access real-time hotel details from Priceline for travel insights, market analysis, and dynamic pricing. ## 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/priceline/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Example ```json { "hotels": [ { "name": "Hotel ABC", "rating": 4.5, "address": "123 Main St, Anytown, USA", "amenities": [ "Free WiFi", "Pool", "Gym" ], "pricePerNight": 150 }, { "name": "The Luxury Inn", "rating": 5, "address": "456 Elm St, Anytown, USA", "amenities": [ "Free Parking", "Spa", "Restaurant", "Bar", "Pet Friendly" ], "pricePerNight": 250 }, { "name": "Budget Stay", "rating": 3, "address": "789 Oak St, Anytown, USA", "amenities": [ "Free Breakfast", "24/7 Front Desk", "Free WiFi" ], "pricePerNight": 75 } ], "searchParams": { "rooms": 1, "adults": 2, "checkIn": "2024-05-15", "checkOut": "2024-05-22", "location": "Anytown" }, "totalResults": 3 } ``` ## Documentation ## Overview Access real-time hotel details from Priceline for travel insights, market analysis, and dynamic pricing. ## Quickstart ``` GET https://api.piloterr.com/v2/priceline/search?query=example ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Search query or target identifier | ## Main use cases - Integrate Priceline Search data into enrichment, analytics, and monitoring pipelines - Automate large-scale extraction from Priceline without maintaining scrapers - Power internal dashboards and workflow automations with live Priceline data