The goal of this simple Node
app is to get notified whenever an already booked out camp site has become available.
This is useful for campsites that are booked out months in advance, but frequent cancellations.
The app will notify you when a campsite becomes available.
The following sections should help you get started.
-
Adjust queries in
queries.json
to your needs-
Search Campground on Recreation.gov
-
Copy the
campGroundId
parameter from the URL, e.g. for Upper Pines with URLhttps://www.recreation.gov/camping/campgrounds/232447
thecampGroundId
is232447
and use it in thequeries.json
file -
Specify the months you are interested in. You can specify multiple months but the input is not sanitized, so make sure to specify 2-digits for the month, e.g.
03
for March -
Specify the dates you are interested in. You can specify multiple dates but the input is not sanitized, so make sure to follow the format
YYYY-MM-DD
, e.g.2023-03-01
for March 1st, 2023
-
[
{
"queryCriteria": {
"campGroundId": 232447,
"months": [
"03"
]
},
"filterCriteria": {
"desiredDates": [
"2023-03-27"
]
}
}
]