Baserow

Open source online database tool

Go to site
Explore
/
Apps
/
Baserow

Baserow API Integrations

Build and run workflows using the Baserow API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With Baserow, you can easily build custom software for managing data. Examples include:

  • Custom CRM systems
  • Sales pipelines
  • Project management tools
  • Inventory management systems
  • HR management systems
  • Time tracking tools
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    baserow: {
      type: "app",
      app: "baserow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.baserow.io/api/database/rows/table/[TABLE_ID]/`,
      headers: {
        "Authorization": `Token ${this.baserow.$auth.token}`,
      },
    })
  },
})
Create Row with Baserow API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Baserow
 
Try it
Create Row with Baserow API on New Submission from Typeform API
Typeform + Baserow
 
Try it
Create Row with Baserow API on Custom Events from Zoom API
Zoom + Baserow
 
Try it
Create Row with Baserow API on New Submission (Instant) from Jotform API
Jotform + Baserow
 
Try it
Create Row with Baserow API on New Custom Webhook Events from Stripe API
Stripe + Baserow
 
Try it
Create Row with the Baserow API

Create a row See docs here

 
Try it
Delete Row with the Baserow API

Delete a row See docs here

 
Try it
Get Row with the Baserow API

Get a single row See docs here

 
Try it
List Rows with the Baserow API

List a table's rows See docs here

 
Try it
Update Row with the Baserow API

Update a row See docs here

 
Try it

Authentication

Baserow uses API keys for authentication. When you connect your Baserow account, Pipedream securely stores the keys so you can easily authenticate to Baserow APIs in both code and no-code steps.

Baserow uses a simple token based authentication. You need to generate at least one API token in your settings.