Rvshare

Listing API

GET https://api.dataextractorpro.com/listing ⚡ 1 Credit

Fetch RV rental listings based on destination and search parameters. Use this endpoint to access structured RVShare listing data for rental search pages, price comparison tools, and travel marketplaces.

Overview

This API endpoint allows programmatically extracting clean, structured data for Rvshare.

Authentication

Include your API key in the request header:

x-api-key: YOUR_API_KEY
Request Parameters
Parameter Type Required Description & Allowed Values Try Parameter
place_id
place_id
text Required
Unique location identifier (from suggestion endpoint)
location
location
text Required
Use the shortName value from the suggestions endpoint response as the location parameter.
sort
sort
text Optional
Values for the sort parameter can be any of the following: relevance (default) distance_closest ? Closest RVs first nightly_price_low ? Price: Low to High nightly_price_high ? Price: High to Low sleep_least_to_most ? Sleeps: Low to High sleep_most_to_least ? Sleeps: High to Low
type
type
text Optional
Values for the type parameter can be any of the following: allrv (default) ? Returns all RV listings drivables ? Motorized RVs that can be driven towables ? Towable RVs (trailers, fifth wheels, etc.) destinationdelivery ? RVs that can be delivered to your location
Code Examples

                                
                                
                                
                            
Error Responses
400 Invalid Parameters
One or more required parameters are missing or invalid.
{
    "status": "error",
    "message": "Parameter 'q' is required"
}
401 Unauthorized
Invalid or missing API key in x-api-key header.
{
    "status": "error",
    "message": "Invalid API key"
}
429 Rate Limit / Quota Exceeded
API key usage quota has been exhausted.
{
    "status": "error",
    "message": "Usage limit reached"
}
500 Internal Server Error
An unexpected server error occurred during extraction.
{
    "status": "error",
    "message": "Internal extraction error"
}