Skip to content

query waze (www.waze.com) for live traffic notifications and route planning. waze api made easy

Notifications You must be signed in to change notification settings

Nimrod007/waze-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

waze api - wrapping waze live map

3 steps and your up & running!

1) download waze-server
2) run the server (port 8080) :
java -jar waze-server.jar server
3) send a request:
curl -v "http://localhost:8080/waze/routesWithDirections?end=156+5th+Avenue%2C+New+York%2C+NY+10010&start=6+East+57th+Street%2C+New+York%2C+NY+10022" -H "Accept: application/json"
documentation (full list of supported requests) - link
list of all end-points with curl examples - link

advance usage:

using the the waze service (no server) - link
run the server with custom port:
java -Ddw.server.applicationConnectors[0].port=9090 -Ddw.server.adminConnectors[0].port=9091 -jar waze-server.jar server
run the server with custom config (see conf.yml for example):
java -jar waze-server.jar.jar server conf.yml