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 Airtable (OAuth) API

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

Query IP address with IP2Proxy API on New Field from Airtable (OAuth) API
Airtable (OAuth) + IP2Proxy
 
Try it
Query IP address with IP2Proxy API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + IP2Proxy
 
Try it
Query IP address with IP2Proxy API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + IP2Proxy
 
Try it
Query IP address with IP2Proxy API on New or Modified Records from Airtable (OAuth) API
Airtable (OAuth) + IP2Proxy
 
Try it
Query IP address with IP2Proxy API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + IP2Proxy
 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
New or Modified Field from the Airtable (OAuth) API

Emit new event for each new or modified field in a table

 
Try it
New or Modified Records from the Airtable (OAuth) API

Emit new event for each new or modified record in a table

 
Try it
New or Modified Records in View from the Airtable (OAuth) API

Emit new event for each new or modified record in a view

 
Try it
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
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it
Create Single Record with the Airtable (OAuth) API

Adds a record to a table.

 
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}`,
      },
    })
  },
})

Overview of Airtable (OAuth)

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})