Unlock Location Data
What can you build with Placekey API?
Placekey API is a powerful, open source tool that allows developers to create powerful applications in the location data space. With this API, you can create applications that can do a variety of geospatial tasks, such as building and querying maps, providing real-time data analysis and visualization, mobile application development, and more. Here are some examples of what you can do with the Placekey API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
placekey: {
type: "app",
app: "placekey",
}
},
async run({steps, $}) {
const data = {
query: {
city: [CITY],
region: [REGION],
street_address: [STREET_ADDRESS],
postal_code: [POSTAL_CODE],
iso_country_code: [ISO_COUNTRY_CODE]
},
options: {
strict_name_match: false,
},
}
return await axios($, {
method: "post",
url: `https://api.placekey.io/v1/placekey`,
headers: {
"apikey": `${this.placekey.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include: