indiecampers.com APIindiecampers.com ↗
Access Indie Campers relocation deals across Europe and North America. Filter by pickup/dropoff location, trip duration, and dates via 2 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/84c1036c-de9f-4184-ae75-f8005e113504/get_locations?group=europe' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all available pick-up and drop-off locations grouped by region, with total deal counts and minimum prices per location.
| Param | Type | Description |
|---|---|---|
| group | string | Filter by region group permalink (e.g. 'europe', 'north-america'). If omitted, returns all regions. |
{
"type": "object",
"fields": {
"pick_up_locations": "object mapping region name to array of location objects with permalink, city, country_code, total_deals, min_price",
"drop_off_locations": "object mapping region name to array of location objects with permalink, city, country_code, total_deals, min_price"
},
"sample": {
"data": {
"pick_up_locations": {
"europe": [
{
"id": null,
"city": "berlin-offers",
"min_price": 11.99,
"permalink": "berlin-offers",
"total_deals": 93,
"country_code": "DE"
},
{
"id": null,
"city": "munich-offers",
"min_price": 9.99,
"permalink": "munich-offers",
"total_deals": 46,
"country_code": "DE"
}
]
},
"drop_off_locations": {
"europe": [
{
"id": null,
"city": "oslo",
"min_price": 9.99,
"permalink": "oslo",
"total_deals": 20,
"country_code": "NO"
},
{
"id": null,
"city": "milan-malpensa",
"min_price": 9.99,
"permalink": "milan-malpensa",
"total_deals": 18,
"country_code": "IT"
}
]
}
},
"status": "success"
}
}About the indiecampers.com API
The Indie Campers API exposes 2 endpoints that return campervan relocation deals and rental locations from indiecampers.com. The search_deals endpoint returns deal objects with fields including pick_up_location, drop_off_location, van_category, passengers, beds, min_price, and max_max_nights, with support for filtering by date range, trip duration, and geographic region. The get_locations endpoint maps regions to available pickup and dropoff cities with deal counts and minimum prices.
Endpoints Overview
The API covers two endpoints. get_locations returns all available pickup and dropoff locations grouped by region — such as europe or north-america — including each location's permalink, city, country_code, total_deals, and min_price. The optional group parameter narrows results to a single region. Location permalinks returned here are the canonical values to pass into search_deals.
Searching and Filtering Deals
search_deals is the primary endpoint. It accepts up to seven filter parameters: pick_up_location and drop_off_location (using permalinks from get_locations), date_from and date_to in ISO YYYY-MM-DD format, max_days to exclude deals with trip durations above a threshold, group for regional scoping, and page for manual pagination. When page is omitted, the endpoint automatically paginates through all results; the limit parameter caps total results returned in this mode. Each deal object in the response includes van category, passenger count, bed count, minimum price, and maximum available nights.
Response Structure
The search_deals response includes both filtered and unfiltered deal counts — total_filtered and total_unfiltered — letting you measure how much your filters narrow the result set. It also returns available_pickup_locations and available_dropoff_locations arrays within the current result set, useful for building dynamic filter UIs without a separate get_locations call. Deal pricing is expressed as min_price, representing the lowest rate available for that route and van combination.
- Build a deal-alert tool that monitors min_price drops on specific Europe routes by polling search_deals with pick_up_location and drop_off_location filters
- Generate a relocation deal map by plotting pickup and dropoff cities from get_locations using country_code and city fields
- Find last-minute campervan deals by filtering search_deals with date_from set to the current date and max_days set to a short window
- Compare van categories and passenger capacity across available deals on a given route using van_category, passengers, and beds fields
- Build a route popularity ranking by aggregating total_deals counts from get_locations across all pickup cities in a region
- Filter North America relocation deals separately from Europe deals using the group parameter in both endpoints
- Identify budget-friendly routes by sorting deals returned from search_deals by min_price across multiple drop_off_location values
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.