What do you want to automate

with Fraudlogix and Deep Tagger?

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

Connect Fraudlogix

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    fraudlogix: {
      type: "app",
      app: "fraudlogix",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://iplist.fraudlogix.com/v5`,
      headers: {
        "x-api-key": `${this.fraudlogix.$auth.api_key}`,
      },
      params: {
        ip: `{your_ip_address}`,
      },
    })
  },
})

Connect Deep Tagger

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    deep_tagger: {
      type: "app",
      app: "deep_tagger",
    }
  },
  async run({steps, $}) {
    const data = {
      "fo_id": `${this.deep_tagger.$auth.project_id}`,
      "text": `<your_invoice>`,
    }
    return await axios($, {
      method: "post",
      url: `https://deeptagger.com/api/v1/extract_data`,
      headers: {
        "content-type": `application/x-www-form-urlencoded`,
        "x-api-key": `${this.deep_tagger.$auth.api_key}`,
      },
      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