IP2Proxy

The IP2Proxy™ Proxy Detection Web Service is a hosted Web Service that allows instant detection of anonymous proxy, VPN, TOR exit nodes, search engine robots (SES) and residential proxies (RES) by IP address. It is a REST API supporting both JSON and XML responses and provides IP location lookup information when a proxy is detected.

Integrate the IP2Proxy API with the Formatting API

Setup the IP2Proxy API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate IP2Proxy and Formatting remarkably fast. Free for developers.

Query IP address with the IP2Proxy API

Query IP address using IP2Proxy API. See the docs here for how to use this API.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of IP2Proxy

The IP2Proxy API can be used to build applications that can perform the
following tasks:

  • Determine the country, region, city, ISP, domain name, and proxy type of an
    IP address
  • Detect if an IP address is a Tor exit node
  • Detect if an IP address is a public proxy
  • Detect if an IP address is a datacenter IP
  • Detect if an IP address is blacklisted

Connect IP2Proxy

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ip2proxy: {
      type: "app",
      app: "ip2proxy",
    },
    ip: {
      type: "string",
      default: "201.42.237.89"
    },
    package: {
      type: "string",
      default: "PX11"
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ip2proxy.com`,
      params: {
        key: `${this.ip2proxy.$auth.api_key}`,
        ip: `${this.ip}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})