Every second matters.
Take the right direction.

Welcome to GraphQue
Maps are complicated. Your app doesn’t have to be. GraphQue gives you the routing, geocoding, distance, and directions tools you need to build location-based features without having to build all the map logic yourself.

Get the Right Route

Give us the locations. We’ll figure out the route. Calculate routes, distances, and directions through a simple API without adding unnecessary complexity to your code.

Turn Addresses Into Coordinates

You have an address. We turn it into something your app can use. Get back accurate latitude and longitude coordinates. It’s simple, predictable, and easy to plug in.

Built for the Way You Build

Start small. Grow when you’re ready. Maybe a side project or running a business with thousands of users. Either way, you get reliable mapping tools and generous limits.

Built for Developers.
Useful for Businesses.

GraphQue gives developers the tools to build location-aware products while giving businesses the reliable infrastructure they need to keep those products running.

Build delivery tools, logistics apps, location search, navigation features, travel products, and whatever else your idea needs.

Try GraphQue Playground

# Create with GraphQue.
see how simple mapping can be.

api.graphque
const response = await fetch('https://api.graphque/v1/route', {
method: 'POST',
headers: { 'graphque-api-key': 'gq_...' },
body: JSON.stringify({
origin: { lat: 30.3165, lng: 78.0322 },
destination: { lat: 30.2871, lng: 77.9972 },
vehicle_type: 'two_wheeler'
})
});