GET recreation.gov HTTP 200218 ms19.8 KB$0.00008 captured Aug 7, 2026
recreation.gov, as data
One API turns any recreation.gov page into markdown, structured JSON, its link graph or a screenshot, and crawls the whole site the same way. The panel shows the real response we captured.
- Render mode
- Plain HTTP, no browser needed
- Response
- HTTP 200 in 218 ms
- Page size
- 19.8 KB of markdown, 288 lines
- Fields
- Title, Department, Date, Description and 2 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This recreation.gov page cost $0.00008 to fetch.
Rocky Mountain National ParkRogue River-Siskiyou National ForestSalmon-Challis National ForestSan Bernardino National ForestSequoia & Kings Canyon National ParksShasta-Trinity National ForestSleeping Bear Dunes National LakeshoreStanislaus National ForestTennessee-Tombigbee WaterwayUinta-Wasatch-Cache National ForestWallowa Whitman National ForestWhite Mountain National ForestWhite River National ForestWillamette National Forest## Plan for Your TripAccess tools and resources to chart the course for your next getaway or dream vacation, manage your trip details, and enter for the chance to attend special events and excursions that ensure you get the most out of your Recreation.gov experience.## Camping & Day UseReturn to your favorite camping spot or discover a new one that’s right for you.## Interagency & Site PassesCover admission and / or amenity fees for federal lands, waterways, and monuments with annual or lifetime interagency passes that provide access to more than 2,000 federal recreation locations or site passes for multiple visits to your favorite spot.## Find Tours & TicketsReserve tours and tickets to participate in special events and experiences.## Christmas Tree PermitsNational Forests across the country are now offering permits to cut down a Christmas Tree through Recreation.gov. Buy your permit online before you arrive, gather your family and friends, and create memories that help you #BringHomeaStory this holiday season!Learn More about Christmas Tree Permits## Rent Gear and a RidePlanning a trip with Recreation.gov is even easier with rental options. Whether it's an RV to hit the road or outdoor gear like tents, packs, and sleeping bags, enjoy the convenience of renting equipment for your next trip.## Find Inspiration & Information What Spider does on recreation.gov
Same key, five endpoints. The numbers under a cell were measured on this page.
Page to markdown
Clean text for RAG and LLM context, boilerplate removed. The lane that runs without a key.
218 ms · $0.00008Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Rendered capture
Real Chromium, full-page PNG. The same call also returns the rendered HTML.
The call behind the panel
This request produced the response above. Paste it with your key and you get the same bytes.
curl -X POST https://api.spider.cloud/scrape \
-H "Authorization: Bearer $SPIDER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://recreation.gov/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://recreation.gov/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://recreation.gov/", {
return_format: "markdown",
});
console.log(page.content); What recreation.gov costs
Multiplied from the measured 19.8 KB page. Estimates round to the cent.
1 GB of transfer costs $1, plus $0.001 per CPU minute, and failed requests cost $0. Crawling daily? The Unlimited plan is a flat monthly rate.
Point this at the rest of recreation.gov.
The capture above took 218 ms and cost $0.00008. The same call takes any URL on recreation.gov.