# Outdoorsy Scraper (`rigelbytes/outdoorsy-scraper`) Actor

Extract listings from  outdoorsy.com from multiple search URLs. Get name, listing\_urls, owner\_url, vehicle\_year, vehicle\_year, and more — perfect for price monitoring, inventory tracking, or market research.

- **URL**: https://apify.com/rigelbytes/outdoorsy-scraper.md
- **Developed by:** [Rigel Bytes](https://apify.com/rigelbytes) (community)
- **Categories:** Lead generation, Travel, Integrations
- **Stats:** 4 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Outdoorsy Scraper

**Extract listings** from  **outdoorsy.com** from multiple search URLs. Get name, listing\_urls, owner\_url, vehicle\_year, vehicle\_year, and more — perfect for price monitoring, inventory tracking, or market research.

## For just **$10/1000 listings**, you can scrape data with ease.

### Features

- Extract listing data from Outdoorsy search results
- Handle multiple search URLs in one run
  - `name`
  - `primary_image_url`
  - `listing_url`
  - `owner_url`
  - `vehicle_make`
  - `vehicle_model`
  - `vehicle_year`
  - `display_vehicle_type`
- Location-based scraping
- Supports proxies for anonymity and bypassing restrictions
- Fast and reliable scraping with retry mechanisms

### Pricing

- **$10 per 1,000 listings scraped**
- No hidden fees or subscription costs

***

### Input

The Actor accepts the following input:

- **searchUrls** (array, required): One or more Outdoorsy search URLs
- **proxyConfiguration** (object, optional): Proxy settings for request rotation

#### Example input

```json
{
  "searchUrls": [
    "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

***

### Why Choose This Scraper?

- **Focused**: Built specifically for Outdoorsy search URLs
- **Fast**: Uses direct API requests instead of browser automation
- **Reliable**: Retries failed requests and keeps the run moving
- **Simple**: Accepts multiple URLs and pushes data as it is found

#### Running via Apify Console

Open the Actor, paste your Outdoorsy search URLs, and run it.

#### Running via API

You can trigger the Actor using the Apify API with the input body.

### API Request Example (Python)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_API_TOKEN>")

run_input = {
    "searchUrls": [
        "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
    ]
}

run = client.actor("rigelbytes/outdoorsy-scraper").call(run_input=run_input)
```

### JavaScript

```javascript
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

const input = {
    searchUrls: [
        'https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0'
    ]
};

(async () => {
    const run = await client.actor('rigelbytes/outdoorsy-scraper').call(input);
})();
```

### Running with cURL

```shell
API_TOKEN=<YOUR_API_TOKEN>

cat > input.json <<'EOF'
{
  "searchUrls": [
    "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
  ]
}
EOF

curl "https://api.apify.com/v2/acts/rigelbytes/outdoorsy-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'
```

- ## Output
  ![Output](https://github.com/faizanalii/apify-images/blob/main/outdoorsy-scraper.gif?raw=true)

### [![View Detailed Data](https://img.shields.io/badge/Detailed-Data-green?style=for-the-badge)](#detailed-data)

### 🚀 Other Tools by Rigel Bytes

[![Airbnb Images Downloader](https://img.shields.io/badge/Airbnb_Images_Downloader-blue?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-images-downloader)\
A focused Airbnb image scraper that extracts all photos from an Airbnb listing page and packages the listing's image files into a compressed archive. The Act...

[![Zillow Scraper](https://img.shields.io/badge/Zillow_Scraper-green?style=for-the-badge)](https://apify.com/rigelbytes/zillow-scraper)\
A Zillow-focused web scraper that extracts structured property listing data for real estate analysis and monitoring. The Actor crawls Zillow listings to coll...

[![Zillow Detail Scraper](https://img.shields.io/badge/Zillow_Detail_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/zillow-detail-scraper)\
Zillow scraper with customizable proxy support. Extract comprehensive property data, including pricing, images, and location details, using your proxies for better control and efficiency. Check the recommended proxy providers below.

[![Daraz](https://img.shields.io/badge/Daraz-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/daraz)\
A web scraping Actor that extracts product listings and detailed product and seller data from Daraz.pk (Pakistan ecommerce marketplace) for monitoring and an...

[![Airbnb Listing](https://img.shields.io/badge/Airbnb_Listing-red?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-listing)\
A web-scraping Actor that bulk-extracts structured Airbnb listing data from listing pages: it retrieves listing metadata, descriptive content, property featu...

[![Google Maps Scraper](https://img.shields.io/badge/Google_Maps_Scraper-yellow?style=for-the-badge)](https://apify.com/rigelbytes/google-maps-scraper)\
A Google Maps scraping Actor that extracts structured business profiles and local place intelligence at scale: it crawls Google Maps listings to collect busi...

[![Airbnb Availability Calendar](https://img.shields.io/badge/Airbnb_Availability_Calendar-purple?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-availability-calendar)\
Exports Airbnb listing availability calendars by scraping listing pages and producing structured, per-date calendar data. The Actor extracts date entries and...

[![Instagram Profile Scraper](https://img.shields.io/badge/Instagram_Profile_Scraper-pink?style=for-the-badge)](https://apify.com/rigelbytes/instagram-profile-scraper)\
A web-scraping Actor that extracts detailed Instagram profile and media metadata from profile pages: it retrieves profile-level metrics (follower/following c...

[![Land.com Scraper](https://img.shields.io/badge/Land.Com_Scraper-cyan?style=for-the-badge)](https://apify.com/rigelbytes/landdotcom-scraper)\
A Land.com-focused web scraper that crawls Land.com property listings and extracts structured real estate data for specified geographic areas and listing typ...

[![Airbnb Reviews](https://img.shields.io/badge/Airbnb_Reviews-success?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-reviews)\
A web-scraping Actor that extracts unlimited reviews from Airbnb listings: it crawls listing review pages and produces structured review records containing r...

[![FurnishedFinder](https://img.shields.io/badge/Furnishedfinder-important?style=for-the-badge)](https://apify.com/rigelbytes/furnishedfinder)\
A web-scraping Actor designed to extract large-scale furnished rental data from Furnished Finder: it crawls listing pages to collect listing metadata (proper...

[![Immobilienscout24](https://img.shields.io/badge/Immobilienscout24-critical?style=for-the-badge)](https://apify.com/rigelbytes/immobilienscout24)\
A scraper for immobilienscout24.de that extracts large-scale real estate listing data and contact information, optimized for bulk property data collection, i...

[![Airbnb Listing Urls](https://img.shields.io/badge/Airbnb_Listing_Urls-informational?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-listing-urls)\
A web scraper that extracts unlimited Airbnb listings from search queries and returns structured listing metadata for analysis. The Actor crawls Airbnb searc...

[![Instagram Engagement Tool](https://img.shields.io/badge/Instagram_Engagement_Tool-9cf?style=for-the-badge)](https://apify.com/rigelbytes/instagram-engagement-tool)\
Analyzes public Instagram profiles by scraping recent posts and profile metadata to compute engagement metrics for images and videos. The Actor extracts prof...

[![Instagram Post Scraper](https://img.shields.io/badge/Instagram_Post_Scraper-blue?style=for-the-badge)](https://apify.com/rigelbytes/instagram-post-scraper)\
An Instagram scraping Actor that extracts every post from Instagram profiles and produces structured post-level metadata and media assets for social media an...

[![BBB Scraper](https://img.shields.io/badge/Bbb_Scraper-green?style=for-the-badge)](https://apify.com/rigelbytes/bbb-scraper)\
A web-scraping Actor that extracts detailed business listings from the Better Business Bureau (BBB). It crawls BBB listings and produces structured business ...

[![Linkedin Company Scraper](https://img.shields.io/badge/Linkedin_Company_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/linkedin-company-scraper)\
A LinkedIn Company Scraper that extracts structured company profile data from LinkedIn company pages for lead generation and competitive intelligence. The Ac...

[![linkedin-company-details](https://img.shields.io/badge/Linkedin_Company_Details-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/linkedin-company-details)\
A LinkedIn Company Scraper for extracting comprehensive company profiles and social content from LinkedIn: it scrapes and returns structured company profile ...

[![Instagram Reel Scraper](https://img.shields.io/badge/Instagram_Reel_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/instagram-reel-scraper)\
A web-scraping Actor that extracts all Instagram Reels from public profiles and produces structured reel-level metadata for content analysis, research, and m...

[![Rottentomatoes Reviews Scraper](https://img.shields.io/badge/Rottentomatoes_Reviews_Scraper-yellow?style=for-the-badge)](https://apify.com/rigelbytes/rottentomatoes-reviews-scraper)\
A web-scraping Apify Actor that extracts user and critic reviews from Rotten Tomatoes pages, producing structured review records for analysis. It crawls unli...

[![Extract Furnished Finder Hosts](https://img.shields.io/badge/Extract_Furnished_Finder_Hosts-purple?style=for-the-badge)](https://apify.com/rigelbytes/furnished-finder-hosts)\
Scrapes Furnished Finder listings and extracts structured listing and host profile data for furnished rentals, including listing titles, property types, geol...

[![Trustpilot Reviews Scraper](https://img.shields.io/badge/Trustpilot_Reviews_Scraper-pink?style=for-the-badge)](https://apify.com/rigelbytes/trustpilot-reviews)\
A Trustpilot review scraper that collects structured review records and full reviewer profile data at scale. It extracts review content (titles and body text...

[![Furnished Finder Fast](https://img.shields.io/badge/Furnished_Finder_Fast-cyan?style=for-the-badge)](https://apify.com/rigelbytes/furnished-finder-fast)\
An Apify Actor for scraping Furnished Finder rental listings and optional host profiles, extracting structured listing data such as photos, textual descripti...

[![Zillow Agents](https://img.shields.io/badge/Zillow_Agents-success?style=for-the-badge)](https://apify.com/rigelbytes/zillow-agents)\
A Zillow agent profile scraper that extracts structured agent data from Zillow for location-based queries (city, neighborhood, ZIP). The Actor scrapes agent ...

[![Bayut Scraper](https://img.shields.io/badge/Bayut_Scraper-important?style=for-the-badge)](https://apify.com/rigelbytes/bayut-scraper)\
A web-scraping Actor for extracting structured property listings and market intelligence from Bayut.com (UAE). It crawls Bayut property pages and returns str...

[![dubai-listing-scraper](https://img.shields.io/badge/Dubai_Listing_Scraper-critical?style=for-the-badge)](https://apify.com/rigelbytes/dubai-listing-scraper)\
A web scraping Actor for Bayut.com that extracts structured UAE property listing data for sale and rent across Dubai, Abu Dhabi and other Emirates. It progra...

[![Tiktok Comment Scraper](https://img.shields.io/badge/Tiktok_Comment_Scraper-informational?style=for-the-badge)](https://apify.com/rigelbytes/tiktok-comment-scraper)\
A TikTok comment scraping Actor that extracts all comments from TikTok videos given a video URL. It collects commenter metadata (usernames, display names, pr...

[![Tiktok Engagement Rate](https://img.shields.io/badge/Tiktok_Engagement_Rate-9cf?style=for-the-badge)](https://apify.com/rigelbytes/tiktok-engagement-rate)\
A TikTok profile scraper that analyzes public TikTok accounts to extract profile metadata and recent video-level interaction metrics and to compute engagemen...

[![Company Service Finder](https://img.shields.io/badge/Company_Service_Finder-blue?style=for-the-badge)](https://apify.com/rigelbytes/company-service-finder)\
Company Service Finder scrapes business listings from Google Search and Google Maps across cities and states, extracts company websites, names, phone numbers...

[![Website Services Finder](https://img.shields.io/badge/Website_Services_Finder-green?style=for-the-badge)](https://apify.com/rigelbytes/website-services-finder)\
Website Services Finder extracts and AI-analyzes company services and business information from business websites using web crawling plus large-language and ...

[![Airbnb Address Finder](https://img.shields.io/badge/Airbnb_Address_Finder-orange?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-address-finder)\
A web-scraping Apify Actor that bulk-extracts Airbnb listing addresses and comprehensive listing metadata from provided Airbnb listing URLs. It parses listin...

[![Immowelt Scraper](https://img.shields.io/badge/Immowelt_Scraper-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/immowelt-scraper)\
An Apify Actor that scrapes unlimited real estate listings from immowelt.de and returns structured property data for indexing and analysis. The Actor extract...

[![Propertyfinder Scraper](https://img.shields.io/badge/Propertyfinder_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/propertyfinder-scraper)\
A scraper for propertyfinder.ae that extracts unlimited real estate listings and related metadata at scale. Implements asynchronous concurrency, automatic re...

[![Publix Scraper](https://img.shields.io/badge/Publix_Scraper-yellow?style=for-the-badge)](https://apify.com/rigelbytes/publix-scraper)\
A web scraping Actor for Publix.com that extracts grocery product data from Publix collection pages using a collection URL and a delivery/pickup location to ...

[![Redfin Scraper](https://img.shields.io/badge/Redfin_Scraper-purple?style=for-the-badge)](https://apify.com/rigelbytes/redfin-scraper)\
Redfin Scraper extracts large-scale real estate listing data from Redfin search and city pages and returns structured property records for downstream analysi...

[![Instacart Scraper](https://img.shields.io/badge/Instacart_Scraper-pink?style=for-the-badge)](https://apify.com/rigelbytes/instacart-scraper)\
A web-scraping Actor that extracts structured product data from instacart.com using a collection/search keyword combined with a delivery or pickup location; ...

[![Homedepot Scraper](https://img.shields.io/badge/Homedepot_Scraper-cyan?style=for-the-badge)](https://apify.com/rigelbytes/homedepot-scraper)\
A web scraper for homedepot.com that crawls collection pages and performs location-aware scraping (delivery or pickup) to extract structured product data. Th...

[![Doctify Scraper](https://img.shields.io/badge/Doctify_Scraper-success?style=for-the-badge)](https://apify.com/rigelbytes/doctify-scraper)\
A web scraping Actor that extracts structured healthcare provider and practice data from doctify.com starting from a Doctify search-results URL. The Actor ha...

[![Facebook Ads Scraper](https://img.shields.io/badge/Facebook_Ads_Scraper-important?style=for-the-badge)](https://apify.com/rigelbytes/facebook-ads-scraper)\
Extracts structured ad data from the Facebook Ads Library using a search URL: scrapes ad metadata and creative assets (ad copy, titles, captions), destinatio...

[![Ticketmaster Scraper](https://img.shields.io/badge/Ticketmaster_Scraper-critical?style=for-the-badge)](https://apify.com/rigelbytes/ticketmaster-scraper)\
A Ticketmaster-focused web scraper that extracts structured event metadata by location and date range for event monitoring, market research, and entertainmen...

[![Scrape Instagram Creators](https://img.shields.io/badge/Scrape_Instagram_Creators-informational?style=for-the-badge)](https://apify.com/rigelbytes/scrape-instagram-creators)\
Scrape Instagram Creators is an Instagram profile and media scraper that extracts detailed creator profile metadata and media-level information. It captures ...

[![Immowelt Property Scraper](https://img.shields.io/badge/Immowelt_Property_Scraper-9cf?style=for-the-badge)](https://apify.com/rigelbytes/immowelt-property-scraper)\
A scraper for immowelt.de (Germany) that harvests large volumes of real estate listings and returns structured property records for analysis. It extracts lis...

[![Immobilienscout24-scraper](https://img.shields.io/badge/Immobilienscout24_Scraper-blue?style=for-the-badge)](https://apify.com/rigelbytes/immobilienscout24-scraper)\
A web scraping Actor that extracts large volumes of real estate listings and contact information from immobilienscout24.de, focused on German property market...

[![Instagram Creator Stats](https://img.shields.io/badge/Instagram_Creator_Stats-green?style=for-the-badge)](https://apify.com/rigelbytes/instagram-creator-stats)\
A scraping and analytics Actor that extracts Instagram profile metadata and per-post media details to compute engagement metrics for creator/influencer analy...

[![Etsy Scraper](https://img.shields.io/badge/Etsy_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/etsy-scraper)\
A web-scraping Actor that extracts structured product data from Etsy.com from category pages, search results, or individual product list URLs. It crawls list...

[![Rightmove Scraper](https://img.shields.io/badge/Rightmove_Scraper-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/rightmove-scraper)\
Scrapes Rightmove.co.uk property listings and returns structured property records for real estate data extraction and analysis. The Actor crawls Rightmove se...

[![Instagram Comment Scraper](https://img.shields.io/badge/Instagram_Comment_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/instagram-comment-scraper)\
A web scraping Actor that extracts all comments from Instagram posts and reels given their URLs; it captures commenter metadata (username, display name, prof...

### Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

#### Why Use Proxies?

- Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
- Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
- Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

#### Types of Proxies

1. Residential Proxies
   - Real IP addresses provided by ISPs to home users.
   - They mimic regular users, making them harder to detect.
   - Best for: Long-term, undetectable scraping, and avoiding blocks.
2. Data Center Proxies
   - IP addresses from servers in data centers.
   - Faster and cheaper than residential proxies but easier to detect and block.
   - Best for: High-speed scraping, but with a higher risk of detection.
3. Mobile Proxies
   - IPs provided by mobile carriers (3G/4G/5G networks).
   - Very difficult to detect, as they appear as regular mobile users.
   - Best for: Mobile-related scraping or avoiding sophisticated blocks.

#### Rotating Proxies vs. Straight Proxies

- Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
- Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

### About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

### Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or [book an appointment](https://cal.com/faizanali/appointments) with us to learn more about how we can help you achieve your data goals.

### Detailed Data

```json
[
  {
    "id": 432827,
    "name": "Calin’s Rv",
    "slug": "/rv-rental/los-angeles_ca/2024_thor_coleman_432827-listing",
    "rental_category": "rv",
    "dealer": false,
    "owner_user_id": 4228665,
    "primary_image_url": "https://res.cloudinary.com/outdoorsy/image/upload/v1743053659/p/rentals/432827/images/oieaypy9lhim7voaxqvf.jpg",
    "images": [
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1743053659/p/rentals/432827/images/oieaypy9lhim7voaxqvf.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131288/p/rentals/432827/images/b2afdbkophtsu5ayqado.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1743054138/p/rentals/432827/images/w7r9xlirdxscoz1k0nrb.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131306/p/rentals/432827/images/ykdjn8i8svnelpk0ogak.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131292/p/rentals/432827/images/vtwraoeeukpfnr8adoui.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131289/p/rentals/432827/images/whr2jc9woxagxmv2j13j.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131293/p/rentals/432827/images/z2h1l86gnjj2zglne8ba.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1743054023/p/rentals/432827/images/ycet1pw8ya1oes0tqeth.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1765826940/p/rentals/432827/images/yk76aejtewo8wfypwhwn.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745649599/p/rentals/432827/images/jkiy4l02glkuqqoibono.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1743054058/p/rentals/432827/images/wlrbripaxhd9eokjx82v.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1729131301/p/rentals/432827/images/pdjitwnv6ngdipvrc2au.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745649750/p/rentals/432827/images/jhtxtu1exhoo8jvixnpk.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650004/p/rentals/432827/images/fyrsh9nb4fxgaydlcrbl.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745649326/p/rentals/432827/images/vmiwp3kfkj3wbci1w0wh.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1765826942/p/rentals/432827/images/wvbuww0lkitjqllk8b68.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1765826942/p/rentals/432827/images/bnuspj5af5hh6tpgm5ta.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650105/p/rentals/432827/images/l9mmiknlcdbqx6wlqxd3.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650312/p/rentals/432827/images/mnu9ofuyiottglxpqkxw.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650317/p/rentals/432827/images/gfoua55j6ci7v0brkii8.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650499/p/rentals/432827/images/x1nb2pwoivzsw6moa3dt.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1745650737/p/rentals/432827/images/a6jchbnchflrdp0df2fc.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1765826991/p/rentals/432827/images/xg60crvprq42vzfyiliz.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1765826992/p/rentals/432827/images/ruszqayde7ibenrn5fi0.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360802/p/rentals/432827/images/akvjebnqxo0fbcu76vpk.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360803/p/rentals/432827/images/fdvautl7nqid5ugocttp.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360804/p/rentals/432827/images/vm9abcqwxqjbfyawnzrr.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360803/p/rentals/432827/images/tya0erbrf0w9cvolnaxd.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360803/p/rentals/432827/images/tagqmfpysklciuefrruj.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360803/p/rentals/432827/images/lqlcep1ymjysy1jqfuc2.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360806/p/rentals/432827/images/worovkhtoplqoeef9b84.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1769360806/p/rentals/432827/images/m1din5kikv241wp4mt4m.jpg"
      }
    ],
    "location": {
      "city": "Los Angeles",
      "state": "CA",
      "lat": 34.061,
      "lng": -118.246
    },
    "geopoint": {
      "lat": 34.061,
      "lon": -118.246
    },
    "home": {
      "city": "Los Angeles",
      "state": "CA"
    },
    "vehicle_make": "Thor",
    "vehicle_model": "Coleman",
    "vehicle_year": 2024,
    "display_vehicle_type": "Class C",
    "vehicle": {
      "year": 2024,
      "length": 30
    },
    "presentment_currency": "USD",
    "price_per_day": 24500,
    "active_options": {
      "instant_book": true,
      "day_price": 24500,
      "use_day_pricing": false,
      "weekly_discount_percentage": 0,
      "monthly_discount_percentage": 0,
      "estimated_price_breakdown": {
        "total": 68390,
        "original_total": 68390,
        "rental_amount": 24500,
        "rental_amount_per_day": 24500,
        "duration": 1,
        "insurance": 11190,
        "prep_fee": 27500,
        "guest_fee": 5200,
        "delivery_fee": 0,
        "use_day_pricing": false
      }
    },
    "instant_book": true,
    "score": 5,
    "reviews_num": 12,
    "favorite": false,
    "favorite_count": 160,
    "tags": [
      {
        "tag": "Family friendly",
        "slug": "family-friendly",
        "count": 1
      },
      {
        "tag": "Full kitchen",
        "slug": "full-kitchen",
        "count": 1
      },
      {
        "tag": "Highly rated",
        "slug": "guest-favorite",
        "count": 1
      },
      {
        "tag": "Festival friendly",
        "slug": "festival-friendly",
        "count": 1
      },
      {
        "tag": "Tailgate friendly",
        "slug": "tailgate-friendly",
        "count": 1
      }
    ],
    "unavailable": false,
    "vehicle_title": "2024 Thor Coleman",
    "seatbelts": 7,
    "features": {
      "beds_king": 0,
      "beds_queen": 2,
      "beds_twin": 0,
      "beds_full": 0,
      "pet_friendly": false,
      "handicap_accessible": false
    },
    "sleeps": 6,
    "distance": 0.4617096933369478,
    "locale": {
      "distance_unit": "miles",
      "length_unit": "feet"
    },
    "vehicle_length": 30,
    "owner_url": "https://www.outdoorsy.com/pro/4228665",
    "listing_url": "https://www.outdoorsy.com/rv-rental/los-angeles_ca/2024_thor_coleman_432827-listing"
  },
  {
    "id": 281617,
    "name": "2021 Dutchmen Coleman",
    "slug": "/rv-rental/los-ngeles_ca/2021_dutchmen_coleman_281617-listing",
    "rental_category": "rv",
    "dealer": false,
    "owner_user_id": 1566614,
    "primary_image_url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/dmhxg6nq7ttloyh2isgt.jpg",
    "images": [
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/dmhxg6nq7ttloyh2isgt.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/i1hnc0nemvs7icmmwkes.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/p8b6rlbqs6n77998plx4.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/nxzgft8otevdp2wejju6.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1645121693/p/rentals/281617/images/bg90gs9poo1flesmhdek.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1752559598/p/rentals/281617/images/xkm5unossqge98ajwvzb.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1645121678/p/rentals/281617/images/tylkozntcucfc02zpulc.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1688100974/undefined/rentals/281617/images/ir6esmenvghrcrw0brmu.jpg"
      }
    ],
    "location": {
      "city": "Los Ángeles",
      "state": "CA",
      "lat": 33.969,
      "lng": -118.29
    },
    "geopoint": {
      "lat": 33.969,
      "lon": -118.29
    },
    "home": {
      "city": "Los Ángeles",
      "state": "CA"
    },
    "vehicle_make": "Dutchmen",
    "vehicle_model": "Coleman",
    "vehicle_year": 2021,
    "display_vehicle_type": "Travel trailer",
    "vehicle": {
      "year": 2021,
      "length": 17
    },
    "presentment_currency": "USD",
    "price_per_day": 11000,
    "active_options": {
      "instant_book": true,
      "day_price": 11000,
      "use_day_pricing": false,
      "weekly_discount_percentage": 10,
      "monthly_discount_percentage": 20,
      "estimated_price_breakdown": {
        "total": 17290,
        "original_total": 17290,
        "rental_amount": 11000,
        "rental_amount_per_day": 11000,
        "duration": 1,
        "insurance": 5190,
        "prep_fee": 0,
        "guest_fee": 1100,
        "delivery_fee": 0,
        "use_day_pricing": false
      }
    },
    "instant_book": true,
    "score": 5,
    "reviews_num": 9,
    "favorite": false,
    "favorite_count": 83,
    "tags": [
      {
        "tag": "Budget friendly",
        "slug": "budget-friendly",
        "count": 1
      },
      {
        "tag": "Easy to tow",
        "slug": "easy-to-tow",
        "count": 1
      },
      {
        "tag": "Highly rated",
        "slug": "guest-favorite",
        "count": 1
      },
      {
        "tag": "Superhost",
        "slug": "superhost",
        "count": 1
      },
      {
        "tag": "Tailgate friendly",
        "slug": "tailgate-friendly",
        "count": 1
      }
    ],
    "unavailable": false,
    "vehicle_title": "2021 Dutchmen Coleman",
    "seatbelts": 0,
    "features": {
      "beds_king": 0,
      "beds_queen": 1,
      "beds_twin": 0,
      "beds_full": 0,
      "pet_friendly": false,
      "handicap_accessible": false
    },
    "sleeps": 5,
    "distance": 6.511567271389581,
    "locale": {
      "distance_unit": "miles",
      "length_unit": "feet"
    },
    "vehicle_length": 17,
    "owner_url": "https://www.outdoorsy.com/pro/1566614",
    "listing_url": "https://www.outdoorsy.com/rv-rental/los-ngeles_ca/2021_dutchmen_coleman_281617-listing"
  },
  {
    "id": 197979,
    "name": "2019 Mercedes-Benz 4x4 Sprinter",
    "slug": "/rv-rental/los-angeles_ca/2019_mercedes-benz_sprinter_197979-listing",
    "rental_category": "rv",
    "dealer": false,
    "owner_user_id": 1107022,
    "primary_image_url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931742/p/rentals/197979/images/gxffopmvarbrcsmyy2ly.jpg",
    "images": [
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931742/p/rentals/197979/images/gxffopmvarbrcsmyy2ly.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603930959/p/rentals/197979/images/phqkn6tl3up28y7efbg9.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931038/p/rentals/197979/images/ud00wy1v5n1ycl6dwdpq.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931027/p/rentals/197979/images/n4nlzgrjqbjkmpx2qhez.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931069/p/rentals/197979/images/zihdhmyb7yxy4diy0j8y.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931129/p/rentals/197979/images/kqp428jstkdvsngo875y.png"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931193/p/rentals/197979/images/jvrc66qqebjodxdct5u4.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931416/p/rentals/197979/images/gt3xoxd39zdbcrfkcbj0.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931364/p/rentals/197979/images/ezfbunpqr3bkj2ic5x4l.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931375/p/rentals/197979/images/czb7xxojomy6fclgggpk.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931448/p/rentals/197979/images/x8pe2fxjvsvnedknp3dc.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931359/p/rentals/197979/images/xbi5evtfx8aqftrzdhd5.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931532/p/rentals/197979/images/opmesl8fqlz8vjdxjwxo.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931259/p/rentals/197979/images/l0lwwpq7ci8wm7sorl7f.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1603931299/p/rentals/197979/images/szep4kdjmnplasxnmtdo.png"
      }
    ],
    "location": {
      "city": "Los Angeles",
      "state": "CA",
      "lat": 34.107,
      "lng": -118.272
    },
    "geopoint": {
      "lat": 34.107,
      "lon": -118.272
    },
    "home": {
      "city": "Los Angeles",
      "state": "CA"
    },
    "vehicle_make": "Mercedes-Benz",
    "vehicle_model": "Sprinter",
    "vehicle_year": 2019,
    "display_vehicle_type": "Camper van",
    "vehicle": {
      "year": 2019,
      "length": 19
    },
    "presentment_currency": "USD",
    "price_per_day": 20000,
    "active_options": {
      "instant_book": false,
      "day_price": 20000,
      "use_day_pricing": false,
      "weekly_discount_percentage": 10,
      "monthly_discount_percentage": 20,
      "estimated_price_breakdown": {
        "total": 33740,
        "original_total": 33740,
        "rental_amount": 20000,
        "rental_amount_per_day": 20000,
        "duration": 1,
        "insurance": 8990,
        "prep_fee": 2500,
        "guest_fee": 2250,
        "delivery_fee": 0,
        "use_day_pricing": false
      }
    },
    "instant_book": false,
    "score": 5,
    "reviews_num": 21,
    "favorite": false,
    "favorite_count": 633,
    "tags": [
      {
        "tag": "Winter ready",
        "slug": "winter-ready",
        "count": 1
      },
      {
        "tag": "Highly rated",
        "slug": "guest-favorite",
        "count": 1
      },
      {
        "tag": "Campervan",
        "slug": "campervan",
        "count": 1
      }
    ],
    "unavailable": false,
    "vehicle_title": "2019 Mercedes-Benz Sprinter",
    "seatbelts": 2,
    "features": {
      "beds_king": 0,
      "beds_queen": 0,
      "beds_twin": 0,
      "beds_full": 0,
      "pet_friendly": true,
      "handicap_accessible": false
    },
    "sleeps": 2,
    "distance": 3.963247377484499,
    "locale": {
      "distance_unit": "miles",
      "length_unit": "feet"
    },
    "vehicle_length": 19,
    "owner_url": "https://www.outdoorsy.com/pro/1107022",
    "listing_url": "https://www.outdoorsy.com/rv-rental/los-angeles_ca/2019_mercedes-benz_sprinter_197979-listing"
  },
  {
    "id": 458108,
    "name": "Kingly Miles",
    "slug": "/rv-rental/burbank_ca/2022_ford-transit_ford-transit_458108-listing",
    "rental_category": "rv",
    "dealer": false,
    "owner_user_id": 4508359,
    "primary_image_url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238351/p/rentals/458108/images/cdzrxysty1zfucyfqpdt.jpg",
    "images": [
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238351/p/rentals/458108/images/cdzrxysty1zfucyfqpdt.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238403/p/rentals/458108/images/g5fpwm53txzkeahoob12.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238403/p/rentals/458108/images/ogdxpnb8l14nu2ljcbvf.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238403/p/rentals/458108/images/bvk0hpo1iv5v14u7jfnz.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1749238404/p/rentals/458108/images/fhdb6acfcpyzqx8zpdhp.jpg"
      }
    ],
    "location": {
      "city": "Burbank",
      "state": "CA",
      "lat": 34.202,
      "lng": -118.353
    },
    "geopoint": {
      "lat": 34.202,
      "lon": -118.353
    },
    "home": {
      "city": "Burbank",
      "state": "CA"
    },
    "vehicle_make": "ford transit",
    "vehicle_model": "Ford Transit",
    "vehicle_year": 2022,
    "display_vehicle_type": "Class C",
    "vehicle": {
      "year": 2022,
      "length": 19
    },
    "presentment_currency": "USD",
    "price_per_day": 12000,
    "active_options": {
      "instant_book": true,
      "day_price": 12000,
      "use_day_pricing": false,
      "weekly_discount_percentage": 10,
      "monthly_discount_percentage": 20,
      "estimated_price_breakdown": {
        "total": 22190,
        "original_total": 22190,
        "rental_amount": 12000,
        "rental_amount_per_day": 12000,
        "duration": 1,
        "insurance": 8990,
        "prep_fee": 0,
        "guest_fee": 1200,
        "delivery_fee": 0,
        "use_day_pricing": false
      }
    },
    "instant_book": true,
    "score": 5,
    "reviews_num": 4,
    "favorite": false,
    "favorite_count": 18,
    "tags": [
      {
        "tag": "Budget friendly",
        "slug": "budget-friendly",
        "count": 1
      },
      {
        "tag": "Highly rated",
        "slug": "guest-favorite",
        "count": 1
      },
      {
        "tag": "Festival friendly",
        "slug": "festival-friendly",
        "count": 1
      }
    ],
    "unavailable": false,
    "vehicle_title": "2022 ford transit Ford Transit",
    "seatbelts": 10,
    "features": {
      "beds_king": 0,
      "beds_queen": 0,
      "beds_twin": 0,
      "beds_full": 0,
      "pet_friendly": true,
      "handicap_accessible": false
    },
    "sleeps": 1,
    "distance": 11.937176580023944,
    "locale": {
      "distance_unit": "miles",
      "length_unit": "feet"
    },
    "vehicle_length": 19,
    "owner_url": "https://www.outdoorsy.com/pro/4508359",
    "listing_url": "https://www.outdoorsy.com/rv-rental/burbank_ca/2022_ford-transit_ford-transit_458108-listing"
  },
  {
    "id": 393507,
    "name": "“Wolfie” The 2021 Forest River Cherokee Grey Wolf Special Edition",
    "slug": "/rv-rental/simi-valley_ca/2021_forest-river_cherokee-grey-wolf-special-edition_393507-listing",
    "rental_category": "rv",
    "dealer": false,
    "owner_user_id": 3767934,
    "primary_image_url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575124/p/rentals/393507/images/tmyhjtfze37hciqwbdtv.jpg",
    "images": [
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575124/p/rentals/393507/images/tmyhjtfze37hciqwbdtv.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575134/p/rentals/393507/images/ntqyk9fkyla7mazxhs8r.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575132/p/rentals/393507/images/qe7rnlynkuefy4n9psvs.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575134/p/rentals/393507/images/ykx0m8rskbmebufdwwwv.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601750/undefined/rentals/393507/images/wjgaphrhvprmtwlmb4qo.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601753/undefined/rentals/393507/images/lbiivis2dksxb0vsjwbr.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601755/undefined/rentals/393507/images/sftrhsllbpccbnfxglp5.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601758/undefined/rentals/393507/images/ctnmbcsytabjyt4xeupl.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601761/undefined/rentals/393507/images/tg8bifwnb520nlfluokw.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601922/undefined/rentals/393507/images/l6xjhhug2mcuuv3gfyke.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601925/undefined/rentals/393507/images/nzqe7j917ksucprmibe6.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601927/undefined/rentals/393507/images/asmoaltqqouh7rgx6yri.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601930/undefined/rentals/393507/images/uqrbfhklfdf13akuchh3.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601933/undefined/rentals/393507/images/nms1ve3jcnrln5tc1ogo.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601935/undefined/rentals/393507/images/lkpjdj3gd0bqzbcbcxtc.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702601938/undefined/rentals/393507/images/fiatcf5dm98bxrnrfkfv.jpg"
      },
      {
        "url": "https://res.cloudinary.com/outdoorsy/image/upload/v1702575128/p/rentals/393507/images/nxzrjndhzxescdkemstl.jpg"
      }
    ],
    "location": {
      "city": "Simi Valley",
      "state": "CA",
      "lat": 34.323,
      "lng": -118.708
    },
    "geopoint": {
      "lat": 34.323,
      "lon": -118.708
    },
    "home": {
      "city": "Simi Valley",
      "state": "CA"
    },
    "vehicle_make": "Forest River",
    "vehicle_model": "Cherokee Grey Wolf Special Edition",
    "vehicle_year": 2021,
    "display_vehicle_type": "Travel trailer",
    "vehicle": {
      "year": 2021,
      "length": 30
    },
    "presentment_currency": "USD",
    "price_per_day": 12500,
    "active_options": {
      "instant_book": true,
      "day_price": 12500,
      "use_day_pricing": false,
      "weekly_discount_percentage": 0,
      "monthly_discount_percentage": 0,
      "estimated_price_breakdown": {
        "total": 30330,
        "original_total": 30330,
        "rental_amount": 12500,
        "rental_amount_per_day": 12500,
        "duration": 1,
        "insurance": 6790,
        "prep_fee": 8900,
        "guest_fee": 2140,
        "delivery_fee": 0,
        "use_day_pricing": false
      }
    },
    "instant_book": true,
    "score": 5,
    "reviews_num": 7,
    "favorite": false,
    "favorite_count": 99,
    "tags": [
      {
        "tag": "Full kitchen",
        "slug": "full-kitchen",
        "count": 1
      },
      {
        "tag": "Budget friendly",
        "slug": "budget-friendly",
        "count": 1
      },
      {
        "tag": "Highly rated",
        "slug": "guest-favorite",
        "count": 1
      },
      {
        "tag": "Tailgate friendly",
        "slug": "tailgate-friendly",
        "count": 1
      }
    ],
    "unavailable": false,
    "vehicle_title": "2021 Forest River Cherokee Grey Wolf Special Edition",
    "seatbelts": 0,
    "features": {
      "beds_king": 0,
      "beds_queen": 0,
      "beds_twin": 0,
      "beds_full": 0,
      "pet_friendly": true,
      "handicap_accessible": false
    },
    "sleeps": 8,
    "distance": 32.33980267381372,
    "locale": {
      "distance_unit": "miles",
      "length_unit": "feet"
    },
    "vehicle_length": 30,
    "owner_url": "https://www.outdoorsy.com/pro/3767934",
    "listing_url": "https://www.outdoorsy.com/rv-rental/simi-valley_ca/2021_forest-river_cherokee-grey-wolf-special-edition_393507-listing"
  }
]
```

# Actor input Schema

## `searchQueries` (type: `array`):

Simple location queries (e.g., 'Los Angeles, CA', 'Miami, FL'). The actor builds the search URL automatically. Use this OR searchUrls.

## `searchUrls` (type: `array`):

One or more Outdoorsy search URLs (outdoorsy.com/rv-search or search.outdoorsy.com/rentals). Use this OR searchQueries.

## `maxItems` (type: `integer`):

Maximum number of listings to scrape (0 = unlimited)

## `proxyConfiguration` (type: `object`):

Proxy settings for every API request. Defaults to Apify Proxy in the US.

## Actor input object example

```json
{
  "searchQueries": [
    "Los Angeles, CA"
  ],
  "searchUrls": [
    "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
  ],
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Dataset containing scraped Outdoorsy rental listings

## `runStats` (type: `string`):

Aggregate statistics for the scrape run

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "Los Angeles, CA"
    ],
    "searchUrls": [
        "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rigelbytes/outdoorsy-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQueries": ["Los Angeles, CA"],
    "searchUrls": ["https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("rigelbytes/outdoorsy-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "Los Angeles, CA"
  ],
  "searchUrls": [
    "https://www.outdoorsy.com/rv-search?address=Los%20Angeles%2C%20California%2C%20United%20States&date%5Bfrom%5D=2026-05-30&date%5Bto%5D=2026-05-31&page%5Blimit%5D=24&page%5Boffset%5D=0"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call rigelbytes/outdoorsy-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=rigelbytes/outdoorsy-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/9dJtzH23blfRWgpp4/builds/xgO9DBn6O44IMJcxe/openapi.json
