Abstract - IP Geolocation API

Automate anything with Abstract APIs

Integrate the Abstract - IP Geolocation API API with the Go API

Setup the Abstract - IP Geolocation API API trigger to run a workflow which integrates with the Go API. Pipedream's integration platform allows you to integrate Abstract - IP Geolocation API and Go remarkably fast. Free for developers.

Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it

Overview of Abstract - IP Geolocation API

The Abstract - IP Geolocation API allows you to request detailed information
about a specific IP address, including country, region, city, latitude and
longitude, and more. This information can be used to build a variety of
applications and services, including:

  • IP address lookup and geolocation
  • IP address blocking and filtering
  • Geo-targeted content and advertising
  • Location-based security and fraud detection
  • And more!

Connect Abstract - IP Geolocation API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    abstract_ip_geo: {
      type: "app",
      app: "abstract_ip_geo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://ipgeolocation.abstractapi.com/v1/?api_key=${this.abstract_ip_geo.$auth.api_key}&ip_address=75.111.82.152`,
    })
  },
})

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}