Supabase is an open source Firebase alternative.
Emit new events when selected campsite's availability is changed. See the documentation
Emit new events when a new recreation area is added to the Recreation.gov database. See the documentation
Emit new event for every new row added in a table. See documentation here
Emit new event for every insert
, update
, or delete
operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here
Retrieves details of a specific campsite. See the documentation
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
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})
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}`,
},
})
},
})