Geocodio can be used to build a number of different applications and tools, including:
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`,
},
})
},
})
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