Geocodio

Hassle-free geocoding

Go to site
Explore
/
Apps
/
Geocodio

Geocodio API Integrations

Build and run workflows using the Geocodio API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Geocodio can be used to build a number of different applications and tools, including:

  • Location-based applications and services
  • Geocoding and reverse geocoding
  • Mapping and GIS applications
  • Address validation and cleaning
  • Data analysis and visualization
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    geocodio: {
      type: "app",
      app: "geocodio",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.geocod.io/v1.4/geocode`,
      params: {
        api_key: `${this.geocodio.$auth.api_key}`,
        "q": `1109+N+Highland+St%2c+Arlington+VA`,
      },
    })
  },
})

Authentication

Geocodio uses API keys for authentication. When you connect your Geocodio account, Pipedream securely stores the keys so you can easily authenticate to Geocodio APIs in both code and no-code steps.

Get your API key in your Geocodio dashboard