What do you want to automate

with Ably and Extracta.ai?

Prompt, edit and deploy AI agents that connect to Ably, Extracta.ai and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Publish Message with the Ably API

Publish a message in a channel. See docs here

 
Try it
Publish Push Notification with the Ably API

Publish a push notification for a channel. See docs here

 
Try it
Integrate the Ably API with the Extracta.ai API
Setup the Ably API trigger to run a workflow which integrates with the Extracta.ai API. Pipedream's integration platform allows you to integrate Ably and Extracta.ai remarkably fast. Free for developers.

Overview of Ably

Ably API provides a platform for adding real-time messaging, streaming, and presence capabilities to your apps. With Pipedream, you can harness this power to create dynamic, event-driven workflows. Automate notifications, synchronize data across systems in real time, or react to Ably events to trigger actions in other services, like sending emails, updating databases, or calling external APIs.

Connect Ably

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: {
    ably: {
      type: "app",
      app: "ably",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://rest.ably.io/channels/rest-example/messages`,
      auth: {
        username: `${this.ably.$auth.api_key_initial}`,
        password: `${this.ably.$auth.api_key_remaining}`,
      },
    })
  },
})

Connect Extracta.ai

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    extracta_ai: {
      type: "app",
      app: "extracta_ai",
    }
  },
  async run({steps, $}) {
    const data = {
        "extractionDetails": { 
            "name": "CVs Extraction",
            "description": "...",
            "language": "English",
            "options": {
                "hasTable": false,
                "hasVisuals": false,
                "handwrittenTextRecognition": false,
                "checkboxRecognition": false
            },
            "fields": [
                {
                    "description": "",
                    "example": "",
                    "key": "name"
                },
                {
                    "description": "",
                    "example": "",
                    "key": "surname"
                },
                {
                    "description": "",
                    "example": "",
                    "key": "phone_number"
                },
                {
                    "description": "last job title name",
                    "example": "Programmer",
                    "key": "last_job_position"
                },
                {
                    "description": "the number of years in numbers",
                    "example": "6",
                    "key": "years_of_experience"
                }
            ]
        }
    }
    
    return await axios($, {
      method: "post",
      url: `https://api.extracta.ai/api/v1/createExtraction`,
      headers: {
        Authorization: `Bearer ${this.extracta_ai.$auth.api_key}`,
        "content-type": `application/json`,
      },
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo