What do you want to automate

with Smartproxy and Extracta.ai?

Prompt, edit and deploy AI agents that connect to Smartproxy, 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
Integrate the Smartproxy API with the Extracta.ai API
Setup the Smartproxy API trigger to run a workflow which integrates with the Extracta.ai API. Pipedream's integration platform allows you to integrate Smartproxy and Extracta.ai remarkably fast. Free for developers.

Overview of Smartproxy

Smartproxy is a tool that grants you access to a vast pool of residential IPs, allowing you to scrape data, automate tasks, and bypass geolocation restrictions without getting blocked. It's valuable for tasks that require mimicking real user behavior and accessing web data with minimal footprint. On Pipedream, you can leverage the Smartproxy API to create workflows that automate these tasks, integrate with other services, and handle the data as needed, all in a serverless environment.

Connect Smartproxy

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: {
    smartproxy: {
      type: "app",
      app: "smartproxy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.smartproxy.$auth.api_type}.smartproxy.com/v2/sub-users`,
      params: {
        "api-key": `${this.smartproxy.$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