Skip to content
Ernie Hsiung edited this page Aug 4, 2016 · 20 revisions

Florida Restaurant Inspections API

It's an API that provides Florida Restaurant Inspections.

Endpoints

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

[GET] /district/:id - Select by District

http://198.199.73.168/fra/district/D2?startDate=2016-07-01&endDate=2016-07-10

Check the /list-counties for a list of available districts. As of August, 2016, Miami-Dade and Monroe County has a district value of D1 while Broward and West Palm Beach has a district value of D2.

[GET] /county/:id - Select by County Number

http://198.199.73.168/fra/county/16?startDate=2016-07-01&endDate=2016-07-10

Check the /list-counties for a list of available counties. As of August, 2016 the following countynumber values are assigned to these South Florida counties:

  • Miami-Dade (listed as Dade): 23
  • Monroe: 54
  • Broward: 16
  • Palm Beach: 60

[GET] /name/:name - Select by Business Name

http://198.199.73.168/fra/name/*MCDONALD'S*?startDate=2016-07-01&endDate=2016-07-10

You can use * as wildcard in the name field.

[GET] /location/:zips - Select by Location Zip Codes

http://198.199.73.168/fra/location/33127?startDate=2016-07-01&endDate=2016-07-10

[GET] /name/:name/:zips - Select by Business Name and Location Zip Codes

http://198.199.73.168/fra/name/*MCDONALD'S*/32308,33314?startDate=2016-07-01&endDate=2016-07-10

You can use * as wildcard in the name field.

[GET] /inspection/:id - Full detailed inspection info for the given Inspection Id

http://198.199.73.168/fra/inspection/5888722

Check the Violation Codes here - go to the table Food Service Violations Numbered 1-58, and check extractions after 2013.

Also see the following descriptions:

[GET] /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