Skip to content
Leo Ribeiro edited this page Jul 17, 2016 · 20 revisions

Florida Restaurant Inspections API?

It's an API that provides Florida Restaurant Inspections.

Endpoints

The start and end dates are mandatory for all the below sections. (The format of dates are always YYYY-MM-DD)

/district/:start-date/:end-date/:id - Select by District

http://198.199.73.168/fra/district/2016-07-01/2016-07-10/D2

Check the /list-counties for a list of available districts.

/county/:start-date/:end-date/:id - Select by County Number

http://198.199.73.168/fra/county/2016-07-01/2016-07-10/16

Check the /list-counties for a list of available counties.

/name/start-date/end-date/name - Select by Business Name

http://198.199.73.168/fra/name/2016-07-01/2016-07-10/*MCDONALD'S*

You can use * as wildcard in the name field.

/location/:start-date/:end-date/:zips - Select by Location Zip Codes

http://198.199.73.168/fra/location/2016-07-01/2016-07-10/33127

/name/:start-date/:end-date/:name/:zips - Select by Business Name and Location Zip Codes

http://198.199.73.168/fra/name/2016-07-01/2016-07-10/*MCDONALD'S*/32308,33314

You can use * as wildcard in the name field.

/get/:id - Full detailed inspection info for the given Inspection Id

http://198.199.73.168/fra/get/5888722

/list-counties - List Districts and County

http://198.199.73.168/fra/list-counties

It lists all the Districts and County in the system, and also displays the number of inspections. The date is not required in this case.

Clone this wiki locally