Adalo

No code app development platform

Go to site

Adalo API Integrations

Build and run workflows using the Adalo 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

Some examples of what you can build with the Adalo API:

  • Todo List
  • Pinterest Board
  • Shopping List
  • Weather App
  • Basic Calculator
  • Flashcards
  • Expense Tracker
  • Photo Gallery
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    adalo: {
      type: "app",
      app: "adalo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.adalo.com/v0/apps/[APP_ID]/collections/[COLLECTION_ID]`,
      headers: {
        Authorization: `Bearer ${this.adalo.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})
Create Record with Adalo API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Adalo
 
Try it
Send Message (Advanced) with Discord Webhook API on New Record from Adalo API
Adalo + Discord Webhook
 
Try it
Create Record with Adalo API on New Message from Discord API
Discord + Adalo
 
Try it
Create Record with Adalo API on New Message In Channels from Slack API
Slack + Adalo
 
Try it
Create Record with Adalo API on New Message in Channel from Discord Bot API
Discord Bot + Adalo
 
Try it
New Record from the Adalo API

Emit new event when is created a record.

 
Try it
Create Record with the Adalo API

Create a new record. See docs here

 
Try it
Get Records with the Adalo API

Get all records from a collection. See docs here

 
Try it
Update Record with the Adalo API

Update a record. See docs here

 
Try it

Authentication

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

You can access your API key form the left nav > settings gear > app access > Generate API Key. See docs.