Open Data API
StowHelp Open Data
Free, machine-readable access to StowHelp's vehicle storage market data. Built for journalists, researchers, academics, and developers building tools in the recreational vehicle, boating, and motoring spaces.
Available endpoints
- GET
/data/cost-aggregates.json
Live pricing aggregates - national, per-state, per-category, and per-(state, category) combo. Updated continuously. - GET
/data/categories.json
All 11 vehicle storage categories with metadata. - GET
/data/states.json
All 50 US states + DC + PR with state abbreviations and city counts.
License & citation
All endpoints return data under the Creative Commons Attribution 4.0 International (CC-BY-4.0) license. You are free to copy, redistribute, adapt, and build upon the data for any purpose - including commercial - as long as you provide attribution.
Suggested citation:
StowHelp 2026, vehicle storage pricing aggregates, https://stowhelp.com/data/cost-aggregates.json (accessed YYYY-MM-DD).
Every JSON response includes the metadata block with license, attribution, and citation strings ready to copy.
Example use cases
- Journalism: Pull median storage prices for a story on RV ownership inflation. Cite the live data with a hyperlink to the JSON endpoint - readers can click through to verify.
- Academic research: Time-series analysis of recreational vehicle storage costs by region. Each pull returns a snapshot tagged with timestamp; multiple pulls over time give you the longitudinal data.
- App developers: Building an RV trip planner that surfaces storage options at each stop. Use
/data/cost-aggregates.jsonto show typical pricing alongside our directory listings. - Insurance modelers: Calibrate vehicle-storage liability premiums by region using verified market pricing. Free for non-commercial calibration; commercial integration requires partnership conversation.
- Real estate / development: Site-selection analysis for new storage facility builds. The per-(state, category) aggregates show market-by-market median rates and sample sizes.
Rate limits & access
No authentication required for any endpoint. Endpoints are cached at the CDN edge with 10-minute TTL, so high-volume access is supported without rate limiting at the application layer. Requests serving stale cache continue to return 200 OK with current data while a background refresh runs.
If you need higher granularity (per-zip, per-facility, per-day) or research-tier access (longitudinal data, demographic overlays), email partners@stowhelp.com for the research dataset agreement.
Sample request
curl https://stowhelp.com/data/cost-aggregates.json | jq .aggregates.national
Returns:
{
"sampleSize": 497,
"min": 35,
"p25Low": 65,
"medianLow": 110,
"p75Low": 175,
"medianHigh": 350,
"max": 50000
}