The Recreation Information Database (RIDB) provides data resources to citizens, offering a single point of access to information about recreational opportunities nationwide.
Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Emit new events when selected campsite's availability is changed. See the documentation
Get a URL and emit the HTTP body as an event on every request
Emit new events when a new recreation area is added to the Recreation.gov database. See the documentation
Emit new event when the content of the URL changes.
Retrieves details of a specific campsite. See the documentation
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Searchs campsites with the given query. If no query given, returns campsites from the beginning. Returning campsite number is limited to 1000
. See the documentation
Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.
Searchs recreation areas with the given properties. If no parameters given, returns all. See the documentation
The Recreation.gov API provides access to data about federal recreational activities and areas. With it, you can fetch details about campsites, tours, permits, and articles. On Pipedream, leverage this API to automate notifications, analyze recreational data, or integrate with other services for trip planning or environmental monitoring.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recreation_gov: {
type: "app",
app: "recreation_gov",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ridb.recreation.gov/api/v1/campsites`,
params: {
apikey: `${this.recreation_gov.$auth.api_key}`,
},
})
},
})
Build, test, and send HTTP requests without code using your Pipedream workflows. The HTTP / Webhook action is a tool to build HTTP requests with a Postman-like graphical interface.
Define the target URL, HTTP verb, headers, query parameters, and payload body without writing custom code.
This action can also use your connected accounts with third-party APIs. Selecting an integrated app will automatically update the request’s headers to authenticate with the app properly, and even inject your token dynamically.
Pipedream integrates with thousands of APIs, but if you can’t find a Pipedream integration simply use Environment Variables in your request headers to authenticate with.
The HTTP/Webhook action exports HTTP response data for use in subsequent workflow steps, enabling easy data transformation, further API calls, database storage, and more.
Response data is available for both coded (Node.js, Python) and no-code steps within your workflow.
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})