The API for the Open Health Inspection app.
This API provides an interface to a MongoDB containing data from the Virginia Department of Health on inspections of food service facilities. Data is returned via JSON. To get the current list of routes make a call to the root URL.
It can be implemented using Flask with WSGI on Apache/Nginx, or very simply on Heroku with Gunicorn.
Route | Description | /vendors | provides a complete list of food service vendors |
---|---|
Can be searched by adding any or all of the following parameters:
|
|
/vendor/<vendorid> | provides information on a specific vendor identified by <vendorid> |
returns name, address, city, category, type, score, coordinates, and most recent inspection information | /inspections | list all inspections of a given vendor |
Can be searched by adding any or all of the following parameters:
|
|
/lives/<locality> | |
request a file in LIVES format for a given locality. See yelp.com/healthscores for format. | |
/lives-file/<locality>.zip | |
After a file is requested through /lives/, it will be available at this URL. | |
/bulk/ | |
Provides bulk downloads of all data in the inspection database. Currently the data is only provided in JSON files but other formats will likely be available in the future. The data is currently updated weekly following a run of the Scraper. The files are produced using the mongoexport command line tool. |