What do you want to automate

with SARE and Extracta.ai?

Prompt, edit and deploy AI agents that connect to SARE, 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
Add Email with the SARE API

Add an email to SARE. Optionally, assign the subscriber to a group. See the documentation

 
Try it
Remove Email from Groups with the SARE API

Remove email from specified groups in SARE. See the documentation

 
Try it
Send Transactional Email with the SARE API

Send a transactional email. See the documentation

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

Overview of SARE

The SARE API provides robust tools for email marketing and automation, enabling users to manage subscribers, send emails, and analyze campaigns directly via API. By leveraging SARE's features on Pipedream, you can automate workflows involving email operations, integrate with other platforms for enhanced data handling and customer engagement, and streamline communications in various marketing campaigns. This integration can particularly benefit marketers looking to automate responses based on subscriber behavior or integrate email marketing metrics with other business tools.

Connect SARE

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: {
    sare: {
      type: "app",
      app: "sare",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://s.enewsletter.pl/api/v1/${this.sare.$auth.uid}/email/props`,
      headers: {
        "ApiKey": `${this.sare.$auth.api_key}`,
      },
    })
  },
})

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