The HERE API provides a suite of location-based services including maps, geocoding, places, routing, and traffic. With Pipedream, you can automate workflows that require real-time location intelligence. For instance, enhance logistics with dynamic routing, personalize customer interactions with geolocation data, or monitor assets by integrating location updates into your systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
here: {
type: "app",
app: "here",
}
},
async run({steps, $}) {
// Returns a sample set of weather observations for Berlin
// See https://developer.here.com/documentation/weather/dev_guide/topics/example-weather-observation.html
return await axios($, {
url: `https://weather.ls.hereapi.com/weather/1.0/report.json?apiKey=${this.here.$auth.apikey}&product=observation&name=Berlin-Tegel`,
})
},
})
Real-time Delivery Tracking: Use the HERE API to track delivery vehicles. With Pipedream, you can trigger notifications in Slack or email whenever a vehicle enters or exits a geofenced area, ensuring timely updates on delivery statuses.
Event-Driven Map Updates: Keep a dynamic map that reflects real-time changes. When a Pipedream workflow detects updates in a database or receives a webhook, it can fetch new geocoded locations from the HERE API and update a shared map on a platform like Google Sheets or a custom web app.
Automated Routing for Field Service: Optimize routes for field service personnel. Using Pipedream workflows, you can collect job tickets, leverage the HERE API to calculate the most efficient routes, and then send these optimized routes to workers' mobile devices via SMS or a messaging app like WhatsApp.
Emits the weather report for a specific ZIP code on a schedule
HERE uses API keys for authentication. When you connect your HERE account, Pipedream securely stores the keys so you can easily authenticate to HERE APIs in both code and no-code steps.
Sign up for a HERE account, then create a new application and associated API key — see the HERE Authentication Docs for step-by-step instructions.
Enter your API key below.