We provide route planning for your application (SaaS). Including a powerful Route Optimization API.
Go to siteWith the GraphHopper API, you can build a variety of applications that make use of routing, geocoding, and other map-related features. Some examples of what you can build include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
graphhopper: {
type: "app",
app: "graphhopper",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graphhopper.com/api/1/isochrone`,
params: {
key: `${this.graphhopper.$auth.api_key}`,
point: `{enter_coordinates_here}`,
},
})
},
})
GraphHopper uses API keys for authentication. When you connect your GraphHopper account, Pipedream securely stores the keys so you can easily authenticate to GraphHopper APIs in both code and no-code steps.
Sign in and copy your API key from your Dashboard under “API Keys”