Mapping Systems
Toggle menu

Tutorials

Networks

In this exercise, we will explore networks and distance. We will start by using an abstract network of points and lines to illustrate some concepts, and then move on to using real-world data to identify proximate objects based on network distance.

Import libraries

import geopandas as gpd
import numpy as np
import matplotlib.pyplot as plt
from shapely.geometry import LineString, MultiLineString, Point, Polygon
import pandas as pd
import requests
import networkx as nx
import osmnx as ox
import h3
import libpysal as lps
# we'll begin by borrowing the plotting helper function we created in the geoprocessing notebook for use here.
# oftentimes when writing functions that we want to come back to, we can create a new python file (such as utils.py)
# and import functions from there.
def set_axis_off():
    """
    Set the default matplotlib settings to turn off axes and ticks.
    This function modifies the global matplotlib configuration to hide axes and ticks
    for all plots created after this function is called.
    """
    # set axis off by default
    plt.rcParams["axes.axisbelow"] = False
    plt.rcParams["axes.axisbelow"] = False
    plt.rcParams["axes.spines.left"] = False
    plt.rcParams["axes.spines.right"] = False
    plt.rcParams["axes.spines.top"] = False
    plt.rcParams["axes.spines.bottom"] = False

    # set tick params off by default
    plt.rcParams["xtick.bottom"] = False
    plt.rcParams["xtick.top"] = False
    plt.rcParams["xtick.labelbottom"] = False
    plt.rcParams["xtick.labeltop"] = False
    plt.rcParams["ytick.left"] = False
    plt.rcParams["ytick.right"] = False
    plt.rcParams["ytick.labelleft"] = False
    plt.rcParams["ytick.labelright"] = False
set_axis_off()

To begin, we will find the approximate bounding box of NYC.

# bounding box of nyc
bbox = (-74.3, 40.5, -73.7, 40.9)

Create random network

We’ll begin by creating a dataframe of 100 random points. As we can see below, we are using numpy to generate random numbers, along with geopandas’ points_from_xy() to create a geodataframe from these points. We are using the bounds of NYC to make sure that the network approximately covers the city.

# create a geodataframe of 100 random points
np.random.seed(0)
n = 100
df = pd.DataFrame(
    {
        "geometry": gpd.points_from_xy(
            np.random.uniform(-74.3, -73.7, n),
            np.random.uniform(40.5, 40.9, n),
        ),
    }
)

And here we cast the dataframe as a geodataframe and set its CRS.

gdf = gpd.GeoDataFrame(df, crs="EPSG:4326")

As we can see from our initial plot, we have a mass of 100 randomly distributed points. At this stage, this is meaningless!

gdf.plot()
<Axes: >

Output

Since we are creating a network (instead of analyzing an already existing one), let’s connect each node to its five nearest neighbors (measured based on straight-line or Euclidean distance). We’ll use geopandas’ distance method to calculate the distance between each pair of points, and then use that to create a list of edges. There are many ways to calculate distance like this, some of which are more appropriate for working with a greater volume of data (scipy’s KDTree operations chief among them).

We can also ignore the warning about the geographic CRS as well given our use case and scale, but do keep in mind that projection-related considerations are extremely important when calculating distances.

# find five nearest neighbors for each point, not including itself
k = 5
neighbors = gdf.geometry.apply(lambda x: gdf.geometry.distance(x)).values.argsort(
    axis=1
)[:, 1 : k + 1]

# join neighbors to original dataframe
gdf["neighbors"] = neighbors.tolist()
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/2007509322.py:3: UserWarning: Geometry is in a geographic CRS. Results from 'distance' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.

  neighbors = gdf.geometry.apply(lambda x: gdf.geometry.distance(x)).values.argsort(
gdf.neighbors
0      [12, 28, 88, 2, 37]
1     [83, 91, 42, 39, 31]
2      [88, 12, 62, 37, 0]
3     [84, 11, 22, 51, 56]
4     [29, 41, 32, 58, 80]
              ...         
95    [61, 24, 57, 87, 15]
96     [33, 50, 91, 83, 1]
97    [75, 69, 67, 15, 92]
98      [66, 8, 52, 72, 1]
99    [15, 34, 67, 61, 82]
Name: neighbors, Length: 100, dtype: object

Now if we inspect our dataframe, we see that we have an additional column, neighbors, which contains the row index number of the five nearest points to that row.

gdf.head(13)
geometry neighbors
0 POINT (-73.97071 40.77113) [12, 28, 88, 2, 37]
1 POINT (-73.87089 40.608) [83, 91, 42, 39, 31]
2 POINT (-73.93834 40.79408) [88, 12, 62, 37, 0]
3 POINT (-73.97307 40.88488) [84, 11, 22, 51, 56]
4 POINT (-74.04581 40.5995) [29, 41, 32, 58, 80]
5 POINT (-73.91246 40.73046) [25, 35, 36, 37, 45]
6 POINT (-74.03745 40.73682) [81, 86, 28, 0, 58]
7 POINT (-73.76494 40.7289) [17, 38, 19, 70, 21]
8 POINT (-73.7218 40.58923) [72, 52, 27, 13, 89]
9 POINT (-74.06994 40.8811) [49, 40, 65, 22, 51]
10 POINT (-73.82496 40.67885) [31, 21, 42, 17, 39]
11 POINT (-73.98266 40.83856) [84, 3, 88, 51, 22]
12 POINT (-73.95917 40.77979) [88, 0, 2, 28, 37]

Based on that information, we can now draw lines (or network edges) between each point and its nearest neighbors. We can use the following function to create an array of lines between a point and it’s neighbors.

Let’s consider the component parts of the function:

  • lines = []: we create an empty array to store line geometry in
  • for i, neighbor in enumerage(r.neighbors): we set up a for loop to iterate through each row’s list of point indexes
  • lines.append(LineString([r.geometry, gdf.loc[neighbor].geometry])): we create a new LineString geometry with two points: the starting point at the input row r.geometry, and ending at the looked up neighbor’s geometry gdf.loc[neighbor].geometry. The .loc[neighbor] allows us to find the row that matches based on the neighbor id, and then we access its geometry property
  • return MultiLineString(lines): we combine each of the line geometries in the lines array into one complex MultiLineString, which is what it sounds like (a combination of LineStrings).
def create_lines(r):
    lines = []
    for i, neighbor in enumerate(r.neighbors):
        lines.append(LineString([r.geometry, gdf.loc[neighbor].geometry]))
    return MultiLineString(lines)

We can then apply the function to each row (axis=1). Keep in mind that when executing a function via apply(), the row (or column) input is implied and is the default input r in the function.

gdf["line_geometry"] = gdf.apply(create_lines, axis=1)

If we inspect our dataframe again, we’ll see a new column line_geometry which represents the edges between each point and its five nearest neighbors.

gdf.head()
geometry neighbors line_geometry
0 POINT (-73.97071 40.77113) [12, 28, 88, 2, 37] MULTILINESTRING ((-73.97071 40.77113, -73.9591...
1 POINT (-73.87089 40.608) [83, 91, 42, 39, 31] MULTILINESTRING ((-73.87089 40.608, -73.88452 ...
2 POINT (-73.93834 40.79408) [88, 12, 62, 37, 0] MULTILINESTRING ((-73.93834 40.79408, -73.9544...
3 POINT (-73.97307 40.88488) [84, 11, 22, 51, 56] MULTILINESTRING ((-73.97307 40.88488, -73.9600...
4 POINT (-74.04581 40.5995) [29, 41, 32, 58, 80] MULTILINESTRING ((-74.04581 40.5995, -74.0512 ...

We can create a new geodataframe based on this edges geometry and plot it- now we have a connected network of points and lines!

lines_gdf = gpd.GeoDataFrame(
    gdf[["line_geometry"]], geometry="line_geometry", crs="EPSG:4326"
)
ax = lines_gdf.plot(color="black", alpha=0.5, linewidth=0.2)
gdf.plot(ax=ax, color="black")

# optionally save the figure to file
# plt.savefig("lines.pdf", bbox_inches="tight", pad_inches=0)
<Axes: >

Output

Saving our datasets

You may optionally want to save these nodes and edges to file to inspect in QGIS or another software. To do so, we use the to_file() function to save out as GeoJSON files

gdf["geometry"].to_file("nodes.geojson", driver="GeoJSON")
gdf["line_geometry"].to_file("edges.geojson", driver="GeoJSON")
/Users/marioag/miniforge3/envs/cdp26/lib/python3.14/site-packages/pyogrio/geopandas.py:917: UserWarning: 'crs' was not provided.  The output dataset will not have projection information defined and may not be usable in other systems.
  write(
gdf.sample(10)
geometry neighbors line_geometry
91 POINT (-73.89955 40.58394) [83, 1, 96, 50, 33] MULTILINESTRING ((-73.89955 40.58394, -73.8845...
29 POINT (-74.0512 40.61603) [4, 41, 58, 32, 90] MULTILINESTRING ((-74.0512 40.61603, -74.04581...
2 POINT (-73.93834 40.79408) [88, 12, 62, 37, 0] MULTILINESTRING ((-73.93834 40.79408, -73.9544...
50 POINT (-73.95788 40.55978) [96, 73, 33, 91, 32] MULTILINESTRING ((-73.95788 40.55978, -73.9480...
44 POINT (-73.89994 40.82248) [56, 62, 45, 74, 2] MULTILINESTRING ((-73.89994 40.82248, -73.9081...
78 POINT (-74.12232 40.78177) [48, 94, 30, 85, 57] MULTILINESTRING ((-74.12232 40.78177, -74.1107...
33 POINT (-73.95894 40.61931) [96, 50, 91, 58, 83] MULTILINESTRING ((-73.95894 40.61931, -73.9480...
65 POINT (-74.07876 40.84232) [40, 9, 51, 49, 48] MULTILINESTRING ((-74.07876 40.84232, -74.0843...
75 POINT (-74.27649 40.58957) [97, 69, 92, 67, 15] MULTILINESTRING ((-74.27649 40.58957, -74.2879...
45 POINT (-73.89762 40.78156) [62, 37, 44, 2, 56] MULTILINESTRING ((-73.89762 40.78156, -73.9062...

Let’s plot the nearest neighbors and connecting edges for a single point. Below, we take a random point s and then highlight it in blue, and connect it to its five nearest neighbors in orange. Keep in mind that every time you rerun the following cell, a new sampled point will be chosen.

# plot the lines for a single point
s = gdf.sample()
ax = lines_gdf.plot(color="black", alpha=0.5, linewidth=0.2)
gdf.plot(ax=ax, color="red")

s.plot(ax=ax, color="blue")
gpd.GeoSeries(s.line_geometry).plot(ax=plt.gca(), color="orange")
<Axes: >

Output

Apply to a real-world example

The toy problem above was a fine way to explore this concept, so now let’s apply it to real-world networks. We will use an API endpoint hosted through NYCOpenData to find restaurants in Morningside Heights.

There are a couple of things to keep in mind about the following API request. First is the request itself: we use the popular requests library to perform a GET request (there are many types of requests, read more here) on the API endpoint listed at the resource URL.

We can see on the open data portal’s website that each dataset has an Actions dropdown, and within that there’s an API option:

image.png

The API endpoint given there is the basis of the URL below. We are adding some additional query filters to focus the response items and reduce the total number of responses (as you can see in the screenshot above, there are over 280,000 results).

We add ?NTA=MN09&$limit=2000, which signifies that we only want resulst where the NTA field equals MN09 (i.e. Morningside Heights) and we limit the number of responses to 2000. You can learn more about formatting SODA queries here

get restaurants in Morningside Heights

If a query is successful, it will return a result that starts with 2**, such as 200. Error codes are reserved for 4** and 5**. We can make this most basic request first to confirm that our query is properly formatted:

requests.get(
    "https://data.cityofnewyork.us/resource/43nn-pn8j.json?NTA=MN09&$limit=2000"
)
<Response [200]>

What we really want, however, is the json associated with the response. We can create a new variable and set it to equal the response json payload:

mh_restaurants = requests.get(
    "https://data.cityofnewyork.us/resource/43nn-pn8j.json?NTA=MN09&$limit=2000"
).json()

If we print the results, we see we have an array of objects (up to 2000) that represents the restaurants in MN09. If you scan through, you’ll see attributes like street, building number, cuisine_description, and restaurant scores.

mh_restaurants
[{'camis': '50177020',
  'dba': 'CALIAM CU LLC',
  'boro': 'Manhattan',
  'building': '1187',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9172850298',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.808353822955',
  'longitude': '-73.95992094497',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059499',
  'bbl': '1019620001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95992094497, 40.808353822955]}},
 {'camis': '50180212',
  'dba': 'NAISNOW',
  'boro': 'Manhattan',
  'building': '971',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3322596720',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.801438708714',
  'longitude': '-73.964960219668',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055994',
  'bbl': '1018620063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964960219668, 40.801438708714]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-07-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50159692',
  'dba': 'ZAAD',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3478815576',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-04-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2024-01-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05H',
  'violation_description': 'No approved written standard operating procedure for avoiding contamination by refillable returnable containers.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-01-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '40365577',
  'dba': 'V & T PIZZERIA',
  'boro': 'Manhattan',
  'building': '1024',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126631708',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803329420525',
  'longitude': '-73.963611914951',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963611914951, 40.803329420525]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Re-inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-08T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '49',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-03-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50071792',
  'dba': 'PANDA EXPRESS # 2792',
  'boro': 'Manhattan',
  'building': '2852',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126780139',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-12-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804653217067',
  'longitude': '-73.966327526336',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056916',
  'bbl': '1018820061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966327526336, 40.804653217067]}},
 {'camis': '50109228',
  'dba': 'HEX AND COMPANY',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2124391008',
  'cuisine_description': 'American',
  'inspection_date': '2023-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '41212798',
  'dba': 'CHOKOLAT PATISSERIE',
  'boro': 'Manhattan',
  'building': '3111',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126626096',
  'cuisine_description': 'French',
  'inspection_date': '2026-01-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '15',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812816942241',
  'longitude': '-73.960391497006',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059837',
  'bbl': '1019930015',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960391497006, 40.812816942241]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-04-06T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '50',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50159692',
  'dba': 'ZAAD',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3478815576',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-04-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '50',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50055077',
  'dba': 'PUBLIQUE ESPRESSO',
  'boro': 'Manhattan',
  'building': '420',
  'street': 'WEST  118 STREET',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-09-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807609639467',
  'longitude': '-73.95890994729',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1059497',
  'bbl': '1019610039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95890994729, 40.807609639467]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '56',
  'grade': 'C',
  'grade_date': '2023-01-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2023-05-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2023-05-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50099039',
  'dba': 'DUNKIN',
  'boro': 'Manhattan',
  'building': '1235',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125325003',
  'cuisine_description': 'Donuts',
  'inspection_date': '2024-08-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-08-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809794439959',
  'longitude': '-73.958861631653',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958861631653, 40.809794439959]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-07',
  'violation_description': 'Failure to maintain a sufficient supply of single-use, non-compostable plastic straws.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '50046844',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '965',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122222000',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '3',
  'grade': 'A',
  'grade_date': '2025-02-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801293269011',
  'longitude': '-73.965065043605',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055985',
  'bbl': '1018620003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065043605, 40.801293269011]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2024-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04C',
  'violation_description': 'Food worker/food vendor does not use utensil or other barrier to eliminate bare hand contact with food that will not receive adequate additional heat treatment.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-06-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2025-02-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-02-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '45',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2022-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '44',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2022-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20F',
  'violation_description': 'Current letter grade sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '40813994',
  'dba': 'MAX SOHA',
  'boro': 'Manhattan',
  'building': '1274',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125312221',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-06-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811111579854',
  'longitude': '-73.957928788503',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059680',
  'bbl': '1019770036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957928788503, 40.811111579854]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02F',
  'violation_description': 'Meat, fish, molluscan shellfish, unpasteurized raw shell eggs, poultry or other TCS offered or served raw or undercooked and written notice not provided to consumer.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '40365577',
  'dba': 'V & T PIZZERIA',
  'boro': 'Manhattan',
  'building': '1024',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126631708',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-02-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803329420525',
  'longitude': '-73.963611914951',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963611914951, 40.803329420525]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50142894',
  'dba': 'MANHATTAN SCHOOL OF MUSIC',
  'boro': 'Manhattan',
  'building': '120',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '8457219288',
  'cuisine_description': 'American',
  'inspection_date': '2025-10-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-10-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812468880147',
  'longitude': '-73.961930662882',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076684',
  'bbl': '1019930001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961930662882, 40.812468880147]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2024-01-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-01-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '64',
  'grade': 'C',
  'grade_date': '2024-09-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50176968',
  'dba': 'DURAR CAFE',
  'boro': 'Manhattan',
  'building': '996',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463441464',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'Z',
  'grade_date': '2026-03-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.802525393567',
  'longitude': '-73.964197505931',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964197505931, 40.802525393567]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-04-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-10-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '35',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-09-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50137347',
  'dba': "EVERETT CAFE (TEACHER'S COLLEGE)",
  'boro': 'Manhattan',
  'building': '501',
  'street': 'WEST  121 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2026-05-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-07-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '16',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2024-04-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '16',
  'grade': 'B',
  'grade_date': '2024-04-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50145822',
  'dba': 'PINKBERRY',
  'boro': 'Manhattan',
  'building': '2851',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172915340',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2026-03-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2026-03-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804590107999',
  'longitude': '-73.966396189196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966396189196, 40.804590107999]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-09-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10A',
  'violation_description': 'Toilet facility not maintained or provided with toilet paper, waste receptacle or self-closing door.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10A',
  'violation_description': 'Toilet facility not maintained or provided with toilet paper, waste receptacle or self-closing door.',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50060424',
  'dba': 'THE CRAFTSMAN',
  'boro': 'Manhattan',
  'building': '3155',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129330602',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-03-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814529225873',
  'longitude': '-73.959144096096',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059855',
  'bbl': '1019930086',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959144096096, 40.814529225873]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-04-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10D',
  'violation_description': 'Mechanical or natural ventilation not provided, inadequate, improperly installed, in disrepair or fails to prevent and control excessive build-up of grease, heat, steam condensation, vapors, odors, smoke or fumes.',
  'critical_flag': 'Not Critical',
  'score': '46',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50093228',
  'dba': "BARNARD COLLEGE - DIANA'S CENTER CAFE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '3472237191',
  'cuisine_description': 'American',
  'inspection_date': '2023-09-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2023-09-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04F',
  'violation_description': 'Food preparation area, food storage area, or other area used by employees or patrons, contaminated by sewage or liquid waste.',
  'critical_flag': 'Critical',
  'score': '93',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '48',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'grade': 'C',
  'grade_date': '2025-09-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50161998',
  'dba': 'SUPER NICE PIZZA',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '5168496039',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2025-10-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-04-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '50',
  'grade': 'C',
  'grade_date': '2024-04-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-05-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-06T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper.  Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '0',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2023-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '32',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '50',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-15T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '15',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2024-10-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-10-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-10-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-03-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-03-20T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-09-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-09-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2026-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '18-11',
  'violation_description': 'Food Protection Certificate not available for inspection',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '40685734',
  'dba': 'TOAST',
  'boro': 'Manhattan',
  'building': '3157',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126621144',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing:  Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-09-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814559410341',
  'longitude': '-73.959122401347',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059856',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959122401347, 40.814559410341]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2026-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2026-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-04-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-11-21T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Critical',
  'score': '59',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '40710951',
  'dba': 'LENFEST CAFE - JEROME GREEN HALL',
  'boro': 'Manhattan',
  'building': '435',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128544999',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-01-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806223793942',
  'longitude': '-73.959618804588',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1076680',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959618804588, 40.806223793942]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '41424484',
  'dba': 'CHEF MIKES SUB SHOP AT URIS DELI (MAIN CAMPUS)',
  'boro': 'Manhattan',
  'building': '411',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128545341',
  'cuisine_description': 'American',
  'inspection_date': '2022-04-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2022-04-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806273239958',
  'longitude': '-73.959734366147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959734366147, 40.806273239958]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-07-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-07',
  'violation_description': 'Failure to maintain a sufficient supply of single-use, non-compostable plastic straws.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '62',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-09-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-09-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-08-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-08-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '40364179',
  'dba': "MISS MAIME'S SPOONBREAD TOO",
  'boro': 'Manhattan',
  'building': '364',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '2128656744',
  'cuisine_description': 'Soul Food',
  'inspection_date': '2024-07-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80137126967',
  'longitude': '-73.96015994361',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96015994361, 40.80137126967]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Re-inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '50',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2024-06-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '41422049',
  'dba': 'THE FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2026-01-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-01-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '50080692',
  'dba': 'GONG CHA',
  'boro': 'Manhattan',
  'building': '2810',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468506566',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-12-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80326466421',
  'longitude': '-73.967328776455',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967328776455, 40.80326466421]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50076821',
  'dba': 'DIVE 106',
  'boro': 'Manhattan',
  'building': '938',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9179652840',
  'cuisine_description': 'American',
  'inspection_date': '2025-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800579800343',
  'longitude': '-73.965614432776',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056638',
  'bbl': '1018780030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614432776, 40.800579800343]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-05-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '56',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-04',
  'violation_description': '“Choking first aid” poster not posted. “Alcohol and Pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '50089601',
  'dba': "OREN'S DAILY ROAST",
  'boro': 'Manhattan',
  'building': '2882',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2123485400',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-03-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805545068261',
  'longitude': '-73.965680489622',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965680489622, 40.805545068261]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-02-09T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'Z',
  'grade_date': '2023-02-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '41424484',
  'dba': 'CHEF MIKES SUB SHOP AT URIS DELI (MAIN CAMPUS)',
  'boro': 'Manhattan',
  'building': '411',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128545341',
  'cuisine_description': 'American',
  'inspection_date': '2025-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2025-02-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806273239958',
  'longitude': '-73.959734366147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959734366147, 40.806273239958]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2022-01-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20F',
  'violation_description': 'Current letter grade sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2024-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2024-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50064777',
  'dba': 'OSTERIA 106',
  'boro': 'Manhattan',
  'building': '53',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '6468337614',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-05-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.798838459462',
  'longitude': '-73.961905981494',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055649',
  'bbl': '1018420012',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961905981494, 40.798838459462]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-05-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-07-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '41365100',
  'dba': 'HAAGEN-DAZS',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126625265',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-07-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50009442',
  'dba': 'NOUS ESPRESSO BAR - LOCATED INSIDE PHILOSOPHY HALL IN COLUMBIA UNIVERSITY',
  'boro': 'Manhattan',
  'building': '1150',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807226024381',
  'longitude': '-73.960766902947',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084458',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960766902947, 40.807226024381]}},
 {'camis': '50044763',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '281',
  'street': 'SAINT NICHOLAS AVENUE',
  'zipcode': '10027',
  'phone': '9173785700',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2025-08-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-08-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810379516715',
  'longitude': '-73.952879028953',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059297',
  'bbl': '1019510014',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952879028953, 40.810379516715]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '25',
  'grade': 'B',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50071449',
  'dba': 'COLUMBIA DINING URIS BLUE JAVA',
  'boro': 'Manhattan',
  'building': '3022',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-04-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.',
  'critical_flag': 'Not Critical',
  'score': '4',
  'grade': 'A',
  'grade_date': '2022-04-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810122256858',
  'longitude': '-73.962336604627',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084473',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962336604627, 40.810122256858]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '26',
  'grade': 'B',
  'grade_date': '2025-01-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-06',
  'violation_description': 'Providing single-use, non-compostable plastic straws to customers without customer request (including providing such straws at a self-serve station)',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-12-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '36',
  'grade': 'Z',
  'grade_date': '2026-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50165527',
  'dba': 'UPSIDE PIZZA',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9175878888',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-01-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-01-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2024-07-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '45',
  'grade': 'C',
  'grade_date': '2024-11-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-06-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-06-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-06-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '41212798',
  'dba': 'CHOKOLAT PATISSERIE',
  'boro': 'Manhattan',
  'building': '3111',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126626096',
  'cuisine_description': 'French',
  'inspection_date': '2026-04-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2026-04-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.812816942241',
  'longitude': '-73.960391497006',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059837',
  'bbl': '1019930015',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960391497006, 40.812816942241]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2022-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice present in facility's food and/or non-food areas.",
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2022-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2024-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-07-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-10-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-10-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '91',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '40991543',
  'dba': 'BLUE JAVA COFFEE BAR - BUTLER LIBRARY',
  'boro': 'Manhattan',
  'building': '535',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128541972',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '14',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806236144809',
  'longitude': '-73.963729523583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082165',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963729523583, 40.806236144809]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-01-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedure improper.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-10-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-09-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-06',
  'violation_description': 'Contract with a pest management professional not in place. Record of extermination activities not kept on premises.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2022-05-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.',
  'critical_flag': 'Not Critical',
  'score': '32',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '40365577',
  'dba': 'V & T PIZZERIA',
  'boro': 'Manhattan',
  'building': '1024',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126631708',
  'cuisine_description': 'Italian',
  'inspection_date': '2023-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2023-06-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803329420525',
  'longitude': '-73.963611914951',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963611914951, 40.803329420525]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '20',
  'grade': 'Z',
  'grade_date': '2025-11-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '67',
  'grade': 'Z',
  'grade_date': '2026-05-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50066588',
  'dba': "CAP'T LOUI",
  'boro': 'Manhattan',
  'building': '3147',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122226608',
  'cuisine_description': 'Seafood',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-09-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814134085217',
  'longitude': '-73.959433353051',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059851',
  'bbl': '1019930079',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959433353051, 40.814134085217]}},
 {'camis': '50081739',
  'dba': 'JOE COFFEE COMPANY',
  'boro': 'Manhattan',
  'building': '2950',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129247400',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-08-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2022-08-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807685492079',
  'longitude': '-73.964115248614',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082164',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964115248614, 40.807685492079]}},
 {'camis': '50044876',
  'dba': 'ARTS & CRAFTS BEER PARLOR',
  'boro': 'Manhattan',
  'building': '1135',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756835',
  'cuisine_description': 'Vegan',
  'inspection_date': '2023-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '6',
  'grade': 'A',
  'grade_date': '2023-03-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806696410041',
  'longitude': '-73.961124830344',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1056058',
  'bbl': '1018670074',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961124830344, 40.806696410041]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '71',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-03-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50055609',
  'dba': 'CAFE EAST',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172168812',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-07-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '4',
  'grade': 'A',
  'grade_date': '2024-07-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2024-07-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '67',
  'grade': 'Z',
  'grade_date': '2026-05-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '60',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '50142409',
  'dba': 'THREE TIMES',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463705552',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '02H',
  'violation_description': 'After cooking or removal from hot holding, TCS food not cooled by an approved method whereby the internal temperature is reduced from 140 °F to 70 °F or less within 2 hours, and from 70 °F to 41 °F or less within 4 additional hours.',
  'critical_flag': 'Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2023-05-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2022-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2022-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-04-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-04-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-03-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2025-03-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50043772',
  'dba': 'THE HAMILTON',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176137264',
  'cuisine_description': 'American',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-11-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802555579027',
  'longitude': '-73.96417581741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056713',
  'bbl': '1018810032',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96417581741, 40.802555579027]}},
 {'camis': '50165527',
  'dba': 'UPSIDE PIZZA',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9175878888',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2025-01-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2025-01-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '41365100',
  'dba': 'HAAGEN-DAZS',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126625265',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2025-11-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-11-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '03A',
  'violation_description': 'Food, prohibited, from unapproved or unknown source, home canned or home prepared. Animal slaughtered, butchered or dressed (eviscerated, skinned) in establishment. Reduced Oxygen Packaged (ROP) fish not frozen before processing. ROP food prepared on premises transported to another site.',
  'critical_flag': 'Critical',
  'score': '36',
  'grade': 'Z',
  'grade_date': '2026-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-04-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2024-04-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50119564',
  'dba': 'HOMEMADE TAQUERIA',
  'boro': 'Manhattan',
  'building': '999',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2124193866',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-04-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801256410996',
  'longitude': '-73.961391693181',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055739',
  'bbl': '1018450001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961391693181, 40.801256410996]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50097393',
  'dba': 'JEWISH THEOLOGICAL SEMINARY CAFE',
  'boro': 'Manhattan',
  'building': '3080',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126788822',
  'cuisine_description': 'Jewish/Kosher',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811914140091',
  'longitude': '-73.961031457195',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059669',
  'bbl': '1019770001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961031457195, 40.811914140091]}},
 {'camis': '50009442',
  'dba': 'NOUS ESPRESSO BAR - LOCATED INSIDE PHILOSOPHY HALL IN COLUMBIA UNIVERSITY',
  'boro': 'Manhattan',
  'building': '1150',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807226024381',
  'longitude': '-73.960766902947',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084458',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960766902947, 40.807226024381]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-05-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '54',
  'grade': 'C',
  'grade_date': '2025-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Re-inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '50160982',
  'dba': 'HALAL BITEZ',
  'boro': 'Manhattan',
  'building': '360',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '6467053559',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801332814353',
  'longitude': '-73.960076891391',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960076891391, 40.801332814353]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided.  Single service article reused or not protected from contamination when transported, stored, dispensed.  Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50093719',
  'dba': 'WU & NUSSBAUM',
  'boro': 'Manhattan',
  'building': '2897',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122220040',
  'cuisine_description': 'Fusion',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80598688351',
  'longitude': '-73.965384058565',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965384058565, 40.80598688351]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2024-06-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-10-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-01-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50056274',
  'dba': 'MARLOW BISTRO',
  'boro': 'Manhattan',
  'building': '1018',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126629020',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-05',
  'violation_description': 'Current letter grade or "Grade Pending" card not conspicuously posted or visible to passersby',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.802879384567',
  'longitude': '-73.963937246851',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963937246851, 40.802879384567]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '50159692',
  'dba': 'ZAAD',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3478815576',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2022-11-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2022-11-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50085430',
  'dba': 'KIKOO SUSHI',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9292856666',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801327767141',
  'longitude': '-73.961369979813',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1088722',
  'bbl': '1018640036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961369979813, 40.801327767141]}},
 {'camis': '50071449',
  'dba': 'COLUMBIA DINING URIS BLUE JAVA',
  'boro': 'Manhattan',
  'building': '3022',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2024-12-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810122256858',
  'longitude': '-73.962336604627',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084473',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962336604627, 40.810122256858]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-06-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2024-06-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedure improper.',
  'critical_flag': 'Not Critical',
  'score': '36',
  'grade': 'Z',
  'grade_date': '2026-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50153487',
  'dba': 'SUMA SUSHI',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122805858',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-05-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '50056274',
  'dba': 'MARLOW BISTRO',
  'boro': 'Manhattan',
  'building': '1018',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126629020',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802879384567',
  'longitude': '-73.963937246851',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963937246851, 40.802879384567]}},
 {'camis': '50076821',
  'dba': 'DIVE 106',
  'boro': 'Manhattan',
  'building': '938',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9179652840',
  'cuisine_description': 'American',
  'inspection_date': '2023-06-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-06-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800579800343',
  'longitude': '-73.965614432776',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056638',
  'bbl': '1018780030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614432776, 40.800579800343]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-10-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '35',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-04-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50080071',
  'dba': "LION'S HEAD TAVERN",
  'boro': 'Manhattan',
  'building': '995',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128661030',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-06-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802171394136',
  'longitude': '-73.964432478123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1056029',
  'bbl': '1018630061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964432478123, 40.802171394136]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-01-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2023-12-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2023-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '3',
  'grade': 'A',
  'grade_date': '2023-02-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '56',
  'grade': 'C',
  'grade_date': '2023-01-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-02-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '41426727',
  'dba': 'AWASH ETHIOPIAN RESTAURANT',
  'boro': 'Manhattan',
  'building': '947',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2129611416',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800744441851',
  'longitude': '-73.96546986986',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055951',
  'bbl': '1018610004',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96546986986, 40.800744441851]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-06',
  'violation_description': 'Contract with a pest management professional not in place. Record of extermination activities not kept on premises.',
  'critical_flag': 'Not Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2024-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-04-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-07-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50099843',
  'dba': 'NARANJITO JUICE',
  'boro': 'Manhattan',
  'building': '1349',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464844214',
  'cuisine_description': 'Mexican',
  'inspection_date': '2022-07-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area.  Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813808915651',
  'longitude': '-73.955932893786',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084100',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955932893786, 40.813808915651]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'grade': 'B',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50131998',
  'dba': 'BAN BAN SHOP',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9174001783',
  'cuisine_description': 'Fusion',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-06',
  'violation_description': 'Contract with a pest management professional not in place. Record of extermination activities not kept on premises.',
  'critical_flag': 'Not Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-01',
  'violation_description': 'Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50080071',
  'dba': "LION'S HEAD TAVERN",
  'boro': 'Manhattan',
  'building': '995',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128661030',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '29',
  'grade': 'C',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802171394136',
  'longitude': '-73.964432478123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1056029',
  'bbl': '1018630061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964432478123, 40.802171394136]}},
 {'camis': '50170572',
  'dba': 'MORNINGSIDE CAFE',
  'boro': 'Manhattan',
  'building': '353',
  'street': 'WEST  110 STREET',
  'zipcode': '10026',
  'phone': '9143746051',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.801415205665',
  'longitude': '-73.960217708815',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019701',
  'bin': '1000000',
  'bbl': '1018500001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960217708815, 40.801415205665]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '60',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2022-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'grade': 'C',
  'grade_date': '2025-09-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '41424484',
  'dba': 'CHEF MIKES SUB SHOP AT URIS DELI (MAIN CAMPUS)',
  'boro': 'Manhattan',
  'building': '411',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128545341',
  'cuisine_description': 'American',
  'inspection_date': '2023-10-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806273239958',
  'longitude': '-73.959734366147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959734366147, 40.806273239958]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '71',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50120707',
  'dba': 'MORNINGSIDE PARK CAFE',
  'boro': 'Manhattan',
  'building': '353',
  'street': 'WEST  110 STREET',
  'zipcode': '10026',
  'phone': '9143746051',
  'cuisine_description': 'American',
  'inspection_date': '2025-05-23T00:00:00.000',
  'action': 'No violations were recorded at the time of this inspection.',
  'violation_code': '20-04',
  'violation_description': '“Choking first aid” poster not posted. “Alcohol and Pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.801415205665',
  'longitude': '-73.960217708815',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019701',
  'bin': '1000000',
  'bbl': '1018500001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960217708815, 40.801415205665]}},
 {'camis': '50155811',
  'dba': 'THE U BAR AND GRILL',
  'boro': 'Manhattan',
  'building': '1207',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6465290736',
  'cuisine_description': 'Fusion',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '16',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.808965743978',
  'longitude': '-73.959472639147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059510',
  'bbl': '1019620038',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959472639147, 40.808965743978]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '21',
  'grade': 'Z',
  'grade_date': '2026-04-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-09-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '40388419',
  'dba': 'FAMOUS FAMIGLIA PIZZERIA',
  'boro': 'Manhattan',
  'building': '2859',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128651234',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-07-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-07-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804776710519',
  'longitude': '-73.966258832618',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966258832618, 40.804776710519]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2024-12-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2024-12-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50176968',
  'dba': 'DURAR CAFE',
  'boro': 'Manhattan',
  'building': '996',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463441464',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.802525393567',
  'longitude': '-73.964197505931',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964197505931, 40.802525393567]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2025-10-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50155354',
  'dba': 'DRAGON 109 ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '1003A',
  'street': 'COLUMBUS AVE',
  'zipcode': '10025',
  'phone': '6468386688',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-02-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801355201243',
  'longitude': '-73.96133023214',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96133023214, 40.801355201243]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-09-27T00:00:00.000',
  'action': 'No violations were recorded at the time of this inspection.',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:18.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-06-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-01',
  'violation_description': 'Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50044763',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '281',
  'street': 'SAINT NICHOLAS AVENUE',
  'zipcode': '10027',
  'phone': '9173785700',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2024-06-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-06-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810379516715',
  'longitude': '-73.952879028953',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059297',
  'bbl': '1019510014',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952879028953, 40.810379516715]}},
 {'camis': '50081739',
  'dba': 'JOE COFFEE COMPANY',
  'boro': 'Manhattan',
  'building': '2950',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129247400',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-11-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-11-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807685492079',
  'longitude': '-73.964115248614',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082164',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964115248614, 40.807685492079]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-05-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-04-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '35',
  'grade': 'C',
  'grade_date': '2023-04-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50093228',
  'dba': "BARNARD COLLEGE - DIANA'S CENTER CAFE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '3472237191',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-10-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '50142409',
  'dba': 'THREE TIMES',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463705552',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-11T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'P',
  'grade_date': '2022-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50076863',
  'dba': 'ELIS WINE BAR',
  'boro': 'Manhattan',
  'building': '1012',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9175442557',
  'cuisine_description': 'French',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802783341084',
  'longitude': '-73.964009540077',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964009540077, 40.802783341084]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '55',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '40991543',
  'dba': 'BLUE JAVA COFFEE BAR - BUTLER LIBRARY',
  'boro': 'Manhattan',
  'building': '535',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128541972',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '14',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806236144809',
  'longitude': '-73.963729523583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082165',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963729523583, 40.806236144809]}},
 {'camis': '50093228',
  'dba': "BARNARD COLLEGE - DIANA'S CENTER CAFE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '3472237191',
  'cuisine_description': 'American',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2026-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '50145866',
  'dba': 'SIPSTERIA',
  'boro': 'Manhattan',
  'building': '1264',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9175584407',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-03-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810831689823',
  'longitude': '-73.958131265446',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059676',
  'bbl': '1019770031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958131265446, 40.810831689823]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2023-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2024-02-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2024-02-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-01-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50145866',
  'dba': 'SIPSTERIA',
  'boro': 'Manhattan',
  'building': '1264',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9175584407',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810831689823',
  'longitude': '-73.958131265446',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059676',
  'bbl': '1019770031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958131265446, 40.810831689823]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-11T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '28-03',
  'violation_description': 'Lighting fixture located over, by or within food storage, preparation, service or display facility, and facility where utensils and equipment are cleaned and stored, which may shatter due to extreme heat, temperature changes or accidental contact; not fitted with shatterproof bulb or shielded and encased, with end caps or other device.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50001438',
  'dba': 'INSOMNIA COOKIES',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6464167092',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2022-03-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-03-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50155354',
  'dba': 'DRAGON 109 ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '1003A',
  'street': 'COLUMBUS AVE',
  'zipcode': '10025',
  'phone': '6468386688',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801355201243',
  'longitude': '-73.96133023214',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96133023214, 40.801355201243]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '60',
  'grade': 'C',
  'grade_date': '2024-12-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-10-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2024-07-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-07-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-23T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50057789',
  'dba': 'STARBUCKS COFFEE',
  'boro': 'Manhattan',
  'building': '3165',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9292432549',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2025-05-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814677403427',
  'longitude': '-73.959035623849',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076685',
  'bbl': '1019930094',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959035623849, 40.814677403427]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-09-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '41556790',
  'dba': 'FIVE GUYS FAMOUS BURGERS AND FRIES',
  'boro': 'Manhattan',
  'building': '2847',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126787701',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2022-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '3',
  'grade': 'A',
  'grade_date': '2022-10-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804447411778',
  'longitude': '-73.966501013579',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966501013579, 40.804447411778]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2023-05-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2023-05-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-02-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50071792',
  'dba': 'PANDA EXPRESS # 2792',
  'boro': 'Manhattan',
  'building': '2852',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126780139',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-07-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-07-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804653217067',
  'longitude': '-73.966327526336',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056916',
  'bbl': '1018820061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966327526336, 40.804653217067]}},
 {'camis': '50159261',
  'dba': 'FROZEN LOVE',
  'boro': 'Manhattan',
  'building': '122',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '9173256400',
  'cuisine_description': 'Other',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '42',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813966918793',
  'longitude': '-73.960184888403',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059842',
  'bbl': '1019930037',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960184888403, 40.813966918793]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2025-07-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '50044876',
  'dba': 'ARTS & CRAFTS BEER PARLOR',
  'boro': 'Manhattan',
  'building': '1135',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756835',
  'cuisine_description': 'Vegan',
  'inspection_date': '2025-11-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-11-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806696410041',
  'longitude': '-73.961124830344',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1056058',
  'bbl': '1018670074',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961124830344, 40.806696410041]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '45',
  'grade': 'C',
  'grade_date': '2024-11-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-26T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '71',
  'grade': 'C',
  'grade_date': '2025-04-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2023-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '13',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50060424',
  'dba': 'THE CRAFTSMAN',
  'boro': 'Manhattan',
  'building': '3155',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129330602',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-03-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814529225873',
  'longitude': '-73.959144096096',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059855',
  'bbl': '1019930086',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959144096096, 40.814529225873]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2023-02-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required.  Jewelry is worn on hands or arms.  Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '9',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2023-10-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05H',
  'violation_description': 'No approved written standard operating procedure for avoiding contamination by refillable returnable containers.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '50161998',
  'dba': 'SUPER NICE PIZZA',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '5168496039',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-01-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '58',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40813994',
  'dba': 'MAX SOHA',
  'boro': 'Manhattan',
  'building': '1274',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125312221',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-06-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811111579854',
  'longitude': '-73.957928788503',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059680',
  'bbl': '1019770036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957928788503, 40.811111579854]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2025-10-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50064777',
  'dba': 'OSTERIA 106',
  'boro': 'Manhattan',
  'building': '53',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '6468337614',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-05-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.798838459462',
  'longitude': '-73.961905981494',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055649',
  'bbl': '1018420012',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961905981494, 40.798838459462]}},
 {'camis': '40710951',
  'dba': 'LENFEST CAFE - JEROME GREEN HALL',
  'boro': 'Manhattan',
  'building': '435',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128544999',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-03-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2022-03-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806223793942',
  'longitude': '-73.959618804588',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1076680',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959618804588, 40.806223793942]}},
 {'camis': '50044763',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '281',
  'street': 'SAINT NICHOLAS AVENUE',
  'zipcode': '10027',
  'phone': '9173785700',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2025-08-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-08-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810379516715',
  'longitude': '-73.952879028953',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059297',
  'bbl': '1019510014',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952879028953, 40.810379516715]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-30T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'critical_flag': 'Not Applicable',
  'score': '0',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50119564',
  'dba': 'HOMEMADE TAQUERIA',
  'boro': 'Manhattan',
  'building': '999',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2124193866',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801256410996',
  'longitude': '-73.961391693181',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055739',
  'bbl': '1018450001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961391693181, 40.801256410996]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2023-01-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'grade': 'B',
  'grade_date': '2023-01-26T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50137347',
  'dba': "EVERETT CAFE (TEACHER'S COLLEGE)",
  'boro': 'Manhattan',
  'building': '501',
  'street': 'WEST  121 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-05-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2022-05-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2022-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2022-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-09-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-09-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '41556791',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '550',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '7187043793',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-04-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-04-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809907586248',
  'longitude': '-73.960606368894',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084477',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960606368894, 40.809907586248]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '36',
  'grade': 'Z',
  'grade_date': '2026-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '50142409',
  'dba': 'THREE TIMES',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463705552',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2022-01-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.',
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2022-01-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '05H',
  'violation_description': 'No approved written standard operating procedure for avoiding contamination by refillable returnable containers.',
  'critical_flag': 'Critical',
  'score': '91',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '93',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-11T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '65',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '25',
  'grade': 'B',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50119628',
  'dba': 'DOS TOROS',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9177810226',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-07-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-07-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '41428295',
  'dba': 'FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-10-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '35',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-06T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '0',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-11-21T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '59',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2023-03-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2023-03-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-04',
  'violation_description': '“Choking first aid” poster not posted. “Alcohol and Pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-20T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'P',
  'grade_date': '2024-09-20T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '16-03',
  'violation_description': 'Caloric content not posted on menus, menu boards or food tags, in a food service establishment that is 1 of 15 or more outlets operating the same type of business nationally under common ownership or control, or as a franchise or doing business under the same name, for each menu item that is served in portions, the size and content of which are standardized.',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Calorie Posting / Initial Inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '38',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50179493',
  'dba': "AUNTIE ANNE'S / CARVEL",
  'boro': 'Manhattan',
  'building': '2818',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2019365625',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.803462247891',
  'longitude': '-73.9671950319',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9671950319, 40.803462247891]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2024-10-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2024-10-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '93',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '41685153',
  'dba': 'RIVERSIDE CAFE',
  'boro': 'Manhattan',
  'building': '475',
  'street': 'RIVERSIDE DRIVE',
  'zipcode': '10115',
  'phone': '2128703043',
  'cuisine_description': 'American',
  'inspection_date': '2024-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2024-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811094482579',
  'longitude': '-73.964167591037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1059835',
  'bbl': '1019910001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964167591037, 40.811094482579]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '23',
  'grade': 'B',
  'grade_date': '2025-01-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-02-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-12-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2023-04-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50080071',
  'dba': "LION'S HEAD TAVERN",
  'boro': 'Manhattan',
  'building': '995',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128661030',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'grade': 'C',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802171394136',
  'longitude': '-73.964432478123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1056029',
  'bbl': '1018630061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964432478123, 40.802171394136]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-04-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '46',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '40736137',
  'dba': 'STARBUCKS',
  'boro': 'Manhattan',
  'building': '2929',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2129320300',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806955562167',
  'longitude': '-73.964671934299',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057368',
  'bbl': '1018960023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964671934299, 40.806955562167]}},
 {'camis': '50099843',
  'dba': 'NARANJITO JUICE',
  'boro': 'Manhattan',
  'building': '1349',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464844214',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-01-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-01-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813808915651',
  'longitude': '-73.955932893786',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084100',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955932893786, 40.813808915651]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50178467',
  'dba': 'IPIZZA NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50155354',
  'dba': 'DRAGON 109 ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '1003A',
  'street': 'COLUMBUS AVE',
  'zipcode': '10025',
  'phone': '6468386688',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801355201243',
  'longitude': '-73.96133023214',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96133023214, 40.801355201243]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-06',
  'violation_description': 'Providing single-use, non-compostable plastic straws to customers without customer request (including providing such straws at a self-serve station)',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50040802',
  'dba': 'SWEETGREEN',
  'boro': 'Manhattan',
  'building': '600',
  'street': 'WEST  115 STREET',
  'zipcode': '10025',
  'phone': '5164573809',
  'cuisine_description': 'Salads',
  'inspection_date': '2025-11-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-11-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807455118131',
  'longitude': '-73.964711403469',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057388',
  'bbl': '1018967501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964711403469, 40.807455118131]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50155354',
  'dba': 'DRAGON 109 ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '1003A',
  'street': 'COLUMBUS AVE',
  'zipcode': '10025',
  'phone': '6468386688',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-02-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801355201243',
  'longitude': '-73.96133023214',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96133023214, 40.801355201243]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50099843',
  'dba': 'NARANJITO JUICE',
  'boro': 'Manhattan',
  'building': '1349',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464844214',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-07-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2025-07-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813808915651',
  'longitude': '-73.955932893786',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084100',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955932893786, 40.813808915651]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2023-05-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2023-05-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2024-02-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2024-02-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08B',
  'violation_description': 'Garbage receptacle not pest or water resistant, with tight-fitting lids, and covered except while in active use. Garbage receptacle and cover not cleaned after emptying and prior to reuse. Garbage, refuse and other solid and liquid waste not collected, stored, removed and disposed of so as to prevent a nuisance.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04J',
  'violation_description': 'Properly scaled and calibrated thermometer or thermocouple not provided or not readily accessible in food preparation and hot/cold holding areas to measure temperatures of TCS foods during cooking, cooling, reheating, and holding.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50071792',
  'dba': 'PANDA EXPRESS # 2792',
  'boro': 'Manhattan',
  'building': '2852',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126780139',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-12-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804653217067',
  'longitude': '-73.966327526336',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056916',
  'bbl': '1018820061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966327526336, 40.804653217067]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '37',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50145822',
  'dba': 'PINKBERRY',
  'boro': 'Manhattan',
  'building': '2851',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172915340',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2026-03-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2026-03-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804590107999',
  'longitude': '-73.966396189196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966396189196, 40.804590107999]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '48',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50119628',
  'dba': 'DOS TOROS',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9177810226',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-01-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-01-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '50176968',
  'dba': 'DURAR CAFE',
  'boro': 'Manhattan',
  'building': '996',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463441464',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.802525393567',
  'longitude': '-73.964197505931',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964197505931, 40.802525393567]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '4',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Compliance Inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '41365100',
  'dba': 'HAAGEN-DAZS',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126625265',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2023-01-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper.  Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-01-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'Z',
  'grade_date': '2025-11-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2025-04-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-04-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50126898',
  'dba': 'MAKANA HAWAIIAN EATERY',
  'boro': 'Manhattan',
  'building': '161',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '2126784569',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '44',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800167921364',
  'longitude': '-73.965062024572',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965062024572, 40.800167921364]}},
 {'camis': '50169501',
  'dba': "XI'AN FAMOUS FOODS",
  'boro': 'Manhattan',
  'building': '2814',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6462098242',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-12-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803363456585',
  'longitude': '-73.967263710318',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967263710318, 40.803363456585]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-01',
  'violation_description': 'Allergen or intolerance notice not translated into common language when required',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2024-01-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-01-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50181693',
  'dba': 'AUNTY JENNY',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9173063883',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '34',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50169060',
  'dba': 'NIKO COFFEE + MORE',
  'boro': 'Manhattan',
  'building': '1090',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126663744',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-06-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805220105453',
  'longitude': '-73.962231023705',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057032',
  'bbl': '1018850036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962231023705, 40.805220105453]}},
 {'camis': '50133164',
  'dba': 'PLAYA BOWLS',
  'boro': 'Manhattan',
  'building': '2841',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9179024851',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-07-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804216903503',
  'longitude': '-73.966674512161',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966674512161, 40.804216903503]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-04-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '46',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '60',
  'grade': 'C',
  'grade_date': '2024-12-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'grade': 'B',
  'grade_date': '2025-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-09-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2024-09-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-04-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '35',
  'grade': 'C',
  'grade_date': '2023-04-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50160982',
  'dba': 'HALAL BITEZ',
  'boro': 'Manhattan',
  'building': '360',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '6467053559',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801332814353',
  'longitude': '-73.960076891391',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960076891391, 40.801332814353]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '15-37',
  'violation_description': 'Workplace SFAA policy not prominently posted in workplace.',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Smoke-Free Air Act / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-06-21T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '3',
  'grade': 'P',
  'grade_date': '2022-06-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2026-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '16-04',
  'violation_description': 'Required succinct nutritional statements not posted on menu(s) for adults and children (2,000 calories per day for adults)',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Calorie Posting / Re-inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2026-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '19',
  'grade': 'B',
  'grade_date': '2025-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50142894',
  'dba': 'MANHATTAN SCHOOL OF MUSIC',
  'boro': 'Manhattan',
  'building': '120',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '8457219288',
  'cuisine_description': 'American',
  'inspection_date': '2025-10-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-10-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812468880147',
  'longitude': '-73.961930662882',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076684',
  'bbl': '1019930001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961930662882, 40.812468880147]}},
 {'camis': '50142409',
  'dba': 'THREE TIMES',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463705552',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2024-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '8',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Compliance Inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2025-09-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2025-09-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '40392940',
  'dba': 'FIESTA MEXICANA RESTANURANT',
  'boro': 'Manhattan',
  'building': '2825',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126622535',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.803470487289',
  'longitude': '-73.967213088259',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967213088259, 40.803470487289]}},
 {'camis': '50169060',
  'dba': 'NIKO COFFEE + MORE',
  'boro': 'Manhattan',
  'building': '1090',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126663744',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-06-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805220105453',
  'longitude': '-73.962231023705',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057032',
  'bbl': '1018850036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962231023705, 40.805220105453]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-09-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04C',
  'violation_description': 'Food worker/food vendor does not use utensil or other barrier to eliminate bare hand contact with food that will not receive adequate additional heat treatment.',
  'critical_flag': 'Critical',
  'score': '67',
  'grade': 'Z',
  'grade_date': '2026-05-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50162524',
  'dba': 'DONGBEI',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2014235900',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-03-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.79969776648',
  'longitude': '-73.962515895825',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055671',
  'bbl': '1018420062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962515895825, 40.79969776648]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '11',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '18-11',
  'violation_description': 'Food Protection Certificate not available for inspection',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-05-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-12-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2024-12-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-03-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-01',
  'violation_description': 'Allergen or intolerance notice not translated into common language when required',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-15T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '15',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50154933',
  'dba': 'SYMPOSIUM',
  'boro': 'Manhattan',
  'building': '544',
  'street': 'WEST  113 STREET',
  'zipcode': '10025',
  'phone': '9175786685',
  'cuisine_description': 'Greek',
  'inspection_date': '2025-03-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805580285422',
  'longitude': '-73.964159734383',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057007',
  'bbl': '1018840052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964159734383, 40.805580285422]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2022-08-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '32',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '37',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '16',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Second Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2023-12-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '03I',
  'violation_description': 'Juice packaged on premises with no or incomplete label, no warning statement',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-04-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '50',
  'grade': 'C',
  'grade_date': '2024-04-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50155204',
  'dba': 'BLUE BOTTLE COFFEE',
  'boro': 'Manhattan',
  'building': '2901',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463020153',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-09-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-09-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.806173485886',
  'longitude': '-73.965250308478',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965250308478, 40.806173485886]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-01-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-01-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50048821',
  'dba': 'LA SALLE DUMPLING ROOM',
  'boro': 'Manhattan',
  'building': '3141',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129610300',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-11-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-11-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813911818271',
  'longitude': '-73.959596058573',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959596058573, 40.813911818271]}},
 {'camis': '50061295',
  'dba': 'TARTINA',
  'boro': 'Manhattan',
  'building': '1034',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6465900577',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803565414838',
  'longitude': '-73.963442017109',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963442017109, 40.803565414838]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-06-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-06-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50107904',
  'dba': 'BANH',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173457474',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '50',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800752681523',
  'longitude': '-73.965487925264',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965487925264, 40.800752681523]}},
 {'camis': '50181693',
  'dba': 'AUNTY JENNY',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9173063883',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '34',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '41426727',
  'dba': 'AWASH ETHIOPIAN RESTAURANT',
  'boro': 'Manhattan',
  'building': '947',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2129611416',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800744441851',
  'longitude': '-73.96546986986',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055951',
  'bbl': '1018610004',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96546986986, 40.800744441851]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-10-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10C',
  'violation_description': 'Lighting inadequate; permanent lighting not provided in food preparation areas, ware washing areas, and storage rooms. Shatterproof bulb or shield to prevent broken glass from falling into food or onto surfaces, not installed.',
  'critical_flag': 'Not Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-09-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-09-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-04-06T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '50159692',
  'dba': 'ZAAD',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3478815576',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-03-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '40736137',
  'dba': 'STARBUCKS',
  'boro': 'Manhattan',
  'building': '2929',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2129320300',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-08-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2023-08-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806955562167',
  'longitude': '-73.964671934299',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057368',
  'bbl': '1018960023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964671934299, 40.806955562167]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '71',
  'grade': 'C',
  'grade_date': '2025-04-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50126898',
  'dba': 'MAKANA HAWAIIAN EATERY',
  'boro': 'Manhattan',
  'building': '161',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '2126784569',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '44',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800167921364',
  'longitude': '-73.965062024572',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965062024572, 40.800167921364]}},
 {'camis': '50097393',
  'dba': 'JEWISH THEOLOGICAL SEMINARY CAFE',
  'boro': 'Manhattan',
  'building': '3080',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126788822',
  'cuisine_description': 'Jewish/Kosher',
  'inspection_date': '2024-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '39',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811914140091',
  'longitude': '-73.961031457195',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059669',
  'bbl': '1019770001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961031457195, 40.811914140091]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2023-09-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-09-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Compliance Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-07-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50176968',
  'dba': 'DURAR CAFE',
  'boro': 'Manhattan',
  'building': '996',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463441464',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.802525393567',
  'longitude': '-73.964197505931',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964197505931, 40.802525393567]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-06T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '0',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-10-23T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-12-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-12-20T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50154933',
  'dba': 'SYMPOSIUM',
  'boro': 'Manhattan',
  'building': '544',
  'street': 'WEST  113 STREET',
  'zipcode': '10025',
  'phone': '9175786685',
  'cuisine_description': 'Greek',
  'inspection_date': '2025-03-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805580285422',
  'longitude': '-73.964159734383',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057007',
  'bbl': '1018840052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964159734383, 40.805580285422]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '25',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-06-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '36',
  'grade': 'Z',
  'grade_date': '2026-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-12-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '43',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-07-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '16-06',
  'violation_description': 'Additional nutritional information statement not posted, or additional nutritional information not provided',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Calorie Posting / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-07-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50093239',
  'dba': "BARNARD COLLEGE - LIZ'S PLACE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6462812894',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '50142894',
  'dba': 'MANHATTAN SCHOOL OF MUSIC',
  'boro': 'Manhattan',
  'building': '120',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '8457219288',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812468880147',
  'longitude': '-73.961930662882',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076684',
  'bbl': '1019930001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961930662882, 40.812468880147]}},
 {'camis': '50107755',
  'dba': '107 DAILY & GRILL',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9172083240',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2023-11-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2023-11-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '50183790',
  'dba': 'PICNIC BY THE BLACK PARROT',
  'boro': 'Manhattan',
  'building': '161',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '5514044153',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.800167921364',
  'longitude': '-73.965062024572',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965062024572, 40.800167921364]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-10-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '93',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50123489',
  'dba': "TRUDY'S ICE CREAM",
  'boro': 'Manhattan',
  'building': '975',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466493612',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2024-01-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04O',
  'violation_description': 'Live animal other than fish in tank or service animal present in facility’s food or non-food area.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800389276753',
  'longitude': '-73.962009836241',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055704',
  'bbl': '1018430061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962009836241, 40.800389276753]}},
 {'camis': '50167236',
  'dba': "CLAIRE'S KITCHEN CAFE",
  'boro': 'Manhattan',
  'building': '150',
  'street': 'MANHATTAN AVENUE',
  'zipcode': '10025',
  'phone': '6464204804',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-07-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2025-07-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799167553085',
  'longitude': '-73.961082290033',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055664',
  'bbl': '1018420047',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961082290033, 40.799167553085]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2023-10-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '5',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Re-inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '50048821',
  'dba': 'LA SALLE DUMPLING ROOM',
  'boro': 'Manhattan',
  'building': '3141',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129610300',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-01-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required.  Jewelry is worn on hands or arms.  Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-01-26T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813911818271',
  'longitude': '-73.959596058573',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959596058573, 40.813911818271]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-03-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '54',
  'grade': 'C',
  'grade_date': '2025-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-05-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2024-07-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-26T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50009442',
  'dba': 'NOUS ESPRESSO BAR - LOCATED INSIDE PHILOSOPHY HALL IN COLUMBIA UNIVERSITY',
  'boro': 'Manhattan',
  'building': '1150',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-06-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807226024381',
  'longitude': '-73.960766902947',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084458',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960766902947, 40.807226024381]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-08-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-04-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'grade': 'C',
  'grade_date': '2025-09-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2024-07-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-11T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper.  Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'P',
  'grade_date': '2022-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2024-01-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-01-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-06-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '50001438',
  'dba': 'INSOMNIA COOKIES',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6464167092',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2024-10-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-10-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50165527',
  'dba': 'UPSIDE PIZZA',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9175878888',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50080071',
  'dba': "LION'S HEAD TAVERN",
  'boro': 'Manhattan',
  'building': '995',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128661030',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'grade': 'C',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802171394136',
  'longitude': '-73.964432478123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1056029',
  'bbl': '1018630061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964432478123, 40.802171394136]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '50093227',
  'dba': 'BARNARD COLLEGE HEWITT DINING HALL',
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6462070062',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-09-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '50056274',
  'dba': 'MARLOW BISTRO',
  'boro': 'Manhattan',
  'building': '1018',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126629020',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802879384567',
  'longitude': '-73.963937246851',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963937246851, 40.802879384567]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-04-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-04',
  'violation_description': '“Choking first aid” poster not posted. “Alcohol and Pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-01-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-01-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50071449',
  'dba': 'COLUMBIA DINING URIS BLUE JAVA',
  'boro': 'Manhattan',
  'building': '3022',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-10-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-10-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810122256858',
  'longitude': '-73.962336604627',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084473',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962336604627, 40.810122256858]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '40',
  'grade': 'C',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50046844',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '965',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122222000',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-04-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-04-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801293269011',
  'longitude': '-73.965065043605',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055985',
  'bbl': '1018620003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065043605, 40.801293269011]}},
 {'camis': '50095290',
  'dba': 'SUBCONSCIOUS',
  'boro': 'Manhattan',
  'building': '1213',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128642720',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2022-09-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2022-09-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809102945503',
  'longitude': '-73.959371408251',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059514',
  'bbl': '1019620070',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959371408251, 40.809102945503]}},
 {'camis': '50147296',
  'dba': '1020 BAR',
  'boro': 'Manhattan',
  'building': '1020',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176850342',
  'cuisine_description': 'American',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '25',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803093425955',
  'longitude': '-73.963781811583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963781811583, 40.803093425955]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04J',
  'violation_description': 'Properly scaled and calibrated thermometer or thermocouple not provided or not readily accessible in food preparation and hot/cold holding areas to measure temperatures of TCS foods during cooking, cooling, reheating, and holding.',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '50160600',
  'dba': 'MAMA AFRICA',
  'boro': 'Manhattan',
  'building': '429',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463719637',
  'cuisine_description': 'African',
  'inspection_date': '2025-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02C',
  'violation_description': 'Hot TCS food item that has been cooked and cooled is being held for service without first being reheated to 165º F or above within 2 hours.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812186498044',
  'longitude': '-73.955225910007',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059544',
  'bbl': '1019660052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955225910007, 40.812186498044]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2025-08-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-08-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50126898',
  'dba': 'MAKANA HAWAIIAN EATERY',
  'boro': 'Manhattan',
  'building': '161',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '2126784569',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '44',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800167921364',
  'longitude': '-73.965062024572',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965062024572, 40.800167921364]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '40',
  'grade': 'C',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-09-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '50168228',
  'dba': 'MANGETSU SUSHI',
  'boro': 'Manhattan',
  'building': '150',
  'street': 'MANHATTAN AVENUE',
  'zipcode': '10025',
  'phone': '6464204804',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10D',
  'violation_description': 'Mechanical or natural ventilation not provided, inadequate, improperly installed, in disrepair or fails to prevent and control excessive build-up of grease, heat, steam condensation, vapors, odors, smoke or fumes.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799167553085',
  'longitude': '-73.961082290033',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055664',
  'bbl': '1018420047',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961082290033, 40.799167553085]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50131998',
  'dba': 'BAN BAN SHOP',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9174001783',
  'cuisine_description': 'Fusion',
  'inspection_date': '2025-03-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2025-03-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '40736137',
  'dba': 'STARBUCKS',
  'boro': 'Manhattan',
  'building': '2929',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2129320300',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2026-03-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806955562167',
  'longitude': '-73.964671934299',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057368',
  'bbl': '1018960023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964671934299, 40.806955562167]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2025-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2025-12-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-09-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2024-09-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-10-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50109228',
  'dba': 'HEX AND COMPANY',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2124391008',
  'cuisine_description': 'American',
  'inspection_date': '2024-07-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-07-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2023-03-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2023-03-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50093232',
  'dba': 'BARNARD COLLEGE - MILSTEIN CENTER PEETS COFFEE',
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6462070062',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-09-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2022-09-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2026-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-05-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '31',
  'grade': 'C',
  'grade_date': '2025-09-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50123489',
  'dba': "TRUDY'S ICE CREAM",
  'boro': 'Manhattan',
  'building': '975',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466493612',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2024-01-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800389276753',
  'longitude': '-73.962009836241',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055704',
  'bbl': '1018430061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962009836241, 40.800389276753]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-08T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '49',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-05-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '56',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50080223',
  'dba': 'HULA POKE',
  'boro': 'Manhattan',
  'building': '1028',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9173798888',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2024-07-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.8034254649',
  'longitude': '-73.963543232637',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963543232637, 40.8034254649]}},
 {'camis': '50080071',
  'dba': "LION'S HEAD TAVERN",
  'boro': 'Manhattan',
  'building': '995',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128661030',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '29',
  'grade': 'C',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802171394136',
  'longitude': '-73.964432478123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1056029',
  'bbl': '1018630061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964432478123, 40.802171394136]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '40704789',
  'dba': 'GLOBAL INK',
  'boro': 'Manhattan',
  'building': '2876',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122805071',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.805344744865',
  'longitude': '-73.965825080872',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965825080872, 40.805344744865]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-06-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2024-06-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-06-16T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage-associated (FRSA) flies present in facility’s food and/or non-food areas.  Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies.  Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.',
  'critical_flag': 'Critical',
  'score': '0',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-26T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2022-01-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedures improper.',
  'critical_flag': 'Not Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2022-01-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50126898',
  'dba': 'MAKANA HAWAIIAN EATERY',
  'boro': 'Manhattan',
  'building': '161',
  'street': 'WEST  106 STREET',
  'zipcode': '10025',
  'phone': '2126784569',
  'cuisine_description': 'Hawaiian',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '44',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800167921364',
  'longitude': '-73.965062024572',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965062024572, 40.800167921364]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2024-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50181693',
  'dba': 'AUNTY JENNY',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9173063883',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05C',
  'violation_description': 'Food contact surface, refillable, reusable containers, or equipment improperly constructed, placed or maintained. Unacceptable material used. Culinary sink or other acceptable method not provided for washing food.',
  'critical_flag': 'Critical',
  'score': '34',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50170694',
  'dba': 'ZOMA EXPRESS',
  'boro': 'Manhattan',
  'building': '973',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466433860',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.800342627985',
  'longitude': '-73.962045982133',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055705',
  'bbl': '1018430062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962045982133, 40.800342627985]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50009442',
  'dba': 'NOUS ESPRESSO BAR - LOCATED INSIDE PHILOSOPHY HALL IN COLUMBIA UNIVERSITY',
  'boro': 'Manhattan',
  'building': '1150',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-04-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-04-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807226024381',
  'longitude': '-73.960766902947',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084458',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960766902947, 40.807226024381]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2023-05-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2023-05-25T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '40729296',
  'dba': "DINO'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '3001',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '7185454775',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-04-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02H',
  'violation_description': 'After cooking or removal from hot holding, TCS food not cooled by an approved method whereby the internal temperature is reduced from 140 °F to 70 °F or less within 2 hours, and from 70 °F to 41 °F or less within 4 additional hours.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.808931326599',
  'longitude': '-73.963229540123',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963229540123, 40.808931326599]}},
 {'camis': '50044763',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '281',
  'street': 'SAINT NICHOLAS AVENUE',
  'zipcode': '10027',
  'phone': '9173785700',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2025-08-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-08-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810379516715',
  'longitude': '-73.952879028953',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059297',
  'bbl': '1019510014',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952879028953, 40.810379516715]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-05',
  'violation_description': 'Food adulterated or misbranded. Adulterated or misbranded food possessed, being manufactured, produced, packed, sold, offered for sale, delivered or given away',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-03-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2025-12-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10A',
  'violation_description': 'Toilet facility not maintained or provided with toilet paper, waste receptacle or self-closing door.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-12-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-03-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Compliance Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '37',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50055077',
  'dba': 'PUBLIQUE ESPRESSO',
  'boro': 'Manhattan',
  'building': '420',
  'street': 'WEST  118 STREET',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'American',
  'inspection_date': '2026-01-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2026-01-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807609639467',
  'longitude': '-73.95890994729',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1059497',
  'bbl': '1019610039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95890994729, 40.807609639467]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-07-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-05',
  'violation_description': 'Food adulterated or misbranded. Adulterated or misbranded food possessed, being manufactured, produced, packed, sold, offered for sale, delivered or given away',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50056274',
  'dba': 'MARLOW BISTRO',
  'boro': 'Manhattan',
  'building': '1018',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126629020',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802879384567',
  'longitude': '-73.963937246851',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963937246851, 40.802879384567]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '41422049',
  'dba': 'THE FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2026-01-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-01-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '50159261',
  'dba': 'FROZEN LOVE',
  'boro': 'Manhattan',
  'building': '122',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '9173256400',
  'cuisine_description': 'Other',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '42',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813966918793',
  'longitude': '-73.960184888403',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059842',
  'bbl': '1019930037',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960184888403, 40.813966918793]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '21',
  'grade': 'Z',
  'grade_date': '2026-04-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '41422049',
  'dba': 'THE FACULTY HOUSE',
  'boro': 'Manhattan',
  'building': '64',
  'street': 'MORNINGSIDE DRIVE',
  'zipcode': '10027',
  'phone': '2128545534',
  'cuisine_description': 'American',
  'inspection_date': '2024-07-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806670955777',
  'longitude': '-73.958964712932',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1083610',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958964712932, 40.806670955777]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-01-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '6',
  'grade': 'A',
  'grade_date': '2023-01-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '50155811',
  'dba': 'THE U BAR AND GRILL',
  'boro': 'Manhattan',
  'building': '1207',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6465290736',
  'cuisine_description': 'Fusion',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.808965743978',
  'longitude': '-73.959472639147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059510',
  'bbl': '1019620038',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959472639147, 40.808965743978]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-09-05T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50187153',
  'dba': 'TRUSTEES OF COLUMBIA UNIVERSITY IN THE CITY OF NEW YORK',
  'boro': 'Manhattan',
  'building': '501',
  'street': 'W 121ST ST',
  'zipcode': '10027',
  'phone': '2128548324',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '50160982',
  'dba': 'HALAL BITEZ',
  'boro': 'Manhattan',
  'building': '360',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '6467053559',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801332814353',
  'longitude': '-73.960076891391',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960076891391, 40.801332814353]}},
 {'camis': '50123489',
  'dba': "TRUDY'S ICE CREAM",
  'boro': 'Manhattan',
  'building': '975',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466493612',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2026-02-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2026-02-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800389276753',
  'longitude': '-73.962009836241',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055704',
  'bbl': '1018430061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962009836241, 40.800389276753]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedure improper.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '40364179',
  'dba': "MISS MAIME'S SPOONBREAD TOO",
  'boro': 'Manhattan',
  'building': '364',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '2128656744',
  'cuisine_description': 'Soul Food',
  'inspection_date': '2026-04-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80137126967',
  'longitude': '-73.96015994361',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96015994361, 40.80137126967]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10D',
  'violation_description': 'Mechanical or natural ventilation not provided, inadequate, improperly installed, in disrepair or fails to prevent and control excessive build-up of grease, heat, steam condensation, vapors, odors, smoke or fumes.',
  'critical_flag': 'Not Critical',
  'score': '60',
  'grade': 'C',
  'grade_date': '2024-12-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50044763',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '281',
  'street': 'SAINT NICHOLAS AVENUE',
  'zipcode': '10027',
  'phone': '9173785700',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2023-06-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-06-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810379516715',
  'longitude': '-73.952879028953',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059297',
  'bbl': '1019510014',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952879028953, 40.810379516715]}},
 {'camis': '41426727',
  'dba': 'AWASH ETHIOPIAN RESTAURANT',
  'boro': 'Manhattan',
  'building': '947',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2129611416',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800744441851',
  'longitude': '-73.96546986986',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055951',
  'bbl': '1018610004',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96546986986, 40.800744441851]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2024-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '60',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2023-06-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '37',
  'grade': 'C',
  'grade_date': '2025-06-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-06-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '50182337',
  'dba': 'BREWPUNK COLLECTIVE',
  'boro': 'Manhattan',
  'building': '1172',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '5088630201',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.807906549933',
  'longitude': '-73.960267998898',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084460',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960267998898, 40.807906549933]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50093239',
  'dba': "BARNARD COLLEGE - LIZ'S PLACE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6462812894',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2022-11-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, and equipment not protected from potential source of contamination during storage, preparation, transportation, display or service.',
  'critical_flag': 'Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2022-11-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '37',
  'grade': 'C',
  'grade_date': '2025-06-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '50056274',
  'dba': 'MARLOW BISTRO',
  'boro': 'Manhattan',
  'building': '1018',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126629020',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2023-04-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required.  Jewelry worn on hands or arms.  Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2023-04-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802879384567',
  'longitude': '-73.963937246851',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963937246851, 40.802879384567]}},
 {'camis': '41556790',
  'dba': 'FIVE GUYS FAMOUS BURGERS AND FRIES',
  'boro': 'Manhattan',
  'building': '2847',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126787701',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '4',
  'grade': 'A',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804447411778',
  'longitude': '-73.966501013579',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966501013579, 40.804447411778]}},
 {'camis': '50076863',
  'dba': 'ELIS WINE BAR',
  'boro': 'Manhattan',
  'building': '1012',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9175442557',
  'cuisine_description': 'French',
  'inspection_date': '2024-11-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2024-11-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802783341084',
  'longitude': '-73.964009540077',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964009540077, 40.802783341084]}},
 {'camis': '50145948',
  'dba': 'PHO AMSTERDAM',
  'boro': 'Manhattan',
  'building': '1262',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6469644801',
  'cuisine_description': 'Soups/Salads/Sandwiches',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.810776809407',
  'longitude': '-73.95817103744',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059675',
  'bbl': '1019770029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95817103744, 40.810776809407]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50146169',
  'dba': 'PRET A MANGER',
  'boro': 'Manhattan',
  'building': '2955',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9173690311',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2024-02-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-02-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.807798008579',
  'longitude': '-73.964057390553',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964057390553, 40.807798008579]}},
 {'camis': '50085430',
  'dba': 'KIKOO SUSHI',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9292856666',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801327767141',
  'longitude': '-73.961369979813',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1088722',
  'bbl': '1018640036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961369979813, 40.801327767141]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-06',
  'violation_description': 'Contract with a pest management professional not in place.  Record of extermination activities not kept on premises.',
  'critical_flag': 'Not Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-07-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '51',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '40710951',
  'dba': 'LENFEST CAFE - JEROME GREEN HALL',
  'boro': 'Manhattan',
  'building': '435',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128544999',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-17T00:00:00.000',
  'action': 'No violations were recorded at the time of this inspection.',
  'critical_flag': 'Not Applicable',
  'score': '0',
  'grade': 'A',
  'grade_date': '2024-10-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806223793942',
  'longitude': '-73.959618804588',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1076680',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959618804588, 40.806223793942]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-04-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '35',
  'grade': 'C',
  'grade_date': '2023-04-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-01-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-01-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-05-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '56',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '40710951',
  'dba': 'LENFEST CAFE - JEROME GREEN HALL',
  'boro': 'Manhattan',
  'building': '435',
  'street': 'WEST  116 STREET',
  'zipcode': '10027',
  'phone': '2128544999',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-03-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2022-03-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806223793942',
  'longitude': '-73.959618804588',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1076680',
  'bbl': '1019610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959618804588, 40.806223793942]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05H',
  'violation_description': 'No approved written standard operating procedure for avoiding contamination by refillable returnable containers.',
  'critical_flag': 'Critical',
  'score': '67',
  'grade': 'C',
  'grade_date': '2025-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2023-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required.  Jewelry is worn on hands or arms.  Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '32',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50142894',
  'dba': 'MANHATTAN SCHOOL OF MUSIC',
  'boro': 'Manhattan',
  'building': '120',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '8457219288',
  'cuisine_description': 'American',
  'inspection_date': '2024-09-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812468880147',
  'longitude': '-73.961930662882',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076684',
  'bbl': '1019930001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961930662882, 40.812468880147]}},
 {'camis': '41556791',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '550',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '7187043793',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'A',
  'grade_date': '2023-06-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809907586248',
  'longitude': '-73.960606368894',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084477',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960606368894, 40.809907586248]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '67',
  'grade': 'Z',
  'grade_date': '2026-05-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-07-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '50169501',
  'dba': "XI'AN FAMOUS FOODS",
  'boro': 'Manhattan',
  'building': '2814',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6462098242',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-12-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803363456585',
  'longitude': '-73.967263710318',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967263710318, 40.803363456585]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-09-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2024-09-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '41271036',
  'dba': 'CHIPOTLE MEXICAN GRILL',
  'boro': 'Manhattan',
  'building': '2843',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221712',
  'cuisine_description': 'Tex-Mex',
  'inspection_date': '2025-06-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-06-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804293739624',
  'longitude': '-73.966616679434',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966616679434, 40.804293739624]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, and equipment not protected from potential source of contamination during storage, preparation, transportation, display or service.',
  'critical_flag': 'Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50123489',
  'dba': "TRUDY'S ICE CREAM",
  'boro': 'Manhattan',
  'building': '975',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466493612',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2026-02-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2026-02-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800389276753',
  'longitude': '-73.962009836241',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055704',
  'bbl': '1018430061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962009836241, 40.800389276753]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50138819',
  'dba': 'ISLAND GRILL',
  'boro': 'Manhattan',
  'building': '576',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9174539733',
  'cuisine_description': 'Caribbean',
  'inspection_date': '2023-10-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.815272619787',
  'longitude': '-73.95794782429',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95794782429, 40.815272619787]}},
 {'camis': '50119564',
  'dba': 'HOMEMADE TAQUERIA',
  'boro': 'Manhattan',
  'building': '999',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2124193866',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '3',
  'grade': 'A',
  'grade_date': '2024-01-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801256410996',
  'longitude': '-73.961391693181',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055739',
  'bbl': '1018450001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961391693181, 40.801256410996]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-05-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50097393',
  'dba': 'JEWISH THEOLOGICAL SEMINARY CAFE',
  'boro': 'Manhattan',
  'building': '3080',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126788822',
  'cuisine_description': 'Jewish/Kosher',
  'inspection_date': '2024-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '39',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811914140091',
  'longitude': '-73.961031457195',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059669',
  'bbl': '1019770001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961031457195, 40.811914140091]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50160600',
  'dba': 'MAMA AFRICA',
  'boro': 'Manhattan',
  'building': '429',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463719637',
  'cuisine_description': 'African',
  'inspection_date': '2025-03-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-03-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.812186498044',
  'longitude': '-73.955225910007',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059544',
  'bbl': '1019660052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955225910007, 40.812186498044]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '48',
  'grade': 'C',
  'grade_date': '2024-12-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-04-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-04-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-11T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '65',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '62',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '40729296',
  'dba': "DINO'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '3001',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '7185454775',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.808931326599',
  'longitude': '-73.963229540123',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963229540123, 40.808931326599]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50161998',
  'dba': 'SUPER NICE PIZZA',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '5168496039',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50089601',
  'dba': "OREN'S DAILY ROAST",
  'boro': 'Manhattan',
  'building': '2882',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2123485400',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-05-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2023-05-24T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805545068261',
  'longitude': '-73.965680489622',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965680489622, 40.805545068261]}},
 {'camis': '50099843',
  'dba': 'NARANJITO JUICE',
  'boro': 'Manhattan',
  'building': '1349',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464844214',
  'cuisine_description': 'Mexican',
  'inspection_date': '2022-10-31T00:00:00.000',
  'action': 'No violations were recorded at the time of this inspection.',
  'critical_flag': 'Not Applicable',
  'score': '0',
  'grade': 'A',
  'grade_date': '2022-10-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:18.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813808915651',
  'longitude': '-73.955932893786',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084100',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955932893786, 40.813808915651]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'grade': 'B',
  'grade_date': '2025-01-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-01-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-05-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '50180455',
  'dba': 'FIRST RAY OPERATIONS (NEW YORK) LLC',
  'boro': 'Manhattan',
  'building': '2799',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6502168617',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.802724094828',
  'longitude': '-73.967845565422',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967845565422, 40.802724094828]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-09-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-09-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50155811',
  'dba': 'THE U BAR AND GRILL',
  'boro': 'Manhattan',
  'building': '1207',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6465290736',
  'cuisine_description': 'Fusion',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '16',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.808965743978',
  'longitude': '-73.959472639147',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059510',
  'bbl': '1019620038',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959472639147, 40.808965743978]}},
 {'camis': '40991543',
  'dba': 'BLUE JAVA COFFEE BAR - BUTLER LIBRARY',
  'boro': 'Manhattan',
  'building': '535',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128541972',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-05-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2023-05-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806236144809',
  'longitude': '-73.963729523583',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082165',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963729523583, 40.806236144809]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '45',
  'grade': 'C',
  'grade_date': '2024-11-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50168228',
  'dba': 'MANGETSU SUSHI',
  'boro': 'Manhattan',
  'building': '150',
  'street': 'MANHATTAN AVENUE',
  'zipcode': '10025',
  'phone': '6464204804',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799167553085',
  'longitude': '-73.961082290033',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055664',
  'bbl': '1018420047',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961082290033, 40.799167553085]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50080692',
  'dba': 'GONG CHA',
  'boro': 'Manhattan',
  'building': '2810',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468506566',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-06',
  'violation_description': 'Providing single-use, non-compostable plastic straws to customers without customer request (including providing such straws at a self-serve station)',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80326466421',
  'longitude': '-73.967328776455',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967328776455, 40.80326466421]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2025-10-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-10-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-01-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-04-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-02-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '71',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2025-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2025-03-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2023-03-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-03-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '60',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '50181748',
  'dba': 'MR. BYRDIES JOINT',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9293897351',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.802555579027',
  'longitude': '-73.96417581741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056713',
  'bbl': '1018810032',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96417581741, 40.802555579027]}},
 {'camis': '50080692',
  'dba': 'GONG CHA',
  'boro': 'Manhattan',
  'building': '2810',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468506566',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2023-06-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2023-06-02T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80326466421',
  'longitude': '-73.967328776455',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967328776455, 40.80326466421]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing:  Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2022-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05F',
  'violation_description': 'Insufficient or no hot holding, cold storage or cold holding equipment provided to maintain Time/Temperature Control for Safety Foods (TCS) at required temperatures',
  'critical_flag': 'Critical',
  'score': '44',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50137347',
  'dba': "EVERETT CAFE (TEACHER'S COLLEGE)",
  'boro': 'Manhattan',
  'building': '501',
  'street': 'WEST  121 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '50076863',
  'dba': 'ELIS WINE BAR',
  'boro': 'Manhattan',
  'building': '1012',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9175442557',
  'cuisine_description': 'French',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802783341084',
  'longitude': '-73.964009540077',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964009540077, 40.802783341084]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2025-12-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-12-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-10-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '50145866',
  'dba': 'SIPSTERIA',
  'boro': 'Manhattan',
  'building': '1264',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9175584407',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-03-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810831689823',
  'longitude': '-73.958131265446',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059676',
  'bbl': '1019770031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958131265446, 40.810831689823]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, and equipment not protected from potential source of contamination during storage, preparation, transportation, display or service.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10A',
  'violation_description': 'Toilet facility not maintained or provided with toilet paper, waste receptacle or self-closing door.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-05-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50155354',
  'dba': 'DRAGON 109 ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '1003A',
  'street': 'COLUMBUS AVE',
  'zipcode': '10025',
  'phone': '6468386688',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-02-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801355201243',
  'longitude': '-73.96133023214',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96133023214, 40.801355201243]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-01-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '45',
  'grade': 'C',
  'grade_date': '2024-11-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50127351',
  'dba': 'KYURAMEN / TBAAR',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-05-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-10-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '35',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '50055077',
  'dba': 'PUBLIQUE ESPRESSO',
  'boro': 'Manhattan',
  'building': '420',
  'street': 'WEST  118 STREET',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'American',
  'inspection_date': '2026-01-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2026-01-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807609639467',
  'longitude': '-73.95890994729',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1059497',
  'bbl': '1019610039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95890994729, 40.807609639467]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2023-02-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '45',
  'grade': 'C',
  'grade_date': '2024-11-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50093629',
  'dba': 'THE EXPAT',
  'boro': 'Manhattan',
  'building': '195',
  'street': 'CLAREMONT AVENUE',
  'zipcode': '10027',
  'phone': '6464102922',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2024-10-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '35',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815147094565',
  'longitude': '-73.959999930741',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059875',
  'bbl': '1019940072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959999930741, 40.815147094565]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2024-04-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '16',
  'grade': 'B',
  'grade_date': '2024-04-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '58',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-05-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-07-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-05-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '67',
  'grade': 'C',
  'grade_date': '2025-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-07-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50145948',
  'dba': 'PHO AMSTERDAM',
  'boro': 'Manhattan',
  'building': '1262',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6469644801',
  'cuisine_description': 'Soups/Salads/Sandwiches',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810776809407',
  'longitude': '-73.95817103744',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059675',
  'bbl': '1019770029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95817103744, 40.810776809407]}},
 {'camis': '50145866',
  'dba': 'SIPSTERIA',
  'boro': 'Manhattan',
  'building': '1264',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9175584407',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810831689823',
  'longitude': '-73.958131265446',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059676',
  'bbl': '1019770031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958131265446, 40.810831689823]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-03-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '50166461',
  'dba': 'NAI BROTHER SAUERKRAUT FISH',
  'boro': 'Manhattan',
  'building': '2817',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468951015',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.803322299785',
  'longitude': '-73.967314299741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1085323',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967314299741, 40.803322299785]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50181957',
  'dba': 'LA CONSTANCERA LLC.',
  'boro': 'Manhattan',
  'building': '993',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6467910006',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.800971022665',
  'longitude': '-73.961586904694',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055736',
  'bbl': '1018440001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961586904694, 40.800971022665]}},
 {'camis': '50044876',
  'dba': 'ARTS & CRAFTS BEER PARLOR',
  'boro': 'Manhattan',
  'building': '1135',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756835',
  'cuisine_description': 'Vegan',
  'inspection_date': '2024-07-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-07-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806696410041',
  'longitude': '-73.961124830344',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020101',
  'bin': '1056058',
  'bbl': '1018670074',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961124830344, 40.806696410041]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '92',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50151575',
  'dba': 'NAN XIANG EXPRESS SOUP DUMPLINGS',
  'boro': 'Manhattan',
  'building': '2783',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3477986479',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-02-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-02-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.802446930816',
  'longitude': '-73.96804436154',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96804436154, 40.802446930816]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50178467',
  'dba': 'IPIZZA NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2026-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2026-04-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2025-07-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50093719',
  'dba': 'WU & NUSSBAUM',
  'boro': 'Manhattan',
  'building': '2897',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122220040',
  'cuisine_description': 'Fusion',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80598688351',
  'longitude': '-73.965384058565',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965384058565, 40.80598688351]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2023-09-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-09-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50184358',
  'dba': 'MOLLY TEA CU LLC',
  'boro': 'Manhattan',
  'building': '2857',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2129918424',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.804730060435',
  'longitude': '-73.966294977913',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966294977913, 40.804730060435]}},
 {'camis': '50061295',
  'dba': 'TARTINA',
  'boro': 'Manhattan',
  'building': '1034',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6465900577',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803565414838',
  'longitude': '-73.963442017109',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963442017109, 40.803565414838]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40813994',
  'dba': 'MAX SOHA',
  'boro': 'Manhattan',
  'building': '1274',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125312221',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-11-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2025-11-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811111579854',
  'longitude': '-73.957928788503',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059680',
  'bbl': '1019770036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957928788503, 40.811111579854]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '41685153',
  'dba': 'RIVERSIDE CAFE',
  'boro': 'Manhattan',
  'building': '475',
  'street': 'RIVERSIDE DRIVE',
  'zipcode': '10115',
  'phone': '2128703043',
  'cuisine_description': 'American',
  'inspection_date': '2024-04-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2024-04-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811094482579',
  'longitude': '-73.964167591037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1059835',
  'bbl': '1019910001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964167591037, 40.811094482579]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Compliance Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '40365577',
  'dba': 'V & T PIZZERIA',
  'boro': 'Manhattan',
  'building': '1024',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126631708',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803329420525',
  'longitude': '-73.963611914951',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963611914951, 40.803329420525]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2023-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50000249',
  'dba': 'TAMASHII RAMEN',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '7182785888',
  'cuisine_description': 'Japanese',
  'inspection_date': '2024-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-05-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50182397',
  'dba': 'TACOS CANO',
  'boro': 'Manhattan',
  'building': '968',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6462483506',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801455180505',
  'longitude': '-73.964971046895',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056659',
  'bbl': '1018790036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964971046895, 40.801455180505]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '37',
  'grade': 'C',
  'grade_date': '2025-06-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-12-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '41685153',
  'dba': 'RIVERSIDE CAFE',
  'boro': 'Manhattan',
  'building': '475',
  'street': 'RIVERSIDE DRIVE',
  'zipcode': '10115',
  'phone': '2128703043',
  'cuisine_description': 'American',
  'inspection_date': '2025-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811094482579',
  'longitude': '-73.964167591037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1059835',
  'bbl': '1019910001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964167591037, 40.811094482579]}},
 {'camis': '50133164',
  'dba': 'PLAYA BOWLS',
  'boro': 'Manhattan',
  'building': '2841',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9179024851',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-07-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804216903503',
  'longitude': '-73.966674512161',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966674512161, 40.804216903503]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-05-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '56',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-08-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-08-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50057789',
  'dba': 'STARBUCKS COFFEE',
  'boro': 'Manhattan',
  'building': '3165',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9292432549',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.814677403427',
  'longitude': '-73.959035623849',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076685',
  'bbl': '1019930094',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959035623849, 40.814677403427]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-06-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06B',
  'violation_description': 'Tobacco or electronic cigarette use, eating, or drinking from open container in food preparation, food storage or dishwashing area.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2025-06-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '60',
  'grade': 'C',
  'grade_date': '2024-12-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '40685734',
  'dba': 'TOAST',
  'boro': 'Manhattan',
  'building': '3157',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126621144',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-09-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814559410341',
  'longitude': '-73.959122401347',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059856',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959122401347, 40.814559410341]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50061295',
  'dba': 'TARTINA',
  'boro': 'Manhattan',
  'building': '1034',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6465900577',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803565414838',
  'longitude': '-73.963442017109',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963442017109, 40.803565414838]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2022-07-08T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '49',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-09-05T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50048821',
  'dba': 'LA SALLE DUMPLING ROOM',
  'boro': 'Manhattan',
  'building': '3141',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129610300',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-07-29T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-07-29T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813911818271',
  'longitude': '-73.959596058573',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959596058573, 40.813911818271]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '91',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50076967',
  'dba': 'RICH AROMA',
  'boro': 'Manhattan',
  'building': '465',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2129328706',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-04-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '21',
  'grade': 'B',
  'grade_date': '2026-04-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.812883895295',
  'longitude': '-73.955825130629',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059531',
  'bbl': '1019660039',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955825130629, 40.812883895295]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2024-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '50159261',
  'dba': 'FROZEN LOVE',
  'boro': 'Manhattan',
  'building': '122',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '9173256400',
  'cuisine_description': 'Other',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813966918793',
  'longitude': '-73.960184888403',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059842',
  'bbl': '1019930037',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960184888403, 40.813966918793]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50119871',
  'dba': 'CLOUD TOUCH',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3475332631',
  'cuisine_description': 'Donuts',
  'inspection_date': '2025-05-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-05-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-11-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '20',
  'grade': 'Z',
  'grade_date': '2025-11-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2023-09-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-09-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50161087',
  'dba': "HALAL CHICK'S",
  'boro': 'Manhattan',
  'building': '961',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9294315279',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80004901021',
  'longitude': '-73.962259252328',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055676',
  'bbl': '1018430001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962259252328, 40.80004901021]}},
 {'camis': '41212798',
  'dba': 'CHOKOLAT PATISSERIE',
  'boro': 'Manhattan',
  'building': '3111',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126626096',
  'cuisine_description': 'French',
  'inspection_date': '2026-01-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10E',
  'violation_description': 'Accurate thermometer not provided or properly located in refrigerated, cold storage or hot holding equipment',
  'critical_flag': 'Not Critical',
  'score': '15',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.812816942241',
  'longitude': '-73.960391497006',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059837',
  'bbl': '1019930015',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960391497006, 40.812816942241]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-03-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50145948',
  'dba': 'PHO AMSTERDAM',
  'boro': 'Manhattan',
  'building': '1262',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6469644801',
  'cuisine_description': 'Soups/Salads/Sandwiches',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810776809407',
  'longitude': '-73.95817103744',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059675',
  'bbl': '1019770029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95817103744, 40.810776809407]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '71',
  'grade': 'C',
  'grade_date': '2025-04-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2024-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '50162524',
  'dba': 'DONGBEI',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2014235900',
  'cuisine_description': 'Chinese',
  'inspection_date': '2026-03-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.79969776648',
  'longitude': '-73.962515895825',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055671',
  'bbl': '1018420062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962515895825, 40.79969776648]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-06-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '50045121',
  'dba': 'SUBWAY',
  'boro': 'Manhattan',
  'building': '578',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463990754',
  'cuisine_description': 'Sandwiches',
  'inspection_date': '2024-06-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.815294585669',
  'longitude': '-73.957969486745',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059689',
  'bbl': '1019800075',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957969486745, 40.815294585669]}},
 {'camis': '41271036',
  'dba': 'CHIPOTLE MEXICAN GRILL',
  'boro': 'Manhattan',
  'building': '2843',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221712',
  'cuisine_description': 'Tex-Mex',
  'inspection_date': '2023-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-01-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804293739624',
  'longitude': '-73.966616679434',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057320',
  'bbl': '1018940011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966616679434, 40.804293739624]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2023-10-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2023-10-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '50163886',
  'dba': 'VERDELLO',
  'boro': 'Manhattan',
  'building': '994',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126652970',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.801075306145',
  'longitude': '-73.961536276891',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961536276891, 40.801075306145]}},
 {'camis': '50055609',
  'dba': 'CAFE EAST',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172168812',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '6',
  'grade': 'A',
  'grade_date': '2026-04-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2022-11-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual.  Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '69',
  'grade': 'C',
  'grade_date': '2022-11-30T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '91',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06E',
  'violation_description': 'Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-12-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'B',
  'grade_date': '2024-12-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '50043186',
  'dba': 'AMITY HALL',
  'boro': 'Manhattan',
  'building': '982',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6469302501',
  'cuisine_description': 'American',
  'inspection_date': '2022-05-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2022-05-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802023217984',
  'longitude': '-73.964562589897',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1075380',
  'bbl': '1018807501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964562589897, 40.802023217984]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-11-21T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '59',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50048821',
  'dba': 'LA SALLE DUMPLING ROOM',
  'boro': 'Manhattan',
  'building': '3141',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129610300',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-01-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedure improper.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-01-26T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813911818271',
  'longitude': '-73.959596058573',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959596058573, 40.813911818271]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2026-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2026-04-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '50009442',
  'dba': 'NOUS ESPRESSO BAR - LOCATED INSIDE PHILOSOPHY HALL IN COLUMBIA UNIVERSITY',
  'boro': 'Manhattan',
  'building': '1150',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6466435187',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807226024381',
  'longitude': '-73.960766902947',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084458',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960766902947, 40.807226024381]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2025-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50153487',
  'dba': 'SUMA SUSHI',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122805858',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-11-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '28-01',
  'violation_description': 'Nuisance created or allowed to exist. Facility not free from unsafe, hazardous, offensive or annoying condition.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'grade': 'C',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '50160600',
  'dba': 'MAMA AFRICA',
  'boro': 'Manhattan',
  'building': '429',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463719637',
  'cuisine_description': 'African',
  'inspection_date': '2025-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812186498044',
  'longitude': '-73.955225910007',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059544',
  'bbl': '1019660052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955225910007, 40.812186498044]}},
 {'camis': '50070471',
  'dba': 'MCDONALDS # 18093',
  'boro': 'Manhattan',
  'building': '354',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '3472970243',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2025-12-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-12-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810876319954',
  'longitude': '-73.952889513336',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059300',
  'bbl': '1019510051',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952889513336, 40.810876319954]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-03-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '5',
  'grade': 'A',
  'grade_date': '2025-03-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2023-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50054967',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '2960',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129882500',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2024-10-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80818766481',
  'longitude': '-73.963746517738',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084472',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963746517738, 40.80818766481]}},
 {'camis': '41046685',
  'dba': 'CREPES ON COLUMBUS',
  'boro': 'Manhattan',
  'building': '990',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122220259',
  'cuisine_description': 'French',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '16',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Second Compliance Inspection',
  'latitude': '40.80099572781',
  'longitude': '-73.961594114287',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1079465',
  'bbl': '1018630029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961594114287, 40.80099572781]}},
 {'camis': '50119871',
  'dba': 'CLOUD TOUCH',
  'boro': 'Manhattan',
  'building': '2785',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '3475332631',
  'cuisine_description': 'Donuts',
  'inspection_date': '2025-05-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-05-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.80247986175',
  'longitude': '-73.968022673472',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1057284',
  'bbl': '1018920046',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.968022673472, 40.80247986175]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-04-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'B',
  'grade_date': '2025-04-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '40824179',
  'dba': 'COMMUNITY FOOD AND JUICE',
  'boro': 'Manhattan',
  'building': '2893',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126652800',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '27',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805899071211',
  'longitude': '-73.965449124356',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965449124356, 40.805899071211]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02H',
  'violation_description': 'After cooking or removal from hot holding, TCS food not cooled by an approved method whereby the internal temperature is reduced from 140 °F to 70 °F or less within 2 hours, and from 70 °F to 41 °F or less within 4 additional hours.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2022-01-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04O',
  'violation_description': "Live animals other than fish in tank or service animal present in facility's food and/or non-food areas.",
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2022-01-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50099843',
  'dba': 'NARANJITO JUICE',
  'boro': 'Manhattan',
  'building': '1349',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464844214',
  'cuisine_description': 'Mexican',
  'inspection_date': '2022-07-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813808915651',
  'longitude': '-73.955932893786',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084100',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955932893786, 40.813808915651]}},
 {'camis': '41699605',
  'dba': "PANCHO'S ANTOJITOS MEXICANOS",
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2123165400',
  'cuisine_description': 'Mexican',
  'inspection_date': '2024-04-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08C',
  'violation_description': 'Pesticide not properly labeled or used by unlicensed individual. Pesticide, other toxic chemical improperly used/stored. Unprotected, unlocked bait station used.',
  'critical_flag': 'Not Critical',
  'score': '50',
  'grade': 'C',
  'grade_date': '2024-04-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '37',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50159261',
  'dba': 'FROZEN LOVE',
  'boro': 'Manhattan',
  'building': '122',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '9173256400',
  'cuisine_description': 'Other',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813966918793',
  'longitude': '-73.960184888403',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059842',
  'bbl': '1019930037',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960184888403, 40.813966918793]}},
 {'camis': '50134260',
  'dba': 'PIZZA HUT',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '4692840850',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-07-14T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.799387691042',
  'longitude': '-73.962765289762',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055966',
  'bbl': '1018610029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962765289762, 40.799387691042]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50081739',
  'dba': 'JOE COFFEE COMPANY',
  'boro': 'Manhattan',
  'building': '2950',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129247400',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-11-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-11-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807685492079',
  'longitude': '-73.964115248614',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082164',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964115248614, 40.807685492079]}},
 {'camis': '50137347',
  'dba': "EVERETT CAFE (TEACHER'S COLLEGE)",
  'boro': 'Manhattan',
  'building': '501',
  'street': 'WEST  121 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-04-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-04-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '37',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '62',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50165527',
  'dba': 'UPSIDE PIZZA',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9175878888',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '47',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-04',
  'violation_description': '“Choking first aid” poster not posted. “Alcohol and Pregnancy” warning sign not posted. Resuscitation equipment: exhaled air resuscitation masks (adult & pediatric), latex gloves, sign not posted.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2024-12-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '40605511',
  'dba': "DOMINO'S",
  'boro': 'Manhattan',
  'building': '409',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '2122803200',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '45',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811587862688',
  'longitude': '-73.954511033458',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059550',
  'bbl': '1019660066',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.954511033458, 40.811587862688]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '109',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-08-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '25',
  'grade': 'B',
  'grade_date': '2025-08-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50093232',
  'dba': 'BARNARD COLLEGE - MILSTEIN CENTER PEETS COFFEE',
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6462070062',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2022-09-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2022-09-16T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2024-10-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-10-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50060424',
  'dba': 'THE CRAFTSMAN',
  'boro': 'Manhattan',
  'building': '3155',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129330602',
  'cuisine_description': 'American',
  'inspection_date': '2026-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04H',
  'violation_description': 'Raw, cooked or prepared food is adulterated, contaminated, cross-contaminated, or not discarded in accordance with HACCP plan.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814529225873',
  'longitude': '-73.959144096096',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059855',
  'bbl': '1019930086',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959144096096, 40.814529225873]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2022-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '44',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '50160600',
  'dba': 'MAMA AFRICA',
  'boro': 'Manhattan',
  'building': '429',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6463719637',
  'cuisine_description': 'African',
  'inspection_date': '2025-02-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.812186498044',
  'longitude': '-73.955225910007',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059544',
  'bbl': '1019660052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955225910007, 40.812186498044]}},
 {'camis': '50137032',
  'dba': 'CHARLES PAN-FRIED CHICKEN',
  'boro': 'Manhattan',
  'building': '439',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466180438',
  'cuisine_description': 'Chicken',
  'inspection_date': '2025-09-05T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.812400661178',
  'longitude': '-73.955413619207',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1087339',
  'bbl': '1019660049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955413619207, 40.812400661178]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2025-08-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2025-08-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '41685153',
  'dba': 'RIVERSIDE CAFE',
  'boro': 'Manhattan',
  'building': '475',
  'street': 'RIVERSIDE DRIVE',
  'zipcode': '10115',
  'phone': '2128703043',
  'cuisine_description': 'American',
  'inspection_date': '2025-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811094482579',
  'longitude': '-73.964167591037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1059835',
  'bbl': '1019910001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964167591037, 40.811094482579]}},
 {'camis': '41561808',
  'dba': 'FALAFEL ON BROADWAY',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122222300',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2022-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2022-09-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50034366',
  'dba': 'CARLETON LOUNGE',
  'boro': 'Manhattan',
  'building': '500',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80949828053',
  'longitude': '-73.95963125991',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1089910',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95963125991, 40.80949828053]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2022-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths soiled or not stored in sanitizing solution.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 {'camis': '50102985',
  'dba': 'TEA MAGIC',
  'boro': 'Manhattan',
  'building': '2878',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176621174',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.805347488536',
  'longitude': '-73.965821467268',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056988',
  'bbl': '1018830059',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965821467268, 40.805347488536]}},
 {'camis': '50054967',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '2960',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129882500',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2026-03-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80818766481',
  'longitude': '-73.963746517738',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084472',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963746517738, 40.80818766481]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2025-09-12T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '50145847',
  'dba': 'MIZU',
  'boro': 'Manhattan',
  'building': '940',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176756338',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '14',
  'grade': 'B',
  'grade_date': '2025-07-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800664869119',
  'longitude': '-73.965552985782',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056639',
  'bbl': '1018780031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965552985782, 40.800664869119]}},
 {'camis': '50162300',
  'dba': 'DH NOODLES/WHALE TEA',
  'boro': 'Manhattan',
  'building': '1268',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6464764549',
  'cuisine_description': 'Other',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.810944195356',
  'longitude': '-73.958051719524',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059677',
  'bbl': '1019770033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958051719524, 40.810944195356]}},
 {'camis': '50131886',
  'dba': 'iPizza NY',
  'boro': 'Manhattan',
  'building': '351',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '9172658973',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.810857068175',
  'longitude': '-73.952795602284',
  'community_board': '109',
  'council_district': '09',
  'census_tract': '020901',
  'bin': '1059309',
  'bbl': '1019520011',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.952795602284, 40.810857068175]}},
 {'camis': '50080692',
  'dba': 'GONG CHA',
  'boro': 'Manhattan',
  'building': '2810',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468506566',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2026-03-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80326466421',
  'longitude': '-73.967328776455',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967328776455, 40.80326466421]}},
 {'camis': '50043772',
  'dba': 'THE HAMILTON',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9176137264',
  'cuisine_description': 'American',
  'inspection_date': '2024-06-05T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-06-05T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802555579027',
  'longitude': '-73.96417581741',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056713',
  'bbl': '1018810032',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.96417581741, 40.802555579027]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2023-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '41647571',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2025-04-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09A',
  'violation_description': 'Swollen, leaking, rusted or otherwise damaged canned food to be returned to distributor not segregated from intact product and clearly labeled DO NOT USE',
  'critical_flag': 'Not Critical',
  'score': '46',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50059935',
  'dba': '108 FOOD DRIED HOT POT',
  'boro': 'Manhattan',
  'building': '2794',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9176756878',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-10-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '42',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802765207183',
  'longitude': '-73.967636046671',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967636046671, 40.802765207183]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '64',
  'grade': 'C',
  'grade_date': '2024-09-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '40790187',
  'dba': 'FERRIS BOOTH COMMONS - ALFRED LERNER HALL',
  'boro': 'Manhattan',
  'building': '2920',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128544609',
  'cuisine_description': 'American',
  'inspection_date': '2025-03-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807040623703',
  'longitude': '-73.964588806502',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1082166',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964588806502, 40.807040623703]}},
 {'camis': '50118137',
  'dba': 'DRAGON SUSHI',
  'boro': 'Manhattan',
  'building': '1272',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '6462038419',
  'cuisine_description': 'Japanese',
  'inspection_date': '2024-04-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.811053956087',
  'longitude': '-73.957972175072',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059679',
  'bbl': '1019770035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957972175072, 40.811053956087]}},
 {'camis': '50000249',
  'dba': 'TAMASHII RAMEN',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '7182785888',
  'cuisine_description': 'Japanese',
  'inspection_date': '2024-05-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-05-21T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '40685734',
  'dba': 'TOAST',
  'boro': 'Manhattan',
  'building': '3157',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126621144',
  'cuisine_description': 'American',
  'inspection_date': '2024-04-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04C',
  'violation_description': 'Food worker/food vendor does not use utensil or other barrier to eliminate bare hand contact with food that will not receive adequate additional heat treatment.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-04-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814559410341',
  'longitude': '-73.959122401347',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059856',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959122401347, 40.814559410341]}},
 {'camis': '41615257',
  'dba': 'JIN RAMEN',
  'boro': 'Manhattan',
  'building': '3183',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465592862',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-09-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2025-09-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.815324993134',
  'longitude': '-73.958561955679',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1075481',
  'bbl': '1019957501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958561955679, 40.815324993134]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '97',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '50057789',
  'dba': 'STARBUCKS COFFEE',
  'boro': 'Manhattan',
  'building': '3165',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9292432549',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-02-02T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-07',
  'violation_description': 'Failure to maintain a sufficient supply of single-use, non-compostable plastic straws.',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.814677403427',
  'longitude': '-73.959035623849',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1076685',
  'bbl': '1019930094',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959035623849, 40.814677403427]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2022-08-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '53',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50146899',
  'dba': 'MASSAWA FOODS',
  'boro': 'Manhattan',
  'building': '3153',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6469067956',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2025-07-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814460625261',
  'longitude': '-73.959194715974',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059854',
  'bbl': '1019930083',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959194715974, 40.814460625261]}},
 {'camis': '40423654',
  'dba': 'THE HUNGARIAN PASTRY SHOP',
  'boro': 'Manhattan',
  'building': '1030',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2128664230',
  'cuisine_description': 'Eastern European',
  'inspection_date': '2024-07-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '19',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803472115272',
  'longitude': '-73.963510698204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056909',
  'bbl': '1018820036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963510698204, 40.803472115272]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '48',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50128639',
  'dba': 'SAPPS UWS',
  'boro': 'Manhattan',
  'building': '2888',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464549623',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-07-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '19-06',
  'violation_description': 'Providing single-use, non-compostable plastic straws to customers without customer request (including providing such straws at a self-serve station)',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.805709717354',
  'longitude': '-73.965561201504',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965561201504, 40.805709717354]}},
 {'camis': '50076863',
  'dba': 'ELIS WINE BAR',
  'boro': 'Manhattan',
  'building': '1012',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9175442557',
  'cuisine_description': 'French',
  'inspection_date': '2024-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802783341084',
  'longitude': '-73.964009540077',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056714',
  'bbl': '1018810035',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964009540077, 40.802783341084]}},
 {'camis': '50080692',
  'dba': 'GONG CHA',
  'boro': 'Manhattan',
  'building': '2810',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468506566',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2024-12-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-12-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80326466421',
  'longitude': '-73.967328776455',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967328776455, 40.80326466421]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2024-10-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08B',
  'violation_description': 'Garbage receptacle not pest or water resistant, with tight-fitting lids, and covered except while in active use. Garbage receptacle and cover not cleaned after emptying and prior to reuse. Garbage, refuse and other solid and liquid waste not collected, stored, removed and disposed of so as to prevent a nuisance.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-10-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '41424474',
  'dba': 'JOHN JAY DINING HALL',
  'boro': 'Manhattan',
  'building': '515',
  'street': 'WEST  114 STREET',
  'zipcode': '10027',
  'phone': '2128547162',
  'cuisine_description': 'American',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805667548901',
  'longitude': '-73.962382481514',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1083301',
  'bbl': '1018860001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962382481514, 40.805667548901]}},
 {'camis': '50169005',
  'dba': 'TYPHOON CAFE',
  'boro': 'Manhattan',
  'building': '947',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9297614498',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-05-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05H',
  'violation_description': 'No approved written standard operating procedure for avoiding contamination by refillable returnable containers.',
  'critical_flag': 'Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.79953860877',
  'longitude': '-73.962631565724',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055645',
  'bbl': '1018420004',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962631565724, 40.79953860877]}},
 {'camis': '41585586',
  'dba': 'NIKKO',
  'boro': 'Manhattan',
  'building': '1280',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2125311188',
  'cuisine_description': 'Asian/Asian Fusion',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '70',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811383237945',
  'longitude': '-73.957733540135',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957733540135, 40.811383237945]}},
 {'camis': '50131998',
  'dba': 'BAN BAN SHOP',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9174001783',
  'cuisine_description': 'Fusion',
  'inspection_date': '2023-07-24T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2025-03-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50109228',
  'dba': 'HEX AND COMPANY',
  'boro': 'Manhattan',
  'building': '2911',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2124391008',
  'cuisine_description': 'American',
  'inspection_date': '2023-07-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-07-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806445154363',
  'longitude': '-73.965047880153',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965047880153, 40.806445154363]}},
 {'camis': '50119564',
  'dba': 'HOMEMADE TAQUERIA',
  'boro': 'Manhattan',
  'building': '999',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2124193866',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-09-25T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801256410996',
  'longitude': '-73.961391693181',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055739',
  'bbl': '1018450001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961391693181, 40.801256410996]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2025-03-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-03-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2023-06-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-12-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '50085430',
  'dba': 'KIKOO SUSHI',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9292856666',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-04-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2023-04-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801327767141',
  'longitude': '-73.961369979813',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1088722',
  'bbl': '1018640036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961369979813, 40.801327767141]}},
 {'camis': '41365100',
  'dba': 'HAAGEN-DAZS',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126625265',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2024-02-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-05-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-03-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '50161998',
  'dba': 'SUPER NICE PIZZA',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '5168496039',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-01-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50160607',
  'dba': 'NOBODY TOLD ME',
  'boro': 'Manhattan',
  'building': '951',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '9177556026',
  'cuisine_description': 'American',
  'inspection_date': '2025-06-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '37',
  'grade': 'C',
  'grade_date': '2025-06-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.800881647688',
  'longitude': '-73.965365051979',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055980',
  'bbl': '1018610063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965365051979, 40.800881647688]}},
 {'camis': '41556791',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '550',
  'street': 'WEST  120 STREET',
  'zipcode': '10027',
  'phone': '7187043793',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-12-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-12-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809907586248',
  'longitude': '-73.960606368894',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084477',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960606368894, 40.809907586248]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '58',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '40390409',
  'dba': "THE FAMOUS JIMBO'S HAMBURGER PALACE",
  'boro': 'Manhattan',
  'building': '1345',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2128658777',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2026-05-07T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02H',
  'violation_description': 'After cooking or removal from hot holding, TCS food not cooled by an approved method whereby the internal temperature is reduced from 140 °F to 70 °F or less within 2 hours, and from 70 °F to 41 °F or less within 4 additional hours.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-05-07T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.813704645851',
  'longitude': '-73.956012441278',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1084098',
  'bbl': '1019660033',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.956012441278, 40.813704645851]}},
 {'camis': '50106065',
  'dba': 'CALAVERAS CORNER',
  'boro': 'Manhattan',
  'building': '936',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126580678',
  'cuisine_description': 'Mexican',
  'inspection_date': '2026-04-16T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800491987865',
  'longitude': '-73.965679492956',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056637',
  'bbl': '1018780029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965679492956, 40.800491987865]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-09-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '21',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2023-10-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2023-10-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-06-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '26',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '38',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '50065324',
  'dba': "GIOVANNI'S PIZZA",
  'boro': 'Manhattan',
  'building': '1011',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2126637000',
  'cuisine_description': 'Steakhouse',
  'inspection_date': '2023-03-13T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2023-03-13T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801550039329',
  'longitude': '-73.961214535078',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961214535078, 40.801550039329]}},
 {'camis': '50085430',
  'dba': 'KIKOO SUSHI',
  'boro': 'Manhattan',
  'building': '998',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9292856666',
  'cuisine_description': 'Japanese',
  'inspection_date': '2023-04-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container.  Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '24',
  'grade': 'B',
  'grade_date': '2023-04-19T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.801327767141',
  'longitude': '-73.961369979813',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1088722',
  'bbl': '1018640036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961369979813, 40.801327767141]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-11-21T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '59',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50085359',
  'dba': 'HIMALAYAN CURRY HOUSE',
  'boro': 'Manhattan',
  'building': '254',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '2127497800',
  'cuisine_description': 'Indian',
  'inspection_date': '2024-11-27T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'C',
  'grade_date': '2024-11-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.802660720673',
  'longitude': '-73.966982317915',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056672',
  'bbl': '1018790061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966982317915, 40.802660720673]}},
 {'camis': '50067913',
  'dba': 'SHAKE SHACK',
  'boro': 'Manhattan',
  'building': '2957',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9143430437',
  'cuisine_description': 'Hamburgers',
  'inspection_date': '2023-05-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '20',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.807850146304',
  'longitude': '-73.964017626708',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1057380',
  'bbl': '1018960072',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964017626708, 40.807850146304]}},
 {'camis': '40685734',
  'dba': 'TOAST',
  'boro': 'Manhattan',
  'building': '3157',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126621144',
  'cuisine_description': 'American',
  'inspection_date': '2025-05-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-05-08T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814559410341',
  'longitude': '-73.959122401347',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059856',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959122401347, 40.814559410341]}},
 {'camis': '50089980',
  'dba': 'THE CALAVERAS',
  'boro': 'Manhattan',
  'building': '949',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6464846533',
  'cuisine_description': 'Mexican',
  'inspection_date': '2025-07-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799590746045',
  'longitude': '-73.962591805711',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055673',
  'bbl': '1018420064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962591805711, 40.799590746045]}},
 {'camis': '50107497',
  'dba': 'TRUFA PIZZERIA',
  'boro': 'Manhattan',
  'building': '3161',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '9172386330',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '60',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814617034521',
  'longitude': '-73.959079013484',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1082765',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959079013484, 40.814617034521]}},
 {'camis': '40397969',
  'dba': 'PEKING GARDEN',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2128653600',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50071792',
  'dba': 'PANDA EXPRESS # 2792',
  'boro': 'Manhattan',
  'building': '2852',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126780139',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-07-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-07-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804653217067',
  'longitude': '-73.966327526336',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056916',
  'bbl': '1018820061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966327526336, 40.804653217067]}},
 {'camis': '50066109',
  'dba': 'KORONET PIZZA',
  'boro': 'Manhattan',
  'building': '2848',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122221566',
  'cuisine_description': 'Pizza',
  'inspection_date': '2026-05-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80453796204',
  'longitude': '-73.966410664204',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056917',
  'bbl': '1018820063',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966410664204, 40.80453796204]}},
 {'camis': '50184503',
  'dba': 'POLLOS JUQUILA 2 LLC',
  'boro': 'Manhattan',
  'building': '429',
  'street': 'WEST  125 STREET',
  'zipcode': '10027',
  'phone': '6466841730',
  'inspection_date': '1900-01-01T00:00:00.000',
  'critical_flag': 'Not Applicable',
  'record_date': '2026-06-02T06:00:22.000',
  'latitude': '40.812186498044',
  'longitude': '-73.955225910007',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059544',
  'bbl': '1019660052',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955225910007, 40.812186498044]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-06',
  'violation_description': 'Current letter grade or Grade Pending card not posted',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '50164421',
  'dba': 'COMA BUENO',
  'boro': 'Manhattan',
  'building': '944',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '3477925571',
  'cuisine_description': 'Latin American',
  'inspection_date': '2026-04-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04M',
  'violation_description': "Live roaches in facility's food or non-food area.",
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.79949471042',
  'longitude': '-73.962685768519',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055968',
  'bbl': '1018610031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962685768519, 40.79949471042]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-04-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-08',
  'violation_description': 'Failure to post or conspicuously post healthy eating information',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50160982',
  'dba': 'HALAL BITEZ',
  'boro': 'Manhattan',
  'building': '360',
  'street': 'WEST  110 STREET',
  'zipcode': '10025',
  'phone': '6467053559',
  'cuisine_description': 'Middle Eastern',
  'inspection_date': '2025-04-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '20-01',
  'violation_description': 'Allergen or intolerance notice not translated into common language when required',
  'critical_flag': 'Not Critical',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Administrative Miscellaneous / Initial Inspection',
  'latitude': '40.801332814353',
  'longitude': '-73.960076891391',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055741',
  'bbl': '1018450003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960076891391, 40.801332814353]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-01-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50044351',
  'dba': 'HAPPY HOT HUNAN',
  'boro': 'Manhattan',
  'building': '969',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125311788',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '22',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801392057921',
  'longitude': '-73.964992752083',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055995',
  'bbl': '1018620064',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964992752083, 40.801392057921]}},
 {'camis': '50006252',
  'dba': 'DIG INN SEASONAL MARKET',
  'boro': 'Manhattan',
  'building': '2884',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125457867',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2024-10-01T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805599951306',
  'longitude': '-73.965640726982',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965640726982, 40.805599951306]}},
 {'camis': '50127697',
  'dba': 'BAR 314',
  'boro': 'Manhattan',
  'building': '3143',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6466827645',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-02-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '71',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.813985907279',
  'longitude': '-73.95954182352',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059850',
  'bbl': '1019930076',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95954182352, 40.813985907279]}},
 {'camis': '40388419',
  'dba': 'FAMOUS FAMIGLIA PIZZERIA',
  'boro': 'Manhattan',
  'building': '2859',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128651234',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-07-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-07-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804776710519',
  'longitude': '-73.966258832618',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966258832618, 40.804776710519]}},
 {'camis': '50140436',
  'dba': 'JUST SALAD',
  'boro': 'Manhattan',
  'building': '2853',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '7323004245',
  'cuisine_description': 'Salads',
  'inspection_date': '2025-03-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2025-03-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.804636759173',
  'longitude': '-73.966363656199',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966363656199, 40.804636759173]}},
 {'camis': '50153487',
  'dba': 'SUMA SUSHI',
  'boro': 'Manhattan',
  'building': '964',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122805858',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-01-30T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801328950729',
  'longitude': '-73.965065024806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056658',
  'bbl': '1018790031',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965065024806, 40.801328950729]}},
 {'camis': '50137347',
  'dba': "EVERETT CAFE (TEACHER'S COLLEGE)",
  'boro': 'Manhattan',
  'building': '501',
  'street': 'WEST  121 STREET',
  'zipcode': '10027',
  'phone': '2128548324',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2023-08-28T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-08-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.810085394571',
  'longitude': '-73.958893963149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1059657',
  'bbl': '1019760029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.958893963149, 40.810085394571]}},
 {'camis': '50159692',
  'dba': 'ZAAD',
  'boro': 'Manhattan',
  'building': '963',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '3478815576',
  'cuisine_description': 'Mediterranean',
  'inspection_date': '2025-04-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09C',
  'violation_description': 'Design, construction, materials used or maintenance of food contact surface improper. Surface not easily cleanable, sanitized and maintained.',
  'critical_flag': 'Not Critical',
  'score': '36',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.801243874539',
  'longitude': '-73.965101189285',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055984',
  'bbl': '1018620002',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965101189285, 40.801243874539]}},
 {'camis': '41255436',
  'dba': 'EL PORTON',
  'boro': 'Manhattan',
  'building': '3151',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126657338',
  'cuisine_description': 'Mexican',
  'inspection_date': '2023-01-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '56',
  'grade': 'C',
  'grade_date': '2023-01-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814315191017',
  'longitude': '-73.959299573149',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059853',
  'bbl': '1019930082',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959299573149, 40.814315191017]}},
 {'camis': '40669697',
  'dba': 'LE MONDE',
  'boro': 'Manhattan',
  'building': '2883',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2125313939',
  'cuisine_description': 'French',
  'inspection_date': '2026-04-09T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02B',
  'violation_description': 'Hot TCS food item not held at or above 140 °F.',
  'critical_flag': 'Critical',
  'score': '10',
  'grade': 'A',
  'grade_date': '2026-04-09T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805569772057',
  'longitude': '-73.965684089037',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057336',
  'bbl': '1018950016',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965684089037, 40.805569772057]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-01-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2024-01-11T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '40365577',
  'dba': 'V & T PIZZERIA',
  'boro': 'Manhattan',
  'building': '1024',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126631708',
  'cuisine_description': 'Italian',
  'inspection_date': '2024-09-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '33',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.803329420525',
  'longitude': '-73.963611914951',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056908',
  'bbl': '1018820028',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963611914951, 40.803329420525]}},
 {'camis': '50062844',
  'dba': 'JUNZI KITCHEN',
  'boro': 'Manhattan',
  'building': '2896',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '9172612497',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-11-20T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '17',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805967667019',
  'longitude': '-73.965373231928',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057014',
  'bbl': '1018840061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965373231928, 40.805967667019]}},
 {'camis': '50080773',
  'dba': 'PLOWSHARES COFFEE ROASTERS',
  'boro': 'Manhattan',
  'building': '1351',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '9178483257',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-09-08T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '58',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Compliance Inspection',
  'latitude': '40.813863795274',
  'longitude': '-73.955893118121',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020901',
  'bin': '1059561',
  'bbl': '1019660108',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.955893118121, 40.813863795274]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2022-12-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests  in  establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '14',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '41672484',
  'dba': 'KURO KUMA ESPRESSO & COFFEE',
  'boro': 'Manhattan',
  'building': '121',
  'street': 'LASALLE STREET',
  'zipcode': '10027',
  'phone': '9179724774',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06D',
  'violation_description': 'Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814008107473',
  'longitude': '-73.960235440924',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059849',
  'bbl': '1019930073',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960235440924, 40.814008107473]}},
 {'camis': '41365100',
  'dba': 'HAAGEN-DAZS',
  'boro': 'Manhattan',
  'building': '2905',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126625265',
  'cuisine_description': 'Frozen Desserts',
  'inspection_date': '2023-01-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2023-01-17T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.806283250562',
  'longitude': '-73.965167169426',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057350',
  'bbl': '1018950055',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965167169426, 40.806283250562]}},
 {'camis': '50168228',
  'dba': 'MANGETSU SUSHI',
  'boro': 'Manhattan',
  'building': '150',
  'street': 'MANHATTAN AVENUE',
  'zipcode': '10025',
  'phone': '6464204804',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799167553085',
  'longitude': '-73.961082290033',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055664',
  'bbl': '1018420047',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961082290033, 40.799167553085]}},
 {'camis': '50180783',
  'dba': '2788 BAGELS',
  'boro': 'Manhattan',
  'building': '2788',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6464227727',
  'cuisine_description': 'Bagels/Pretzels',
  'inspection_date': '2026-05-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '67',
  'grade': 'Z',
  'grade_date': '2026-05-27T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.80253741452',
  'longitude': '-73.967712010611',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1079475',
  'bbl': '1018790062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967712010611, 40.80253741452]}},
 {'camis': '40389356',
  'dba': "TOM'S RESTAURANT",
  'boro': 'Manhattan',
  'building': '2880',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128646137',
  'cuisine_description': 'American',
  'inspection_date': '2024-07-17T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '24',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805490185201',
  'longitude': '-73.965720252196',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056989',
  'bbl': '1018840001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965720252196, 40.805490185201]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-04-03T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'critical_flag': 'Not Applicable',
  'score': '0',
  'grade': 'Z',
  'grade_date': '2026-04-03T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50168228',
  'dba': 'MANGETSU SUSHI',
  'boro': 'Manhattan',
  'building': '150',
  'street': 'MANHATTAN AVENUE',
  'zipcode': '10025',
  'phone': '6464204804',
  'cuisine_description': 'Japanese',
  'inspection_date': '2025-12-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '24',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.799167553085',
  'longitude': '-73.961082290033',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055664',
  'bbl': '1018420047',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.961082290033, 40.799167553085]}},
 {'camis': '40918579',
  'dba': 'PISTICCI RESTAURANT',
  'boro': 'Manhattan',
  'building': '125',
  'street': 'LA SALLE STREET',
  'zipcode': '10027',
  'phone': '2129323500',
  'cuisine_description': 'Italian',
  'inspection_date': '2025-05-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '11',
  'grade': 'A',
  'grade_date': '2025-05-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.81405755657',
  'longitude': '-73.960361854501',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059866',
  'bbl': '1019930112',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.960361854501, 40.81405755657]}},
 {'camis': '50084510',
  'dba': 'ATLAS KITCHEN',
  'boro': 'Manhattan',
  'building': '258',
  'street': 'WEST  109 STREET',
  'zipcode': '10025',
  'phone': '6469280522',
  'cuisine_description': 'Chinese',
  'inspection_date': '2023-11-15T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '18',
  'grade': 'B',
  'grade_date': '2023-11-15T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.803083132519',
  'longitude': '-73.966024910123',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056690',
  'bbl': '1018800061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966024910123, 40.803083132519]}},
 {'camis': '50088153',
  'dba': 'FUMO',
  'boro': 'Manhattan',
  'building': '2791',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6468222921',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-03-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10H',
  'violation_description': 'Single service article not provided. Single service article reused or not protected from contamination when transported, stored, dispensed. Drinking straws not completely enclosed in wrapper or dispensed from a sanitary device.',
  'critical_flag': 'Not Critical',
  'score': '30',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.802586885744',
  'longitude': '-73.967946769044',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057285',
  'bbl': '1018920049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.967946769044, 40.802586885744]}},
 {'camis': '50071792',
  'dba': 'PANDA EXPRESS # 2792',
  'boro': 'Manhattan',
  'building': '2852',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2126780139',
  'cuisine_description': 'Chinese',
  'inspection_date': '2024-07-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2024-07-31T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804653217067',
  'longitude': '-73.966327526336',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1056916',
  'bbl': '1018820061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966327526336, 40.804653217067]}},
 {'camis': '50093719',
  'dba': 'WU & NUSSBAUM',
  'boro': 'Manhattan',
  'building': '2897',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122220040',
  'cuisine_description': 'Fusion',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80598688351',
  'longitude': '-73.965384058565',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965384058565, 40.80598688351]}},
 {'camis': '41012973',
  'dba': "MAMA'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '941',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2125319797',
  'cuisine_description': 'Pizza',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800549608118',
  'longitude': '-73.965614448432',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055948',
  'bbl': '1018610001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965614448432, 40.800549608118]}},
 {'camis': '40685734',
  'dba': 'TOAST',
  'boro': 'Manhattan',
  'building': '3157',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2126621144',
  'cuisine_description': 'American',
  'inspection_date': '2022-09-06T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '9',
  'grade': 'A',
  'grade_date': '2022-09-06T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.814559410341',
  'longitude': '-73.959122401347',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059856',
  'bbl': '1019930088',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959122401347, 40.814559410341]}},
 {'camis': '50116774',
  'dba': 'TROPICAL SENSATION',
  'boro': 'Manhattan',
  'building': '953',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122220098',
  'cuisine_description': 'Latin American',
  'inspection_date': '2024-10-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04K',
  'violation_description': "Evidence of rats or live rats in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2024-10-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.800928298588',
  'longitude': '-73.965332520076',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055979',
  'bbl': '1018610062',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965332520076, 40.800928298588]}},
 {'camis': '50161998',
  'dba': 'SUPER NICE PIZZA',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '5168496039',
  'cuisine_description': 'Italian',
  'inspection_date': '2026-05-12T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04C',
  'violation_description': 'Food worker/food vendor does not use utensil or other barrier to eliminate bare hand contact with food that will not receive adequate additional heat treatment.',
  'critical_flag': 'Critical',
  'score': '27',
  'grade': 'Z',
  'grade_date': '2026-05-12T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50066588',
  'dba': "CAP'T LOUI",
  'boro': 'Manhattan',
  'building': '3147',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2122226608',
  'cuisine_description': 'Seafood',
  'inspection_date': '2026-04-27T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09B',
  'violation_description': 'Thawing procedure improper.',
  'critical_flag': 'Not Critical',
  'score': '38',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814134085217',
  'longitude': '-73.959433353051',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059851',
  'bbl': '1019930079',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959433353051, 40.814134085217]}},
 {'camis': '40571128',
  'dba': 'THE HEIGHTS BAR & GRILL',
  'boro': 'Manhattan',
  'building': '2867',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128667035',
  'cuisine_description': 'American',
  'inspection_date': '2024-10-01T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04N',
  'violation_description': 'Filth flies or food/refuse/sewage associated with (FRSA) flies or other nuisance pests in establishment’s food and/or non-food areas. FRSA flies include house flies, blow flies, bottle flies, flesh flies, drain flies, Phorid flies and fruit flies.',
  'critical_flag': 'Critical',
  'score': '25',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.805064848224',
  'longitude': '-73.966052792085',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057328',
  'bbl': '1018940049',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966052792085, 40.805064848224]}},
 {'camis': '41698701',
  'dba': 'CURRY KING',
  'boro': 'Manhattan',
  'building': '942',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '6466697826',
  'cuisine_description': 'Pakistani',
  'inspection_date': '2023-06-21T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06A',
  'violation_description': 'Personal cleanliness is inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn where required. Jewelry worn on hands or arms. Fingernail polish worn or fingernails not kept clean and trimmed.',
  'critical_flag': 'Critical',
  'score': '29',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.799439828364',
  'longitude': '-73.962725529944',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055967',
  'bbl': '1018610030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962725529944, 40.799439828364]}},
 {'camis': '40388091',
  'dba': 'MASAWA',
  'boro': 'Manhattan',
  'building': '1239',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2126630505',
  'cuisine_description': 'Ethiopian',
  'inspection_date': '2022-12-14T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '08A',
  'violation_description': 'Establishment is not free of harborage or conditions conducive to rodents, insects or other pests.',
  'critical_flag': 'Not Critical',
  'score': '14',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809898713071',
  'longitude': '-73.95878570577',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020701',
  'bin': '1059521',
  'bbl': '1019630030',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.95878570577, 40.809898713071]}},
 {'camis': '50017185',
  'dba': 'OASIS JIMMA JUICE BAR',
  'boro': 'Manhattan',
  'building': '3163',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '6465900685',
  'cuisine_description': 'Juice, Smoothies, Fruit Salads',
  'inspection_date': '2025-04-18T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2025-04-18T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.814647218976',
  'longitude': '-73.959057318676',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1059858',
  'bbl': '1019930092',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.959057318676, 40.814647218976]}},
 {'camis': '50054967',
  'dba': 'JOE COFFEE',
  'boro': 'Manhattan',
  'building': '2960',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '2129882500',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06F',
  'violation_description': 'Wiping cloths not stored clean and dry, or in a sanitizing solution, between uses.',
  'critical_flag': 'Critical',
  'score': '8',
  'grade': 'A',
  'grade_date': '2026-03-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80818766481',
  'longitude': '-73.963746517738',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020300',
  'bin': '1084472',
  'bbl': '1019730001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963746517738, 40.80818766481]}},
 {'camis': '50128076',
  'dba': 'WEST PLACE',
  'boro': 'Manhattan',
  'building': '1288',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10027',
  'phone': '2129329390',
  'cuisine_description': 'Chinese',
  'inspection_date': '2025-01-31T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '28',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.811569828638',
  'longitude': '-73.957592532575',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '021100',
  'bin': '1084108',
  'bbl': '1019780001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.957592532575, 40.811569828638]}},
 {'camis': '50176968',
  'dba': 'DURAR CAFE',
  'boro': 'Manhattan',
  'building': '996',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '6463441464',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2026-03-23T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '20',
  'grade': 'Z',
  'grade_date': '2026-03-23T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Re-inspection',
  'latitude': '40.802525393567',
  'longitude': '-73.964197505931',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964197505931, 40.802525393567]}},
 {'camis': '50093228',
  'dba': "BARNARD COLLEGE - DIANA'S CENTER CAFE",
  'boro': 'Manhattan',
  'building': '3009',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '3472237191',
  'cuisine_description': 'American',
  'inspection_date': '2026-02-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '13',
  'grade': 'A',
  'grade_date': '2026-02-10T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.809079508098',
  'longitude': '-73.963121086165',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bin': '1082351',
  'bbl': '1019890001',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963121086165, 40.809079508098]}},
 {'camis': '41241757',
  'dba': 'THAI MARKET',
  'boro': 'Manhattan',
  'building': '960',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2122804575',
  'cuisine_description': 'Thai',
  'inspection_date': '2023-04-22T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '02G',
  'violation_description': 'Cold TCS food item held above 41 °F; smoked or processed fish held above 38 °F; intact raw eggs held above 45 °F; or reduced oxygen packaged (ROP) TCS foods held above required temperatures except during active necessary preparation.',
  'critical_flag': 'Critical',
  'score': '7',
  'grade': 'A',
  'grade_date': '2023-04-22T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801202719779',
  'longitude': '-73.965155390397',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056657',
  'bbl': '1018790029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965155390397, 40.801202719779]}},
 {'camis': '40388419',
  'dba': 'FAMOUS FAMIGLIA PIZZERIA',
  'boro': 'Manhattan',
  'building': '2859',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128651234',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-12-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '06C',
  'violation_description': 'Food, supplies, or equipment not protected from potential source of contamination during storage, preparation, transportation, display, service or from customer’s refillable, reusable container. Condiments not in single-service containers or dispensed directly by the vendor.',
  'critical_flag': 'Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-12-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804776710519',
  'longitude': '-73.966258832618',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966258832618, 40.804776710519]}},
 {'camis': '50112310',
  'dba': 'DOABA DELI',
  'boro': 'Manhattan',
  'building': '945',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '2122222636',
  'cuisine_description': 'Indian',
  'inspection_date': '2026-03-26T00:00:00.000',
  'action': 'Establishment re-closed by DOHMH.',
  'violation_code': '04L',
  'violation_description': "Evidence of mice or live mice in establishment's food or non-food areas.",
  'critical_flag': 'Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Reopening Inspection',
  'latitude': '40.799486470307',
  'longitude': '-73.962667713806',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055644',
  'bbl': '1018420003',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962667713806, 40.799486470307]}},
 {'camis': '50131612',
  'dba': 'OMONIA CAFE',
  'boro': 'Manhattan',
  'building': '2801',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122464050',
  'cuisine_description': 'Bakery Products/Desserts',
  'inspection_date': '2023-07-28T00:00:00.000',
  'action': 'Establishment re-opened by DOHMH.',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '2',
  'grade': 'P',
  'grade_date': '2023-07-28T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Reopening Inspection',
  'latitude': '40.80302043603',
  'longitude': '-73.9675203361',
  'community_board': '107',
  'council_district': '06',
  'census_tract': '019500',
  'bin': '1057305',
  'bbl': '1018937501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.9675203361, 40.80302043603]}},
 {'camis': '40729296',
  'dba': "DINO'S PIZZERIA",
  'boro': 'Manhattan',
  'building': '3001',
  'street': 'BROADWAY',
  'zipcode': '10027',
  'phone': '7185454775',
  'cuisine_description': 'Pizza',
  'inspection_date': '2023-04-26T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '23',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.808931326599',
  'longitude': '-73.963229540123',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '020500',
  'bbl': '1',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.963229540123, 40.808931326599]}},
 {'camis': '50169005',
  'dba': 'TYPHOON CAFE',
  'boro': 'Manhattan',
  'building': '947',
  'street': 'COLUMBUS AVENUE',
  'zipcode': '10025',
  'phone': '9297614498',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-05-19T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10G',
  'violation_description': 'Dishwashing and ware washing: Cleaning and sanitizing of tableware, including dishes, utensils, and equipment deficient.',
  'critical_flag': 'Not Critical',
  'score': '61',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Non-operational) / Initial Inspection',
  'latitude': '40.79953860877',
  'longitude': '-73.962631565724',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055645',
  'bbl': '1018420004',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962631565724, 40.79953860877]}},
 {'camis': '50120274',
  'dba': 'SUPER NICE COFFEE AND BAKERY',
  'boro': 'Manhattan',
  'building': '196',
  'street': 'WEST  108 STREET',
  'zipcode': '10025',
  'phone': '3322578886',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2025-01-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '18',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.801660923586',
  'longitude': '-73.964602515389',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019300',
  'bin': '1055992',
  'bbl': '1018620061',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964602515389, 40.801660923586]}},
 {'camis': '50093719',
  'dba': 'WU & NUSSBAUM',
  'boro': 'Manhattan',
  'building': '2897',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2122220040',
  'cuisine_description': 'Fusion',
  'inspection_date': '2026-02-03T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '05D',
  'violation_description': 'No hand washing facility in or adjacent to toilet room or within 25 feet of a food preparation, food service or ware washing area. Hand washing facility not accessible, obstructed or used for non-hand washing purposes. No hot and cold running water or water at inadequate pressure. No soap or acceptable hand-drying device.',
  'critical_flag': 'Critical',
  'score': '31',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.80598688351',
  'longitude': '-73.965384058565',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057337',
  'bbl': '1018950023',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.965384058565, 40.80598688351]}},
 {'camis': '40388419',
  'dba': 'FAMOUS FAMIGLIA PIZZERIA',
  'boro': 'Manhattan',
  'building': '2859',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '2128651234',
  'cuisine_description': 'Pizza',
  'inspection_date': '2025-12-04T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '09E',
  'violation_description': 'Wash hands sign not posted near or above hand washing sink.',
  'critical_flag': 'Not Critical',
  'score': '12',
  'grade': 'A',
  'grade_date': '2025-12-04T00:00:00.000',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Initial Inspection',
  'latitude': '40.804776710519',
  'longitude': '-73.966258832618',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1075440',
  'bbl': '1018947501',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966258832618, 40.804776710519]}},
 {'camis': '50169060',
  'dba': 'NIKO COFFEE + MORE',
  'boro': 'Manhattan',
  'building': '1090',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126663744',
  'cuisine_description': 'Sandwiches/Salads/Mixed Buffet',
  'inspection_date': '2025-06-11T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10F',
  'violation_description': 'Non-food contact surface or equipment made of unacceptable material, not kept clean, or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.',
  'critical_flag': 'Not Critical',
  'score': '22',
  'grade': 'N',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805220105453',
  'longitude': '-73.962231023705',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057032',
  'bbl': '1018850036',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.962231023705, 40.805220105453]}},
 {'camis': '41077631',
  'dba': 'ROTI ROLL / SUITE',
  'boro': 'Manhattan',
  'building': '992',
  'street': 'AMSTERDAM AVENUE',
  'zipcode': '10025',
  'phone': '2126661500',
  'cuisine_description': 'Indian',
  'inspection_date': '2023-02-07T00:00:00.000',
  'action': 'Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.',
  'violation_code': '04A',
  'violation_description': 'Food Protection Certificate (FPC) not held by manager or supervisor of food operations.',
  'critical_flag': 'Critical',
  'score': '48',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Cycle Inspection / Re-inspection',
  'latitude': '40.802459534265',
  'longitude': '-73.964244497906',
  'community_board': '107',
  'council_district': '07',
  'census_tract': '019500',
  'bin': '1056712',
  'bbl': '1018810029',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.964244497906, 40.802459534265]}},
 {'camis': '50158694',
  'dba': 'QAHWAH HOUSE',
  'boro': 'Manhattan',
  'building': '2869',
  'street': 'BROADWAY',
  'zipcode': '10025',
  'phone': '6463441274',
  'cuisine_description': 'Coffee/Tea',
  'inspection_date': '2024-10-10T00:00:00.000',
  'action': 'Violations were cited in the following area(s).',
  'violation_code': '10B',
  'violation_description': 'Anti-siphonage or back-flow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly. Condensation or liquid waste improperly disposed of.',
  'critical_flag': 'Not Critical',
  'score': '40',
  'record_date': '2026-06-02T06:00:15.000',
  'inspection_type': 'Pre-permit (Operational) / Initial Inspection',
  'latitude': '40.805114242977',
  'longitude': '-73.966016645031',
  'community_board': '109',
  'council_district': '07',
  'census_tract': '019900',
  'bin': '1057329',
  'bbl': '1018940050',
  'nta': 'MN09',
  'location': {'type': 'Point',
   'coordinates': [-73.966016645031, 40.805114242977]}},
 ...]

For these to be useful to us, let’s cast the array as a geodataframe:

mh_restaurants = gpd.GeoDataFrame(
    mh_restaurants,
    geometry=gpd.points_from_xy(
        [float(x["longitude"]) for x in mh_restaurants],
        [float(x["latitude"]) for x in mh_restaurants],
    ),
)
mh_restaurants.fillna("na", inplace=True)
camis dba boro building street zipcode phone inspection_date critical_flag record_date ... location cuisine_description action violation_code violation_description score inspection_type grade grade_date geometry
0 50177020 CALIAM CU LLC Manhattan 1187 AMSTERDAM AVENUE 10027 9172850298 1900-01-01T00:00:00.000 Not Applicable 2026-06-02T06:00:22.000 ... {'type': 'Point', 'coordinates': [-73.95992094... na na na na na na na na POINT (-73.95992 40.80835)
1 50180212 NAISNOW Manhattan 971 AMSTERDAM AVENUE 10025 3322596720 1900-01-01T00:00:00.000 Not Applicable 2026-06-02T06:00:22.000 ... {'type': 'Point', 'coordinates': [-73.96496021... na na na na na na na na POINT (-73.96496 40.80144)
2 50089980 THE CALAVERAS Manhattan 949 COLUMBUS AVENUE 10025 6464846533 2025-07-15T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96259180... Mexican Violations were cited in the following area(s). 06D Food contact surface not properly washed, rins... 22 Cycle Inspection / Initial Inspection na na POINT (-73.96259 40.79959)
3 50159692 ZAAD Manhattan 963 AMSTERDAM AVENUE 10025 3478815576 2025-04-21T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96510118... Mediterranean Violations were cited in the following area(s). 04M Live roaches in facility's food or non-food area. 36 Pre-permit (Operational) / Initial Inspection na na POINT (-73.9651 40.80124)
4 41255436 EL PORTON Manhattan 3151 BROADWAY 10027 2126657338 2024-06-05T00:00:00.000 Not Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.95929957... Mexican Violations were cited in the following area(s). 10F Non-food contact surface or equipment made of ... 25 Cycle Inspection / Initial Inspection na na POINT (-73.9593 40.81432)
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1906 50085359 HIMALAYAN CURRY HOUSE Manhattan 254 WEST  108 STREET 10025 2127497800 2024-11-21T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96698231... Indian Establishment Closed by DOHMH. Violations were... 06C Food, supplies, or equipment not protected fro... 59 Cycle Inspection / Re-inspection na na POINT (-73.96698 40.80266)
1907 50120274 SUPER NICE COFFEE AND BAKERY Manhattan 196 WEST  108 STREET 10025 3322578886 2025-10-09T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96460251... Coffee/Tea Violations were cited in the following area(s). 04N Filth flies or food/refuse/sewage associated w... 48 Cycle Inspection / Re-inspection C 2025-10-09T00:00:00.000 POINT (-73.9646 40.80166)
1908 50062844 JUNZI KITCHEN Manhattan 2896 BROADWAY 10025 9172612497 2022-06-16T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96537323... Chinese Establishment Closed by DOHMH. Violations were... 04A Food Protection Certificate not held by superv... 0 Cycle Inspection / Initial Inspection na na POINT (-73.96537 40.80597)
1909 50109228 HEX AND COMPANY Manhattan 2911 BROADWAY 10025 2124391008 2024-07-23T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96504788... American Violations were cited in the following area(s). 04N Filth flies or food/refuse/sewage associated w... 10 Cycle Inspection / Initial Inspection A 2024-07-23T00:00:00.000 POINT (-73.96505 40.80645)
1910 50085359 HIMALAYAN CURRY HOUSE Manhattan 254 WEST  108 STREET 10025 2127497800 2022-07-06T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... {'type': 'Point', 'coordinates': [-73.96698231... Indian Establishment Closed by DOHMH. Violations were... 04M Live roaches in facility's food or non-food area. 0 Cycle Inspection / Initial Inspection na na POINT (-73.96698 40.80266)

1911 rows × 28 columns

Now we can see that we have a dataframe with a number of columns, including a geometry column, that we can use to perform calculations on.

mh_restaurants.columns
Index(['camis', 'dba', 'boro', 'building', 'street', 'zipcode', 'phone',
       'inspection_date', 'critical_flag', 'record_date', 'latitude',
       'longitude', 'community_board', 'council_district', 'census_tract',
       'bin', 'bbl', 'nta', 'location', 'cuisine_description', 'action',
       'violation_code', 'violation_description', 'score', 'inspection_type',
       'grade', 'grade_date', 'geometry'],
      dtype='str')

We can also drop duplicate records (based on the camis unique restaurant id):

mh_restaurants.drop_duplicates(subset="camis", inplace=True)

Let’s inspect the restaurant grades:

mh_restaurants.grade.value_counts()
grade
na    87
A     85
N     10
C      5
Z      5
B      5
Name: count, dtype: int64

Additionally, let’s check out the type of food served at each restaurant:

mh_restaurants.cuisine_description.value_counts()
cuisine_description
American                          26
na                                25
Coffee/Tea                        24
Chinese                           16
Pizza                             11
Japanese                           9
Mexican                            8
Italian                            8
Hamburgers                         5
Ethiopian                          4
French                             4
Asian/Asian Fusion                 4
Mediterranean                      3
Middle Eastern                     3
Indian                             3
Other                              3
Chicken                            3
Juice, Smoothies, Fruit Salads     3
Sandwiches/Salads/Mixed Buffet     3
Frozen Desserts                    3
Fusion                             3
Latin American                     2
Donuts                             2
Bakery Products/Desserts           2
Sandwiches                         2
Hawaiian                           2
Salads                             2
Pakistani                          1
Soul Food                          1
Steakhouse                         1
Bagels/Pretzels                    1
Seafood                            1
Vegan                              1
Eastern European                   1
Jewish/Kosher                      1
Caribbean                          1
Greek                              1
African                            1
Soups/Salads/Sandwiches            1
Tex-Mex                            1
Thai                               1
Name: count, dtype: int64

Now that we have a geodataframe of restaurants, let’s create a network based on the street grid of the neighborhood. To do so, we’ll use the total geographic bounds of our restaurants dataframe to request a network from the OSMnx module. OSMnx is built on top of the Networkx library, and makes it easy for users to access information from OpenStreetMap for use in network analysis.

mh_bbox = mh_restaurants.total_bounds
mh_bbox
array([-73.96804436,  40.79882472, -73.95276332,  40.81596727])

Like the name implies, we can build a network graph from the bbox above using the graph_from_bbox() function. We can specify that we are interested in a walk type network (i.e. pedestrian paths and sidewalks) using the network_type parameter (vs driving or all for example).

Note too that the order of coordinates returned from the total_bounds property does not match the order that OSMnx expects it, so we have to reorder them via the bbox parameter.

import osmnx as ox
mh_bbox
array([-73.96804436,  40.79882472, -73.95276332,  40.81596727])
mh_restaurants.loc[0].geometry.centroid

point_network = ox.graph_from_address(
    "2960 Broadway, New York, NY 10027",
    dist=1000,
    network_type="walk",
)

We can confirm that the result is a networkx multidirectional (MultiDiGraph) graph object:

point_network
<networkx.classes.multidigraph.MultiDiGraph at 0xMEM>

…and we can extract the nodes and edges of that network out as geodataframes:

mh_net_nodes, mh_net_edges = ox.graph_to_gdfs(point_network)

By inspecting the results, we can see that each row is a street network segment with a number of properties, all derived from OSM data.

mh_net_edges.head()
osmid highway name oneway reversed length geometry lanes maxspeed width bridge access junction tunnel service
u v key
42427519 10171865605 0 386103993 residential Saint Nicholas Terrace False True 6.918540 LINESTRING (-73.95223 40.81232, -73.95219 40.8... NaN NaN NaN NaN NaN NaN NaN NaN
10171069507 0 664893486 residential West 127th Street False False 78.050448 LINESTRING (-73.95223 40.81232, -73.95304 40.8... NaN NaN NaN NaN NaN NaN NaN NaN
10171865582 0 664893486 residential West 127th Street False True 57.020183 LINESTRING (-73.95223 40.81232, -73.95163 40.8... NaN NaN NaN NaN NaN NaN NaN NaN
42427523 7594173331 0 386103993 residential Saint Nicholas Terrace False False 8.574510 LINESTRING (-73.95177 40.81294, -73.95182 40.8... NaN NaN NaN NaN NaN NaN NaN NaN
10171508887 0 386103994 residential West 128th Street False True 7.943748 LINESTRING (-73.95177 40.81294, -73.95185 40.8... NaN NaN NaN NaN NaN NaN NaN NaN

We can take a look at the distribution of restaurants relative to our network by plotting both:

ax = mh_restaurants.plot()
mh_net_edges.plot(ax=ax, color="black", linewidth=0.1)
<Axes: >

Output

Let’s take a look at the output- we can see a network of nodes and edges that represent the Morningside Heights area. Note that unlike our toy example above, network edges here can have corners and curves and are not just individual line segments.

ax = mh_net_edges.plot(color="black", linewidth=0.1, figsize=(10, 10))
mh_net_nodes.plot(ax=ax, color="orange", markersize=1).set_axis_off()

Output

Great - now that we have a network and locations to traverse, let’s use a starting point based on where we are on campus:

fayerweather = Point(-73.9603477, 40.8082408)

Get directions to a random point

First we need to associate our starting point and target points to our networks. We begin by finding the nearest network nodes between an input coordinate and the network, for both our origin and a randomly selected restaurant.

orig = ox.distance.nearest_nodes(point_network, fayerweather.x, fayerweather.y)
sample = mh_restaurants.sample()
dest = ox.distance.nearest_nodes(point_network, sample.geometry.x, sample.geometry.y)[0]

The above functions return the indices of the nearest network nodes:

orig, dest
(2340960642, np.int64(10171340198))

Now that we have network positions, we can traverse the network to find the shortest path between each point. To do so, we’ll use the shortest_path() function, and specify our weight as the length between start and end points. There are a number of options for weight, including the number of segments that need to be traversed, or a custom input you specify.

OSMnx also has special helper functions to plot routes, which we’ll use to plot the network and path between points.

# find the shortest path between nodes, minimizing travel time, then plot it
route = ox.shortest_path(point_network, orig, dest, weight="length")
fig, ax = ox.plot_graph_route(point_network, route, node_size=10)

Output

If we inspect the route on its own, we’ll see an array of node ids that are ordered based on the shortest path that is generated.

route
[2340960642,
 2340960647,
 2340960652,
 2340960633,
 2340960637,
 2340960632,
 2340960619,
 2340960621,
 2340960628,
 3907629293,
 2308955266,
 3907629295,
 3347295526,
 3347295525,
 3347295529,
 2308955248,
 3907629308,
 6831699331,
 3907629302,
 627905386,
 6893757171,
 4401269635,
 627905371,
 627905380,
 np.int64(10171340198)]

That’s not super useful to us- thankfully OSMnx makes it easy to convert the route to a geodataframe for use elsewhere. We can also use some basic math to convert the path from meters to miles to put things in perspective.

edge_lengths = ox.routing.route_to_gdf(point_network, route)["length"]

# convert meters to miles
sum(edge_lengths) / 1609.34
0.3005183767436072

Find nearest restaurants of a given cuisine

Great, now let’s hone in on a specific use case: finding the n nearest restaurants of a given cuisine type based on network distances. For this example I’ll search for Pizza but you can explore using any cuisine_description value you like.

mh_pizza = mh_restaurants[mh_restaurants.cuisine_description == "Pizza"]
mh_pizza.plot()
<Axes: >

Output

Let’s assume we are hungry and want to find the five closest pizza restaurants based on network distance. We can use the following function to do so:

  • dest = ox.distance.nearest_nodes(mh_network, row.geometry.x, row.geometry.y): finds the nearest node for each input row (in this case, each pizza restaurant)
  • route = ox.shortest_path(mh_network, origin, dest, weight="length"): finds the shortest path between each restaurant and our input point
  • edge_lengths = ox.routing.route_to_gdf(mh_network, route)["length"]: finds the total length of the route in meters
  • route_geom...: finds and creates a unioned (combined) geometry of the route
  • return {"distance": sum(edge_lengths) / 1609.34, "route_geom": route_geom} returns a dictionary of distance (in miles) and the route geometry
def distance_from_point(row, origin):
    """
    Returns the distance in miles and the geometry of the shortest path between a point and a destination.

    Parameters:
    row (pd.Series): A row from a pandas DataFrame.
    origin (int): The origin node in the network.
    """

    dest = ox.distance.nearest_nodes(point_network, row.geometry.x, row.geometry.y)
    route = ox.shortest_path(point_network, origin, dest, weight="length")
    edge_lengths = ox.routing.route_to_gdf(point_network, route)["length"]

    route_geom = ox.routing.route_to_gdf(point_network, route)
    route_geom = route_geom.geometry.union_all()

    return {"distance": sum(edge_lengths) / 1609.34, "route_geom": route_geom}
mh_pizza.loc[:, "distance_from_class"] = mh_pizza.apply(
    distance_from_point, origin=orig, axis=1
)

If we observe our results, we can see that each row (e.g. each pizza restaurant) has a dictionary of distance in miles and the shortest path. Pretty neat, but not super ergonomic in its current form.

mh_pizza["distance_from_class"]
16     {'distance': 0.737360864584227, 'route_geom': ...
26     {'distance': 0.6725117788728001, 'route_geom':...
32     {'distance': 0.6304932279128582, 'route_geom':...
35     {'distance': 0.7230109502698245, 'route_geom':...
84     {'distance': 0.8089163850325216, 'route_geom':...
121    {'distance': 0.5014115713906613, 'route_geom':...
125    {'distance': 0.45251606613383377, 'route_geom'...
167    {'distance': 0.5775156296139777, 'route_geom':...
253    {'distance': 0.5014115713906613, 'route_geom':...
360    {'distance': 0.737360864584227, 'route_geom': ...
583    {'distance': 0.1801472190913523, 'route_geom':...
Name: distance_from_class, dtype: object

We can explode each dictionary key:value pair into a separate column using the below operation. We are combining three different steps in the below cell to achieve this:

  • converting the entries in the distance_from_class attribute into a pd.Series- this is what does the separating into separate columns
  • dropping the distance_from_class field, as we no longer need it
  • using the concat(...) function to concatenate the results of the other two operations; this allows us to combine things back together into our one dataframe
# explode the dictionary into separate columns
mh_pizza = pd.concat(
    [
        mh_pizza.drop(["distance_from_class"], axis=1),
        mh_pizza["distance_from_class"].apply(pd.Series),
    ],
    axis=1,
)

Now we can see we have each of the dictionary entries as new columns, and now we can operate over both in our dataframe.

mh_pizza.head()
camis dba boro building street zipcode phone inspection_date critical_flag record_date ... action violation_code violation_description score inspection_type grade grade_date geometry distance route_geom
16 50131886 iPizza NY Manhattan 351 WEST  125 STREET 10027 9172658973 2023-04-06T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... Establishment Closed by DOHMH. Violations were... 04M Live roaches in facility's food or non-food area. 33 Pre-permit (Operational) / Initial Inspection na na POINT (-73.9528 40.81086) 0.737361 MULTILINESTRING ((-73.9602888 40.8082467, -73....
26 50046844 DOMINO'S Manhattan 965 AMSTERDAM AVENUE 10025 2122222000 2025-02-03T00:00:00.000 Not Critical 2026-06-02T06:00:15.000 ... Violations were cited in the following area(s). 10F Non-food contact surface or equipment made of ... 3 Cycle Inspection / Initial Inspection A 2025-02-03T00:00:00.000 POINT (-73.96507 40.80129) 0.672512 MULTILINESTRING ((-73.9602888 40.8082467, -73....
32 40605511 DOMINO'S Manhattan 409 WEST  125 STREET 10027 2122803200 2024-02-26T00:00:00.000 Critical 2026-06-02T06:00:15.000 ... Violations were cited in the following area(s). 06B Tobacco or electronic cigarette use, eating, o... 45 Cycle Inspection / Initial Inspection na na POINT (-73.95451 40.81159) 0.630493 MULTILINESTRING ((-73.9602888 40.8082467, -73....
35 41012973 MAMA'S PIZZERIA Manhattan 941 AMSTERDAM AVENUE 10025 2125319797 2022-02-10T00:00:00.000 Not Critical 2026-06-02T06:00:15.000 ... Violations were cited in the following area(s). 20F Current letter grade sign not posted. na Administrative Miscellaneous / Initial Inspection na na POINT (-73.96561 40.80055) 0.723011 MULTILINESTRING ((-73.9602888 40.8082467, -73....
84 50134260 PIZZA HUT Manhattan 940 COLUMBUS AVENUE 10025 4692840850 2024-04-04T00:00:00.000 Not Critical 2026-06-02T06:00:15.000 ... Violations were cited in the following area(s). 10F Non-food contact surface or equipment made of ... 12 Pre-permit (Operational) / Initial Inspection A 2024-04-04T00:00:00.000 POINT (-73.96277 40.79939) 0.808916 MULTILINESTRING ((-73.9602888 40.8082467, -73....

5 rows × 30 columns

Now let’s cast our results to a new geodataframe with the geometry set as the routes calculated above.

mh_pizza_routes = gpd.GeoDataFrame(mh_pizza, geometry="route_geom", crs="EPSG:4326")

Now we can plot each pizza restaurant, the shortest path between here and there, and can symbolize based on the distance in miles:

ax = gpd.GeoSeries(fayerweather).plot(color="black")
mh_net_edges.plot(ax=ax, color="black", linewidth=0.1)
mh_pizza_routes.plot(column="distance", cmap="magma", ax=ax, linewidth=3)
mh_pizza.plot(column="distance", cmap="magma", legend=True, ax=ax)


# label each restaurant point
for x, y, label in zip(mh_pizza.geometry.x, mh_pizza.geometry.y, mh_pizza.dba):
    ax.text(x, y, label, fontsize=6)

# label the fayerweather point
ax.text(fayerweather.x, fayerweather.y, "Fayerweather", fontsize=6)

# title
plt.title("Distance from Fayerweather to \n Morningside Heights Pizza Restaurants")
Text(0.5, 1.0, 'Distance from Fayerweather to \n Morningside Heights Pizza Restaurants')

Output

Great- we can now visualize and intuit the closest pizza places. If we want to look at the actual numbers, we can sort by distance and observe. Note that the top two entries are tied, which suggest that both were snapped to the same network node (which is a consideration to keep in mind when we rely on third-party datasets like OSM)

mh_pizza[["dba", "distance"]].sort_values("distance")
dba distance
583 DINO'S PIZZERIA 0.180147
125 UPSIDE PIZZA 0.452516
121 KORONET PIZZA 0.501412
253 FAMOUS FAMIGLIA PIZZERIA 0.501412
167 TRUFA PIZZERIA 0.577516
32 DOMINO'S 0.630493
26 DOMINO'S 0.672512
35 MAMA'S PIZZERIA 0.723011
16 iPizza NY 0.737361
360 IPIZZA NY 0.737361
84 PIZZA HUT 0.808916

Use grid cells to build and traverse a network

So far, we’ve been able to create networks from a random distribution of points, as well as from the street network of a real-world location. For our final example, let’s explore how we can use a grid of cells to create a network and traverse it. More specifically, we’ll create a grid of hexagons, and then connect each hexagon to its nearest neighbors using the h3 library. H3 was developed by Uber and represents a hierarchical spatial index that uses hexagonal grid cells to partition space. Hexagons are useful for this purpose because they have a number of desirable properties, including uniform adjacency (each hexagon has six neighbors), reduced distortion compared to square grids, and efficient coverage of large areas.

# use H3 grid to create a hexagon around the restaurants
# count the number of restaurants in each hexagon
# use pysal to get adjacency between hexagons
# build new network with hexagons as nodes and their adjacency as edges
# use networkx to find the shortest path between hexagons

# get the H3 hexagons
mh_net_nodes

74 - 76, 88 - 98
(-2, -10)

Here we are querying the H3 dataset at resolution 9 for each node in our network. You can read more about H3 resolutions here. This will return a unique hexagon id for each point in our network. We will deduplicate these momentarily and create a new dataframe of hexagons.

mh_net_nodes
y x street_count highway railway geometry
osmid
42427519 40.812318 -73.952226 3 NaN NaN POINT (-73.95223 40.81232)
42427523 40.812940 -73.951770 4 NaN NaN POINT (-73.95177 40.81294)
42427531 40.813567 -73.951322 3 NaN NaN POINT (-73.95132 40.81357)
42428858 40.815160 -73.958837 3 traffic_signals NaN POINT (-73.95884 40.81516)
42428863 40.815810 -73.958391 5 traffic_signals NaN POINT (-73.95839 40.81581)
... ... ... ... ... ... ...
13435248279 40.804371 -73.963008 1 NaN NaN POINT (-73.96301 40.80437)
13435248280 40.804380 -73.963044 1 NaN NaN POINT (-73.96304 40.80438)
13684300884 40.805950 -73.965146 4 NaN NaN POINT (-73.96515 40.80595)
13684300887 40.805513 -73.962174 4 NaN NaN POINT (-73.96217 40.80551)
13684300888 40.804879 -73.962641 4 NaN NaN POINT (-73.96264 40.80488)

1781 rows × 6 columns

import h3
h3.__version__
'4.4.2'
mh_net_nodes["h3"] = mh_net_nodes.apply(
    lambda x: h3.latlng_to_cell(x.geometry.centroid.y, x.geometry.centroid.x, 9), axis=1
)
mh_net_nodes["h3"]
osmid
42427519       892a1008cafffff
42427523       892a1008cafffff
42427531       892a1008ca3ffff
42428858       892a1008c07ffff
42428863       892a1008c07ffff
                    ...       
13435248279    892a1008897ffff
13435248280    892a1008897ffff
13684300884    892a1008893ffff
13684300887    892a1008c2fffff
13684300888    892a1008897ffff
Name: h3, Length: 1781, dtype: str

We can use the h3_to_geo_boundary() function to get the polygon geometry of each hexagon, and then populate a new field based on that geometry.

# create hexagons for AOI
mh_net_nodes["geometry"] = mh_net_nodes["h3"].apply(lambda x: (h3.cell_to_boundary(x)))
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/1290308739.py:2: UserWarning: Geometry column does not contain geometry.
  mh_net_nodes["geometry"] = mh_net_nodes["h3"].apply(lambda x: (h3.cell_to_boundary(x)))
mh_net_nodes["geometry"]
osmid
42427519       ((40.81343035161198, -73.95178670981554), (40....
42427523       ((40.81343035161198, -73.95178670981554), (40....
42427531       ((40.81613066835212, -73.94974748650885), (40....
42428858       ((40.815901870308586, -73.95831132341029), (40...
42428863       ((40.815901870308586, -73.95831132341029), (40...
                                     ...                        
13435248279    ((40.805215081365645, -73.96218393550407), (40...
13435248280    ((40.805215081365645, -73.96218393550407), (40...
13684300884    ((40.80780061538988, -73.96442683242795), (40....
13684300887    ((40.807915322049816, -73.96014565064746), (40...
13684300888    ((40.805215081365645, -73.96218393550407), (40...
Name: geometry, Length: 1781, dtype: object

Unfortunately H3 returns the polygon vertices in the opposite order that shapely expects them, so we have to reverse the order of the coordinates. We can do so using a list comprehension. While we’re at it, we can also cast the coordinates as a Polygon geometry.

# flip order of coordinates for each tuple
mh_net_nodes["geometry"] = mh_net_nodes["geometry"].apply(
    lambda x: Polygon([(y, x) for x, y in x])
)

We can assign the geometry a crs now that we know it is in lat/lon

mh_net_nodes.crs = "EPSG:4326"
mh_net_nodes.crs
<Geographic 2D CRS: EPSG:4326>
Name: WGS 84
Axis Info [ellipsoidal]:
- Lat[north]: Geodetic latitude (degree)
- Lon[east]: Geodetic longitude (degree)
Area of Use:
- name: World.
- bounds: (-180.0, -90.0, 180.0, 90.0)
Datum: World Geodetic System 1984 ensemble
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich

Finally, we’ll create a new, deduplicated dataframe of hexagons.

h3_lvl_9_cells = mh_net_nodes.dissolve(by="h3").copy().reset_index()
h3_lvl_9_cells.boundary.plot()
<Axes: >

Output

Great, now let’s overlay the hex grid on top of our road network to get a sense of scale and how this new network compares.

ax = h3_lvl_9_cells.boundary.plot(color="black", figsize=(10, 10))
mh_net_edges.plot(
    ax=ax,
    color="black",
    linewidth=0.1,
)
<Axes: >

Output

As we can see, the hexagons are fairly small, reasonably appropriate for the scale of our analysis (i.e. traversing city blocks). Next, we will create a network by connecting each hexagon to its six nearest neighbors. While h3 has some native functions to calculate grid adjacency, we will use the more general purpose library libpysal to do so. libpysal is a spatial analysis library that has a number of useful functions, including the ability to calculate spatial weights and relationships between geometries.

We will caalculate a spatial weights matrix using the Queen contiguity method, which considers two polygons to be neighbors if they share a common edge or vertex. This is appropriate for our hexagonal grid, as each hexagon has six neighbors that share edges.

import libpysal as lps
# create an adjacency matrix for the hexagons
w = lps.weights.Queen.from_dataframe(h3_lvl_9_cells)
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/471419787.py:2: FutureWarning: `use_index` defaults to False but will default to True in future. Set True/False directly to control this behavior and silence this warning
  w = lps.weights.Queen.from_dataframe(h3_lvl_9_cells)
w.neighbors.items()
dict_items([(0, [1, 11, 4, 5]), (1, [0, 10, 5]), (2, [3, 4, 5, 6, 7, 8]), (3, [2, 5, 7, 9, 10, 31]), (4, [0, 2, 5, 8, 11]), (5, [0, 1, 2, 3, 4, 10]), (6, [2, 18, 19, 23, 7, 8]), (7, [2, 3, 35, 19, 6, 31]), (8, [2, 4, 6, 23]), (9, [32, 10, 3, 31]), (10, [1, 3, 5, 9]), (11, [0, 4]), (12, [13, 14, 15]), (13, [20, 22, 26, 12, 14, 15]), (14, [24, 12, 13, 22]), (15, [26, 13, 12, 28]), (16, [17, 18, 19, 20, 21, 22]), (17, [16, 33, 35, 36, 19, 21]), (18, [16, 19, 23, 6, 22, 24]), (19, [16, 17, 18, 35, 6, 7]), (20, [16, 21, 22, 26, 27, 13]), (21, [16, 17, 36, 20, 38, 27]), (22, [16, 18, 20, 24, 13, 14]), (23, [8, 24, 18, 6]), (24, [18, 14, 22, 23]), (25, [26, 27, 28]), (26, [20, 25, 27, 28, 13, 15]), (27, [20, 21, 38, 25, 26]), (28, [25, 26, 15]), (29, [32, 33, 34, 35, 30, 31]), (30, [32, 34, 29]), (31, [32, 35, 3, 7, 9, 29]), (32, [9, 29, 30, 31]), (33, [17, 34, 35, 36, 37, 29]), (34, [33, 29, 37, 30]), (35, [33, 17, 19, 7, 29, 31]), (36, [17, 33, 21, 38, 37]), (37, [33, 34, 36]), (38, [27, 36, 21])])

Just like with the n-nearest neighbors example above, we can use the spatial weights matrix to create a list of neighboring hexagons for each row in our dataframe. We can use dictionary comprehension to create a mapping of each hexagon’s index to its list of neighbors, and then create a graph network from that mapping using networkx.

# get neighbors for each hexagon
neighbors = {k: v for k, v in w.neighbors.items()}
neighbors
{0: [1, 11, 4, 5],
 1: [0, 10, 5],
 2: [3, 4, 5, 6, 7, 8],
 3: [2, 5, 7, 9, 10, 31],
 4: [0, 2, 5, 8, 11],
 5: [0, 1, 2, 3, 4, 10],
 6: [2, 18, 19, 23, 7, 8],
 7: [2, 3, 35, 19, 6, 31],
 8: [2, 4, 6, 23],
 9: [32, 10, 3, 31],
 10: [1, 3, 5, 9],
 11: [0, 4],
 12: [13, 14, 15],
 13: [20, 22, 26, 12, 14, 15],
 14: [24, 12, 13, 22],
 15: [26, 13, 12, 28],
 16: [17, 18, 19, 20, 21, 22],
 17: [16, 33, 35, 36, 19, 21],
 18: [16, 19, 23, 6, 22, 24],
 19: [16, 17, 18, 35, 6, 7],
 20: [16, 21, 22, 26, 27, 13],
 21: [16, 17, 36, 20, 38, 27],
 22: [16, 18, 20, 24, 13, 14],
 23: [8, 24, 18, 6],
 24: [18, 14, 22, 23],
 25: [26, 27, 28],
 26: [20, 25, 27, 28, 13, 15],
 27: [20, 21, 38, 25, 26],
 28: [25, 26, 15],
 29: [32, 33, 34, 35, 30, 31],
 30: [32, 34, 29],
 31: [32, 35, 3, 7, 9, 29],
 32: [9, 29, 30, 31],
 33: [17, 34, 35, 36, 37, 29],
 34: [33, 29, 37, 30],
 35: [33, 17, 19, 7, 29, 31],
 36: [17, 33, 21, 38, 37],
 37: [33, 34, 36],
 38: [27, 36, 21]}

Here we create a new graph G based on this adjacency matrix.

G = nx.Graph(neighbors)

Let’s take a look at the graph- each node ID is plotted on the centroid of each hexagon, and the edges represent the connections between each hexagon and its six neighbors. As before, we can ignore the geographic CRS warning for this example.

# plot the path
ax = h3_lvl_9_cells.plot()
h3_lvl_9_cells.boundary.plot(ax=ax, color="black")

# label cells with their index
for x, y, label in zip(
    h3_lvl_9_cells.geometry.centroid.x,
    h3_lvl_9_cells.geometry.centroid.y,
    neighbors.keys(),
):
    ax.text(x, y, label, fontsize=6)
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/2249710294.py:7: UserWarning: Geometry is in a geographic CRS. Results from 'centroid' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.

  h3_lvl_9_cells.geometry.centroid.x,
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/2249710294.py:8: UserWarning: Geometry is in a geographic CRS. Results from 'centroid' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.

  h3_lvl_9_cells.geometry.centroid.y,

Output

Now we can inspect the adjacency dictionary above and understand how the adjacency is structured. Each key is a hexagon index, and the value is a list of adjacent hexagon indices.

With this in mind, we can use networkx and the shortest_path() function to find the shortest path between two hexagons by passing the graph G and two hexagon indices. Here we are finding the shortest path between hexagon 8 and hexagon 29.

# get the path between two nodes
path = nx.shortest_path(G, 4, 25)

The path is returned as a list of hexagon indices that represent the shortest path between the two input hexagons.

path
[4, 2, 6, 18, 16, 20, 26, 25]

Finally, let’s visualize the path on top of the hexagon grid. We can use the iloc[...] function to look up the hexagons in path by their indices, and then plot the resulting geometries.

import osmnx
ox.__version__
'2.1.0'
import scipy
import numpy
numpy.__version__
'2.4.4'
# plot the path
ax = h3_lvl_9_cells.plot()
h3_lvl_9_cells.boundary.plot(ax=ax, color="black")
h3_lvl_9_cells.iloc[path].plot(ax=ax, color="red")

# label cells with their index
for x, y, label in zip(
    h3_lvl_9_cells.geometry.centroid.x,
    h3_lvl_9_cells.geometry.centroid.y,
    neighbors.keys(),
):
    ax.text(x, y, label, fontsize=6)
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/2962518818.py:8: UserWarning: Geometry is in a geographic CRS. Results from 'centroid' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.

  h3_lvl_9_cells.geometry.centroid.x,
/var/folders/g5/b592wl6x12s0tx4jfw9f7_j40000gn/T/ipykernel_27285/2962518818.py:9: UserWarning: Geometry is in a geographic CRS. Results from 'centroid' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.

  h3_lvl_9_cells.geometry.centroid.y,

Output

As we can see, the shortest path between hexagon 8 and hexagon 29 traverses through a number of intermediate hexagons, following the edges of the hexagonal grid. We can imagine cases where this type of grid-based network analysis could be useful.

One thing we didn’t explore as much here is the idea of cost or weight associated with traversing between nodes. In our street network example above, we used the length of each street segment as the weight for calculating the shortest path. We could just as easily assign other weights, such as travel time, elevation change, degree of sun exposure, etc. Think about the possibilities!