Lecture 5: APIs#
Please sign attendance sheet
APIs#
They are very powerful
Can be used from any programming language
Not expecting you to use them in your Final Project
APIs, conceptually#
interactions between systems ↔️
Ways to get data#
Method |
How it happens |
Pros |
Cons |
---|---|---|---|
Bulk |
Download, someone hands you a flash drive, etc. |
Fast, one-time transfer |
Can be large; data gets out of date easily |
APIs |
If organization makes one available |
Usually allows some filtering; can always pull latest-and-greatest |
Requires network connection for every call; higher barrier to entry (reading documentation); subject to availability and performance of API |
Scraping |
Data only available through a web site, PDF, or doc |
You can turn anything into data |
Tedious; fragile |
Scraping#
Common tools:
Please pray to the Demo Gods that these all work and there’s no profanity
Pull table from Wikipedia’s list of countries by area:
import pandas as pd
tables = pd.read_html(
"https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area",
match="Country / dependency",
)
countries = tables[0]
countries
Unnamed: 0 | Country / dependency | Total in km2 (mi2) | Land in km2 (mi2) | Water in km2 (mi2) | % water | Unnamed: 6 | |
---|---|---|---|---|---|---|---|
0 | – | Earth | 510,072,000 (196,940,000) | 148,940,000 (57,506,000) | 361,132,000 (139,434,000) | 70.8 | NaN |
1 | 1 | Russia | 17,098,246 (6,601,667) | 16,376,870 (6,323,142) | 721,380 (278,530) | 4.2 | [b] |
2 | – | Antarctica | 14,200,000 (5,480,000) | 14,200,000 (5,480,000) | 0 | 0.0 | [c] |
3 | 2 | Canada | 9,984,670 (3,855,100) | 9,093,507 (3,511,021) | 891,163 (344,080) | 8.9 | [d] |
4 | 3/4 [e] | China | 9,596,960 (3,705,410) | 9,326,410 (3,600,950) | 270,550 (104,460) | 2.8 | [f] |
... | ... | ... | ... | ... | ... | ... | ... |
259 | – | Ashmore and Cartier Islands (Australia) | 5.0 (1.9) | 5.0 (1.9) | 0 | 0.0 | [q] |
260 | – | Coral Sea Islands (Australia) | 3.0 (1.2) | 3.0 (1.2) | 0 | 0.0 | [db] |
261 | – | Spratly Islands (disputed) | 2.0 (0.77) | 2.0 (0.77) | 0 | 0.0 | [55] |
262 | 194 | Monaco | 2.0 (0.77) | 2.0 (0.77) | 0 | 0.0 | [dc] |
263 | 195 | Vatican City | 0.49 (0.19) | 0.49 (0.19) | 0 | 0.0 | [dd] |
264 rows × 7 columns
Data is only available if it’s available#
API calls in the wild#
Go to Candidates page on fec.gov.
Right click and
Inspect
.Go to the
Network
tab and reload.Filter to
XHR
.Click the API call.
We only see this because the tables on fec.gov are rendered client-side using their JSON API. That won’t be the case for all tables on all sites.
Parts of a URL#
For APIs:
Often split into “base URL” + “endpoint”
Endpoints are like function names: they represent the information you are retrieving or thing you are trying to do
Parameters are like function arguments:
They allow options to be specified
Some are required, some are optional
They will differ from one endpoint/function to another
Anchors won’t be used
API documentation#
Try it out#
Reload the page.
In the Network tab’s request list:
Filter to Fetch/XHR/AJAX (terminology will differ by browser)
Right-click the API call row.
Click
Open in New Tab
. You will see an error.In the URL bar, replace the
api_key
value withDEMO_KEY
. The URL should therefore containapi_key=DEMO_KEY
.
You should see a big wall of JSON data.
API calls from Python#
Usually one of two ways:
A software development kit (SDK) like sodapy
Abstracts the details away
Not available for all APIs
May have limitations
The
requests
package (nothing to do with 311 requests)
Get Jimmy McMillan’s latest candidacy information:
import requests
jimmy = {
"api_key": "DEMO_KEY",
"q": "Jimmy McMillan",
"sort": "-first_file_date",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=jimmy)
data = response.json()
data
{'api_version': '1.0',
'pagination': {'count': 2,
'is_count_exact': True,
'page': 1,
'pages': 1,
'per_page': 20},
'results': [{'active_through': 2016,
'candidate_id': 'P60016805',
'candidate_inactive': False,
'candidate_status': 'N',
'cycles': [2016, 2018],
'district': '00',
'district_number': 0,
'election_districts': ['00'],
'election_years': [2016],
'federal_funds_flag': False,
'first_file_date': '2015-10-13',
'has_raised_funds': False,
'inactive_election_years': None,
'incumbent_challenge': 'O',
'incumbent_challenge_full': 'Open seat',
'last_f2_date': '2015-10-13',
'last_file_date': '2015-10-13',
'load_date': '2018-02-17T09:16:20',
'name': 'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH',
'office': 'P',
'office_full': 'President',
'party': 'REP',
'party_full': 'REPUBLICAN PARTY',
'state': 'US'},
{'active_through': 2012,
'candidate_id': 'P60003290',
'candidate_inactive': False,
'candidate_status': 'N',
'cycles': [1996, 1998, 2012, 2020, 2022],
'district': '00',
'district_number': 0,
'election_districts': ['00', '00'],
'election_years': [1996, 2012],
'federal_funds_flag': False,
'first_file_date': '1995-03-08',
'has_raised_funds': False,
'inactive_election_years': None,
'incumbent_challenge': 'C',
'incumbent_challenge_full': 'Challenger',
'last_f2_date': '2011-02-07',
'last_file_date': '2011-02-07',
'load_date': '2021-12-08T06:50:50',
'name': 'MCMILLAN, JIMMY (AKA) JAMES ',
'office': 'P',
'office_full': 'President',
'party': 'REP',
'party_full': 'REPUBLICAN PARTY',
'state': 'US'}]}
Retrieving nested data#
data["results"][0]["name"]
'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH'
In-class exercise#
Let’s do this together.
Open a new notebook in JupyterHub, and geocode an address from Python using the Nominatim API. Print out the latitude and longitude. Any address is fine:
Your own
This building
etc.
Per their policies, we’ll need to specify a custom User Agent. Include the following in the call to requests.get()
:
headers={"user-agent": "Python in-class exercise"}
Hints
Try getting the API call working in your browser URL bar before calling it in Python.
You’ll need to specify the output format.
Reading into a DataFrame#
candidates_with_funds = {
"api_key": "DEMO_KEY",
"has_raised_funds": "true",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=candidates_with_funds)
data = response.json()
candidates = data["results"]
pd.DataFrame(candidates)
active_through | candidate_id | candidate_inactive | candidate_status | cycles | district | district_number | election_districts | election_years | federal_funds_flag | ... | incumbent_challenge_full | last_f2_date | last_file_date | load_date | name | office | office_full | party | party_full | state | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 2022 | H2CO07170 | False | P | [2022, 2024] | 07 | 7 | [07] | [2022] | False | ... | Open seat | 2022-08-10 | 2022-08-10 | 2023-03-09T10:16:03 | AADLAND, ERIK | H | House | REP | REPUBLICAN PARTY | CO |
1 | 2022 | H2UT03280 | False | C | [2022] | 03 | 3 | [03] | [2022] | False | ... | Challenger | 2022-03-21 | 2022-03-21 | 2022-04-13T21:10:09 | AALDERS, TIM | H | House | REP | REPUBLICAN PARTY | UT |
2 | 2018 | S2UT00229 | False | P | [2012, 2014, 2016, 2018, 2020] | 00 | 0 | [00, 00] | [2012, 2018] | False | ... | Open seat | 2018-04-23 | 2018-04-23 | 2019-03-27T16:02:41 | AALDERS, TIMOTHY NOEL | S | Senate | CON | CONSTITUTION PARTY | UT |
3 | 2020 | H0TX22260 | False | C | [2020] | 22 | 22 | [22] | [2020] | False | ... | Open seat | 2019-10-17 | 2019-10-17 | 2020-03-18T21:13:37 | AALOORI, BANGAR REDDY | H | House | REP | REPUBLICAN PARTY | TX |
4 | 1978 | H6PA16106 | False | P | [1976, 1978, 1980] | 16 | 16 | [16, 16] | [1976, 1978] | False | ... | None | 1978-07-05 | 1978-07-05 | 2002-03-30T00:00:00 | AAMODT, NORMAN O. | H | House | REP | REPUBLICAN PARTY | PA |
5 | 2012 | H2CA01110 | False | P | [2012, 2014, 2016] | 01 | 1 | [01] | [2012] | False | ... | Challenger | 2012-02-22 | 2012-02-22 | 2013-04-26T09:04:30 | AANESTAD, SAMUEL | H | House | REP | REPUBLICAN PARTY | CA |
6 | 2018 | H8CO06237 | False | C | [2018] | 06 | 6 | [06] | [2018] | False | ... | Challenger | 2017-04-26 | 2017-04-26 | 2017-08-01T20:57:28 | AARESTAD, DAVID | H | House | DEM | DEMOCRATIC PARTY | CO |
7 | 2008 | P80002926 | False | N | [2006, 2008, 2010, 2012, 2014, 2016] | 00 | 0 | [00] | [2008] | False | ... | Open seat | 2007-03-13 | 2007-03-13 | 2016-11-17T06:10:48 | AARON, LAURA DAVIS | P | President | DEM | DEMOCRATIC PARTY | US |
8 | 2024 | H4OR05312 | False | C | [2024, 2026] | 05 | 5 | [05] | [2024] | False | ... | Challenger | 2023-07-24 | 2023-07-24 | 2023-10-16T21:03:02 | AASEN, ANDREW J | H | House | NON | NON-PARTY | OR |
9 | 2024 | H2CA30291 | False | N | [2022, 2024] | 32 | 32 | [32, 32] | [2022, 2024] | False | ... | Challenger | 2022-07-15 | 2022-07-15 | 2023-01-12T22:24:01 | AAZAMI, SHERVIN | H | House | DEM | DEMOCRATIC PARTY | CA |
10 | 2022 | H2MN07162 | False | P | [2022, 2024] | 07 | 7 | [07] | [2022] | False | ... | Challenger | 2022-06-06 | 2022-06-06 | 2023-03-09T10:16:03 | ABAHSAIN, JILL | H | House | DFL | DEMOCRATIC-FARMER-LABOR | MN |
11 | 2000 | H0MA01024 | False | P | [2000, 2002, 2004] | 01 | 1 | [01] | [2000] | False | ... | Challenger | 2000-02-02 | 2000-02-02 | 2002-04-12T00:00:00 | ABAIR, PETER JON | H | House | REP | REPUBLICAN PARTY | MA |
12 | 2008 | H6NJ05155 | False | C | [2006, 2008] | 05 | 5 | [05, 05] | [2006, 2008] | False | ... | Challenger | 2007-06-05 | 2007-06-05 | 2009-04-29T00:00:00 | ABATE, CAMILLE M | H | House | DEM | DEMOCRATIC PARTY | NJ |
13 | 1992 | H2NJ12036 | False | P | [1992, 1994, 1996, 1998] | 12 | 12 | [12] | [1992] | False | ... | Challenger | 1992-04-15 | 1992-04-15 | 2002-04-03T00:00:00 | ABATE, FRANK G | H | House | DEM | DEMOCRATIC PARTY | NJ |
14 | 1990 | H0IA03071 | False | C | [1990] | 03 | 3 | [03] | [1990] | False | ... | Challenger | 1990-05-01 | 1990-05-01 | 2002-03-30T00:00:00 | ABBAS, JEFFREY LYN | H | House | REP | REPUBLICAN PARTY | IA |
15 | 2024 | H4CA32152 | False | N | [2024, 2026] | 32 | 32 | [32] | [2024] | False | ... | Challenger | 2024-02-07 | 2024-02-07 | 2024-02-08T21:02:32 | ABBITT, DAVE | H | House | DEM | DEMOCRATIC PARTY | CA |
16 | 1994 | H4TX15043 | False | C | [1994] | 15 | 15 | [15] | [1994] | False | ... | Challenger | 1994-01-14 | 1994-01-14 | 2002-03-30T00:00:00 | ABBOTT, BONNIE | H | House | REP | REPUBLICAN PARTY | TX |
17 | 1996 | H6SD00077 | False | P | [1996, 1998] | 01 | 1 | [00] | [1996] | False | ... | Challenger | 1995-10-02 | 1995-10-02 | 2002-04-03T00:00:00 | ABBOTT, JAMES W | H | House | DEM | DEMOCRATIC PARTY | SD |
18 | 1992 | P80002579 | False | P | [1988, 1990, 1992, 1994, 1996, 1998] | 00 | 0 | [00, 00] | [1988, 1992] | True | ... | Challenger | 1992-06-16 | 1992-06-16 | 2002-04-03T00:00:00 | ABBOTT, JOHN HANCOCK | P | President | DEM | DEMOCRATIC PARTY | US |
19 | 1988 | S6CA00345 | False | N | [1986, 1988] | 00 | 0 | [00, 00] | [1986, 1988] | False | ... | Challenger | 1988-08-29 | 1988-08-29 | 2005-05-26T00:00:00 | ABBOTT, JOHN HANCOCK | S | Senate | DEM | DEMOCRATIC PARTY | CA |
20 rows × 24 columns
Back to 311 data#
From NYC Open Data Portal dataset page, click Export
-> SODA API
-> API Docs
.
Most open data sites have APIs#
Often built on platforms that provide them, e.g.
Example: 311 requests from the last week#
The dates shown are from the last time the code was run.
from datetime import datetime, timedelta
now = datetime.utcnow()
now
datetime.datetime(2025, 1, 18, 15, 53, 8, 987786)
start = now - timedelta(weeks=1)
start
datetime.datetime(2025, 1, 11, 15, 53, 8, 987786)
start.isoformat()
'2025-01-11T15:53:08.987786'
Using the Socrata query language (SoQL):
data_id = "erm2-nwe9"
in_past_week = {
"$where": f"created_date > '{start.isoformat()}'",
}
url = f"https://data.cityofnewyork.us/resource/{data_id}.json"
response = requests.get(url, params=in_past_week)
data = response.json()
data
[{'unique_key': '63791236',
'created_date': '2025-01-17T02:33:39.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '11420',
'incident_address': '122 STREET',
'street_name': '122 STREET',
'cross_street_1': 'DEAD END',
'cross_street_2': 'SUTTER AVENUE',
'address_type': 'BLOCKFACE',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
'resolution_action_updated_date': '2025-01-17T02:33:39.000',
'community_board': '10 QUEENS',
'borough': 'QUEENS',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS'},
{'unique_key': '63783238',
'created_date': '2025-01-17T01:51:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11214',
'incident_address': '8655 BAY PARKWAY',
'street_name': 'BAY PARKWAY',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY PARKWAY',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063810017',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985669',
'y_coordinate_state_plane': '158199',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60089588178328',
'longitude': '-73.99489004069865',
'location': {'latitude': '40.60089588178328',
'longitude': '-73.99489004069865',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784484',
'created_date': '2025-01-17T01:48:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11435',
'incident_address': '148-48 88 AVENUE',
'street_name': '88 AVENUE',
'cross_street_1': '148 STREET',
'cross_street_2': '150 STREET',
'intersection_street_1': '148 STREET',
'intersection_street_2': '150 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '88 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:27:10.000',
'community_board': '12 QUEENS',
'bbl': '4096930029',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037564',
'y_coordinate_state_plane': '196280',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70525940726069',
'longitude': '-73.80771029332841',
'location': {'latitude': '40.70525940726069',
'longitude': '-73.80771029332841',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790290',
'created_date': '2025-01-17T01:48:05.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11104',
'incident_address': '47-21 39 PLACE',
'street_name': '39 PLACE',
'cross_street_1': '47 AVENUE',
'cross_street_2': '48 AVENUE',
'intersection_street_1': '47 AVENUE',
'intersection_street_2': '48 AVENUE',
'address_type': 'ADDRESS',
'city': 'SUNNYSIDE',
'landmark': '39 PLACE',
'status': 'In Progress',
'community_board': '02 QUEENS',
'bbl': '4001990018',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004843',
'y_coordinate_state_plane': '209386',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.741368840991846',
'longitude': '-73.92568621129136',
'location': {'latitude': '40.741368840991846',
'longitude': '-73.92568621129136',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785947',
'created_date': '2025-01-17T01:47:57.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11356',
'incident_address': '114-09 14 ROAD',
'street_name': '14 ROAD',
'cross_street_1': '114 STREET',
'cross_street_2': '115 STREET',
'intersection_street_1': '114 STREET',
'intersection_street_2': '115 STREET',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': '14 ROAD',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4040490035',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024954',
'y_coordinate_state_plane': '225176',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.784638567560215',
'longitude': '-73.85301630296134',
'location': {'latitude': '40.784638567560215',
'longitude': '-73.85301630296134',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787505',
'created_date': '2025-01-17T01:46:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1160 RIVER AVENUE',
'street_name': 'RIVER AVENUE',
'cross_street_1': 'MCCLELLAN STREET',
'cross_street_2': 'EAST 167 STREET',
'intersection_street_1': 'MCCLELLAN STREET',
'intersection_street_2': 'EAST 167 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'RIVER AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:36:25.000',
'community_board': '04 BRONX',
'bbl': '2024887501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005853',
'y_coordinate_state_plane': '243361',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'location': {'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789974',
'created_date': '2025-01-17T01:46:08.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Unsafe Worksite',
'location_type': 'Street',
'incident_zip': '10005',
'incident_address': '95 WALL STREET',
'street_name': 'WALL STREET',
'cross_street_1': 'GOUVERNEUR LANE',
'cross_street_2': 'WALL STREET',
'intersection_street_1': 'GOUVERNEUR LANE',
'intersection_street_2': 'WALL STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WALL STREET',
'status': 'In Progress',
'community_board': '01 MANHATTAN',
'bbl': '1000330011',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982174',
'y_coordinate_state_plane': '196102',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.704931209203224',
'longitude': '-74.00748754821632',
'location': {'latitude': '40.704931209203224',
'longitude': '-74.00748754821632',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787290',
'created_date': '2025-01-17T01:43:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10026',
'incident_address': '114 WEST 116 STREET',
'street_name': 'WEST 116 STREET',
'cross_street_1': 'LENOX AVENUE',
'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_1': 'LENOX AVENUE',
'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 116 STREET',
'status': 'In Progress',
'community_board': '10 MANHATTAN',
'bbl': '1018250041',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997935',
'y_coordinate_state_plane': '231612',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.802386781867945',
'longitude': '-73.95056978725694',
'location': {'latitude': '40.802386781867945',
'longitude': '-73.95056978725694',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784439',
'created_date': '2025-01-17T01:42:17.000',
'closed_date': '2025-01-17T01:48:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '90-02 143 STREET',
'street_name': '143 STREET',
'cross_street_1': '90 AVENUE',
'cross_street_2': '91 AVENUE',
'intersection_street_1': '90 AVENUE',
'intersection_street_2': '91 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '143 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:48:29.000',
'community_board': '12 QUEENS',
'bbl': '4099790006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036502',
'y_coordinate_state_plane': '194913',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.70151365702791',
'longitude': '-73.81155124550564',
'location': {'latitude': '40.70151365702791',
'longitude': '-73.81155124550564',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785761',
'created_date': '2025-01-17T01:41:00.000',
'closed_date': '2025-01-17T01:48:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Parking Permit Improper Use',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '90-10 143 STREET',
'street_name': '143 STREET',
'cross_street_1': '90 AVENUE',
'cross_street_2': '91 AVENUE',
'intersection_street_1': '90 AVENUE',
'intersection_street_2': '91 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '143 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:48:46.000',
'community_board': '12 QUEENS',
'bbl': '4099790011',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036511',
'y_coordinate_state_plane': '194888',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.701444984893506',
'longitude': '-73.81151898077803',
'location': {'latitude': '40.701444984893506',
'longitude': '-73.81151898077803',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788589',
'created_date': '2025-01-17T01:40:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10454',
'incident_address': '345 ST ANNS AVENUE',
'street_name': 'ST ANNS AVENUE',
'cross_street_1': 'EAST 141 STREET',
'cross_street_2': 'EAST 142 STREET',
'intersection_street_1': 'EAST 141 STREET',
'intersection_street_2': 'EAST 142 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'ST ANNS AVENUE',
'status': 'In Progress',
'community_board': '01 BRONX',
'bbl': '2022687501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007568',
'y_coordinate_state_plane': '234210',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8094974015487',
'longitude': '-73.91576638974254',
'location': {'latitude': '40.8094974015487',
'longitude': '-73.91576638974254',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787412',
'created_date': '2025-01-17T01:39:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1309 NELSON AVENUE',
'street_name': 'NELSON AVENUE',
'cross_street_1': 'WEST 169 STREET',
'cross_street_2': 'WEST 170 STREET',
'intersection_street_1': 'WEST 169 STREET',
'intersection_street_2': 'WEST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'NELSON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:36:52.000',
'community_board': '04 BRONX',
'bbl': '2025210072',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005349',
'y_coordinate_state_plane': '245346',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84006812381324',
'longitude': '-73.92374725163893',
'location': {'latitude': '40.84006812381324',
'longitude': '-73.92374725163893',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785839',
'created_date': '2025-01-17T01:39:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11236',
'incident_address': '1283 EAST 86 STREET',
'street_name': 'EAST 86 STREET',
'cross_street_1': 'AVENUE L',
'cross_street_2': 'AVENUE M',
'intersection_street_1': 'AVENUE L',
'intersection_street_2': 'AVENUE M',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 86 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:42:52.000',
'community_board': '18 BROOKLYN',
'bbl': '3080650006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1011434',
'y_coordinate_state_plane': '169632',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63223549975124',
'longitude': '-73.90206173717675',
'location': {'latitude': '40.63223549975124',
'longitude': '-73.90206173717675',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787293',
'created_date': '2025-01-17T01:39:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1160 RIVER AVENUE',
'street_name': 'RIVER AVENUE',
'cross_street_1': 'MCCLELLAN STREET',
'cross_street_2': 'EAST 167 STREET',
'intersection_street_1': 'MCCLELLAN STREET',
'intersection_street_2': 'EAST 167 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'RIVER AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2024887501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005853',
'y_coordinate_state_plane': '243361',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'location': {'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785948',
'created_date': '2025-01-17T01:39:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11219',
'incident_address': '6609 13 AVENUE',
'street_name': '13 AVENUE',
'cross_street_1': '66 STREET',
'cross_street_2': '67 STREET',
'intersection_street_1': '66 STREET',
'intersection_street_2': '67 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '13 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:20:17.000',
'community_board': '10 BROOKLYN',
'bbl': '3057610007',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983623',
'y_coordinate_state_plane': '167075',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62525876268732',
'longitude': '-74.00225871317754',
'location': {'latitude': '40.62525876268732',
'longitude': '-74.00225871317754',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784541',
'created_date': '2025-01-17T01:38:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1309 NELSON AVENUE',
'street_name': 'NELSON AVENUE',
'cross_street_1': 'WEST 169 STREET',
'cross_street_2': 'WEST 170 STREET',
'intersection_street_1': 'WEST 169 STREET',
'intersection_street_2': 'WEST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'NELSON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:36:41.000',
'community_board': '04 BRONX',
'bbl': '2025210072',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005349',
'y_coordinate_state_plane': '245346',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84006812381324',
'longitude': '-73.92374725163893',
'location': {'latitude': '40.84006812381324',
'longitude': '-73.92374725163893',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785832',
'created_date': '2025-01-17T01:38:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10033',
'incident_address': '612 WEST 178 STREET',
'street_name': 'WEST 178 STREET',
'cross_street_1': 'ST NICHOLAS AVENUE',
'cross_street_2': 'WADSWORTH AVENUE',
'intersection_street_1': 'ST NICHOLAS AVENUE',
'intersection_street_2': 'WADSWORTH AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 178 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:57:01.000',
'community_board': '12 MANHATTAN',
'bbl': '1021440033',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1002054',
'y_coordinate_state_plane': '248068',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.84754647226867',
'longitude': '-73.93564830036111',
'location': {'latitude': '40.84754647226867',
'longitude': '-73.93564830036111',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784564',
'created_date': '2025-01-17T01:38:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10458',
'incident_address': '2833 BRIGGS AVENUE',
'street_name': 'BRIGGS AVENUE',
'cross_street_1': 'EAST 197 STREET',
'cross_street_2': 'EAST 198 STREET',
'intersection_street_1': 'EAST 197 STREET',
'intersection_street_2': 'EAST 198 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BRIGGS AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:03:19.000',
'community_board': '07 BRONX',
'bbl': '2033010063',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014844',
'y_coordinate_state_plane': '255830',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86881576590002',
'longitude': '-73.88938407313414',
'location': {'latitude': '40.86881576590002',
'longitude': '-73.88938407313414',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788737',
'created_date': '2025-01-17T01:37:52.000',
'closed_date': '2025-01-17T01:40:19.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '90-17 143 STREET',
'street_name': '143 STREET',
'cross_street_1': '90 AVENUE',
'cross_street_2': '91 AVENUE',
'intersection_street_1': '90 AVENUE',
'intersection_street_2': '91 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '143 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:40:21.000',
'community_board': '12 QUEENS',
'bbl': '4099830042',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036524',
'y_coordinate_state_plane': '194872',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.70140099195641',
'longitude': '-73.81147222018643',
'location': {'latitude': '40.70140099195641',
'longitude': '-73.81147222018643',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781781',
'created_date': '2025-01-17T01:37:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10306',
'incident_address': '1718 RICHMOND ROAD',
'street_name': 'RICHMOND ROAD',
'cross_street_1': 'DONGAN HILLS AVENUE',
'cross_street_2': 'SEAVER AVENUE',
'intersection_street_1': 'DONGAN HILLS AVENUE',
'intersection_street_2': 'SEAVER AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'RICHMOND ROAD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:38:50.000',
'community_board': '02 STATEN ISLAND',
'bbl': '5035320500',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '955780',
'y_coordinate_state_plane': '153643',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.5883449707245',
'longitude': '-74.1025040396553',
'location': {'latitude': '40.5883449707245',
'longitude': '-74.1025040396553',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783146',
'created_date': '2025-01-17T01:35:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3985 GOUVERNEUR AVENUE',
'street_name': 'GOUVERNEUR AVENUE',
'cross_street_1': 'SEDGWICK AVENUE',
'cross_street_2': 'VAN CORTLANDT PARK SOUTH',
'intersection_street_1': 'SEDGWICK AVENUE',
'intersection_street_2': 'VAN CORTLANDT PARK SOUTH',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GOUVERNEUR AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:04:26.000',
'community_board': '08 BRONX',
'bbl': '2032520276',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014218',
'y_coordinate_state_plane': '261300',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88383136310492',
'longitude': '-73.89162297277858',
'location': {'latitude': '40.88383136310492',
'longitude': '-73.89162297277858',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789967',
'created_date': '2025-01-17T01:35:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '145-45 FERNDALE AVENUE',
'street_name': 'FERNDALE AVENUE',
'cross_street_1': 'INWOOD STREET',
'cross_street_2': 'LIVERPOOL STREET',
'intersection_street_1': 'INWOOD STREET',
'intersection_street_2': 'LIVERPOOL STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': 'FERNDALE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:26:57.000',
'community_board': '12 QUEENS',
'bbl': '4119400190',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039446',
'y_coordinate_state_plane': '190329',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Van',
'latitude': '40.6889137994313',
'longitude': '-73.80097120005594',
'location': {'latitude': '40.6889137994313',
'longitude': '-73.80097120005594',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785953',
'created_date': '2025-01-17T01:34:41.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Indoor Air Quality',
'descriptor': 'Chemical Vapors/Gases/Odors',
'location_type': '3+ Family Apartment Building',
'incident_zip': '11365',
'incident_address': '159-10 71 AVENUE',
'street_name': '71 AVENUE',
'cross_street_1': 'PARSONS BOULEVARD',
'cross_street_2': 'PARK AVENUE',
'intersection_street_1': 'PARSONS BOULEVARD',
'intersection_street_2': 'PARK AVENUE',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '71 AVENUE',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4067970054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037080',
'y_coordinate_state_plane': '205418',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73034386686925',
'longitude': '-73.80938423077353',
'location': {'latitude': '40.73034386686925',
'longitude': '-73.80938423077353',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791557',
'created_date': '2025-01-17T01:33:22.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '84-15 85 DRIVE',
'street_name': '85 DRIVE',
'cross_street_1': 'FOREST PARKWAY',
'cross_street_2': '85 STREET',
'intersection_street_1': 'FOREST PARKWAY',
'intersection_street_2': '85 STREET',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '85 DRIVE',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4088560135',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022743',
'y_coordinate_state_plane': '192292',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.694390179672276',
'longitude': '-73.8611884650508',
'location': {'latitude': '40.694390179672276',
'longitude': '-73.8611884650508',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788827',
'created_date': '2025-01-17T01:31:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3971 GOUVERNEUR AVENUE',
'street_name': 'GOUVERNEUR AVENUE',
'cross_street_1': 'SEDGWICK AVENUE',
'cross_street_2': 'VAN CORTLANDT PARK SOUTH',
'intersection_street_1': 'SEDGWICK AVENUE',
'intersection_street_2': 'VAN CORTLANDT PARK SOUTH',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GOUVERNEUR AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:02:16.000',
'community_board': '08 BRONX',
'bbl': '2032520310',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014155',
'y_coordinate_state_plane': '261193',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88353789546767',
'longitude': '-73.89185128507039',
'location': {'latitude': '40.88353789546767',
'longitude': '-73.89185128507039',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787548',
'created_date': '2025-01-17T01:31:46.000',
'closed_date': '2025-01-17T01:50:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:50:25.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791705',
'created_date': '2025-01-17T01:30:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11236',
'incident_address': '553 EAST 108 STREET',
'street_name': 'EAST 108 STREET',
'cross_street_1': 'STANLEY AVENUE',
'cross_street_2': 'FARRAGUT ROAD',
'intersection_street_1': 'STANLEY AVENUE',
'intersection_street_2': 'FARRAGUT ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 108 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:53:39.000',
'community_board': '18 BROOKLYN',
'bbl': '3081580001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1012946',
'y_coordinate_state_plane': '177032',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65254212712796',
'longitude': '-73.89658284703252',
'location': {'latitude': '40.65254212712796',
'longitude': '-73.89658284703252',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787241',
'created_date': '2025-01-17T01:30:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11106',
'incident_address': '35-37 12 STREET',
'street_name': '12 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '36 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '36 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '12 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:30:15.000',
'community_board': '01 QUEENS',
'bbl': '4003320002',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1001293',
'y_coordinate_state_plane': '216837',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76182749987172',
'longitude': '-73.93847817787211',
'location': {'latitude': '40.76182749987172',
'longitude': '-73.93847817787211',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781812',
'created_date': '2025-01-17T01:30:31.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Defective Hardware',
'location_type': 'Street',
'incident_zip': '10312',
'incident_address': '3677 RICHMOND AVENUE',
'street_name': 'RICHMOND AVENUE',
'cross_street_1': 'LAMOKA AVENUE',
'cross_street_2': 'SERRELL AVENUE',
'intersection_street_1': 'LAMOKA AVENUE',
'intersection_street_2': 'SERRELL AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'RICHMOND AVENUE',
'status': 'In Progress',
'community_board': '03 STATEN ISLAND',
'bbl': '5055120014',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '937818',
'y_coordinate_state_plane': '139051',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.54821695141978',
'longitude': '-74.16707450442154',
'location': {'latitude': '40.54821695141978',
'longitude': '-74.16707450442154',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790345',
'created_date': '2025-01-17T01:30:28.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Food Establishment',
'descriptor': 'Food Contains Foreign Object',
'location_type': 'Restaurant/Bar/Deli/Bakery',
'incident_zip': '10453',
'incident_address': '2193 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'ANTHONY AVENUE',
'cross_street_2': 'EAST 182 STREET',
'intersection_street_1': 'ANTHONY AVENUE',
'intersection_street_2': 'EAST 182 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'In Progress',
'community_board': '05 BRONX',
'bbl': '2031620029',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011621',
'y_coordinate_state_plane': '251036',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85566827339903',
'longitude': '-73.9010567471798',
'location': {'latitude': '40.85566827339903',
'longitude': '-73.9010567471798',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790216',
'created_date': '2025-01-17T01:30:13.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '85-03 90 STREET',
'street_name': '90 STREET',
'cross_street_1': '85 ROAD',
'cross_street_2': '86 ROAD',
'intersection_street_1': '85 ROAD',
'intersection_street_2': '86 ROAD',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '90 STREET',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4088730051',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024371',
'y_coordinate_state_plane': '192737',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69560436905453',
'longitude': '-73.85531501263159',
'location': {'latitude': '40.69560436905453',
'longitude': '-73.85531501263159',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791466',
'created_date': '2025-01-17T01:29:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': 'VAN CORTLANDT PARK SOUTH',
'street_name': 'VAN CORTLANDT PARK SOUTH',
'cross_street_1': 'GOUVERNEUR AVENUE',
'cross_street_2': 'VAN CORTLANDT PARK SOUTH',
'intersection_street_1': 'GOUVERNEUR AVENUE',
'intersection_street_2': 'VAN CORTLANDT PARK SOUTH',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:02:31.000',
'community_board': '08 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014444',
'y_coordinate_state_plane': '261678',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88486808373441',
'longitude': '-73.89080395748026',
'location': {'latitude': '40.88486808373441',
'longitude': '-73.89080395748026',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787467',
'created_date': '2025-01-17T01:29:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11103',
'incident_address': '30-73 STEINWAY STREET',
'street_name': 'STEINWAY STREET',
'cross_street_1': '30 AVENUE',
'cross_street_2': '31 AVENUE',
'intersection_street_1': '30 AVENUE',
'intersection_street_2': '31 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': 'STEINWAY STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:02:47.000',
'community_board': '01 QUEENS',
'bbl': '4006800016',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007415',
'y_coordinate_state_plane': '216970',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76217862951886',
'longitude': '-73.91637853534942',
'location': {'latitude': '40.76217862951886',
'longitude': '-73.91637853534942',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788558',
'created_date': '2025-01-17T01:28:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10040',
'incident_address': '4 BOGARDUS PLACE',
'street_name': 'BOGARDUS PLACE',
'cross_street_1': 'HILLSIDE AVENUE',
'cross_street_2': 'ELLWOOD STREET',
'intersection_street_1': 'HILLSIDE AVENUE',
'intersection_street_2': 'ELLWOOD STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BOGARDUS PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:25:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1021710120',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003686',
'y_coordinate_state_plane': '252204',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.858895116989814',
'longitude': '-73.9297375264514',
'location': {'latitude': '40.858895116989814',
'longitude': '-73.9297375264514',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781799',
'created_date': '2025-01-17T01:27:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '957 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786132',
'created_date': '2025-01-17T01:27:14.000',
'closed_date': '2025-01-17T01:40:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '10038',
'incident_address': '3 SPRUCE STREET',
'street_name': 'SPRUCE STREET',
'cross_street_1': 'NASSAU STREET',
'cross_street_2': 'WILLIAM STREET',
'intersection_street_1': 'NASSAU STREET',
'intersection_street_2': 'WILLIAM STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SPRUCE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:40:50.000',
'community_board': '01 MANHATTAN',
'bbl': '1001020001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982666',
'y_coordinate_state_plane': '198518',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71156265930253',
'longitude': '-74.00571361094335',
'location': {'latitude': '40.71156265930253',
'longitude': '-74.00571361094335',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783066',
'created_date': '2025-01-17T01:26:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '47-23 UNION STREET',
'street_name': 'UNION STREET',
'cross_street_1': 'LABURNUM AVENUE',
'cross_street_2': 'NEGUNDO AVENUE',
'intersection_street_1': 'LABURNUM AVENUE',
'intersection_street_2': 'NEGUNDO AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': 'UNION STREET',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4052170030',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035129',
'y_coordinate_state_plane': '212544',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.749914360772856',
'longitude': '-73.8163697085996',
'location': {'latitude': '40.749914360772856',
'longitude': '-73.8163697085996',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784531',
'created_date': '2025-01-17T01:25:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '1838 WEST 7 STREET',
'street_name': 'WEST 7 STREET',
'cross_street_1': 'HIGHLAWN AVENUE',
'cross_street_2': 'AVENUE S',
'intersection_street_1': 'HIGHLAWN AVENUE',
'intersection_street_2': 'AVENUE S',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 7 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3066730121',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989899',
'y_coordinate_state_plane': '158751',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60240932285499',
'longitude': '-73.97965693117018',
'location': {'latitude': '40.60240932285499',
'longitude': '-73.97965693117018',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790154',
'created_date': '2025-01-17T01:25:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11366',
'incident_address': '73-52 197 STREET',
'street_name': '197 STREET',
'cross_street_1': '73 AVENUE',
'cross_street_2': '75 AVENUE',
'intersection_street_1': '73 AVENUE',
'intersection_street_2': '75 AVENUE',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '197 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4071840030',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1046612',
'y_coordinate_state_plane': '207212',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73520587199569',
'longitude': '-73.77497536107239',
'location': {'latitude': '40.73520587199569',
'longitude': '-73.77497536107239',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790364',
'created_date': '2025-01-17T01:24:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10027',
'incident_address': '301 WEST 130 STREET',
'street_name': 'WEST 130 STREET',
'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_2': 'ST NICHOLAS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 130 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:12:02.000',
'community_board': '10 MANHATTAN',
'bbl': '1019580001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998373',
'y_coordinate_state_plane': '235640',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81344183688508',
'longitude': '-73.94897925774328',
'location': {'latitude': '40.81344183688508',
'longitude': '-73.94897925774328',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781779',
'created_date': '2025-01-17T01:24:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11101',
'incident_address': '40-14 12 STREET',
'street_name': '12 STREET',
'cross_street_1': '40 AVENUE',
'cross_street_2': '41 AVENUE',
'intersection_street_1': '40 AVENUE',
'intersection_street_2': '41 AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '12 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:16:32.000',
'community_board': '01 QUEENS',
'bbl': '4004700200',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1000021',
'y_coordinate_state_plane': '214633',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75578044551614',
'longitude': '-73.9430750123803',
'location': {'latitude': '40.75578044551614',
'longitude': '-73.9430750123803',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783178',
'created_date': '2025-01-17T01:24:33.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11236',
'incident_address': '1283 EAST 86 STREET',
'street_name': 'EAST 86 STREET',
'cross_street_1': 'AVENUE L',
'cross_street_2': 'AVENUE M',
'intersection_street_1': 'AVENUE L',
'intersection_street_2': 'AVENUE M',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 86 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:43:10.000',
'community_board': '18 BROOKLYN',
'bbl': '3080650006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1011434',
'y_coordinate_state_plane': '169632',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63223549975124',
'longitude': '-73.90206173717675',
'location': {'latitude': '40.63223549975124',
'longitude': '-73.90206173717675',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791482',
'created_date': '2025-01-17T01:23:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1160 RIVER AVENUE',
'street_name': 'RIVER AVENUE',
'cross_street_1': 'MCCLELLAN STREET',
'cross_street_2': 'EAST 167 STREET',
'intersection_street_1': 'MCCLELLAN STREET',
'intersection_street_2': 'EAST 167 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'RIVER AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:36:20.000',
'community_board': '04 BRONX',
'bbl': '2024887501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005853',
'y_coordinate_state_plane': '243361',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'location': {'latitude': '40.83461865786799',
'longitude': '-73.92193216706133',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787469',
'created_date': '2025-01-17T01:20:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11234',
'incident_address': '1150 EAST 53 STREET',
'street_name': 'EAST 53 STREET',
'cross_street_1': 'AVENUE H',
'cross_street_2': 'AVENUE I',
'intersection_street_1': 'AVENUE H',
'intersection_street_2': 'AVENUE I',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 53 STREET',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'bbl': '3077560076',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004990',
'y_coordinate_state_plane': '169280',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.631286766133385',
'longitude': '-73.92527918930374',
'location': {'latitude': '40.631286766133385',
'longitude': '-73.92527918930374',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785873',
'created_date': '2025-01-17T01:20:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '6560 RIDGE BOULEVARD',
'street_name': 'RIDGE BOULEVARD',
'cross_street_1': 'BELT PARKWAY',
'cross_street_2': 'BELT PARKWAY EB EN RIDGE BLVD',
'intersection_street_1': 'BELT PARKWAY',
'intersection_street_2': 'BELT PARKWAY EB EN RIDGE BLVD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'RIDGE BOULEVARD',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2025-01-17T01:30:36.000',
'community_board': '10 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '976945',
'y_coordinate_state_plane': '172467',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.640055670110435',
'longitude': '-74.02632146546108',
'location': {'latitude': '40.640055670110435',
'longitude': '-74.02632146546108',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790825',
'created_date': '2025-01-17T01:19:51.000',
'closed_date': '2025-01-17T01:50:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11226',
'incident_address': '2020 CORTELYOU ROAD',
'street_name': 'CORTELYOU ROAD',
'cross_street_1': 'OCEAN AVENUE',
'cross_street_2': 'EAST 21 STREET',
'intersection_street_1': 'OCEAN AVENUE',
'intersection_street_2': 'EAST 21 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CORTELYOU ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:50:05.000',
'community_board': '14 BROOKLYN',
'bbl': '3051630010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995507',
'y_coordinate_state_plane': '173706',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64345231775052',
'longitude': '-73.95943657410989',
'location': {'latitude': '40.64345231775052',
'longitude': '-73.95943657410989',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790126',
'created_date': '2025-01-17T01:19:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Double Parked Blocking Traffic',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '149-19 58 ROAD',
'street_name': '58 ROAD',
'cross_street_1': '148 STREET',
'cross_street_2': '150 STREET',
'intersection_street_1': '148 STREET',
'intersection_street_2': '150 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '58 ROAD',
'status': 'In Progress',
'community_board': '07 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034421',
'y_coordinate_state_plane': '209939',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Truck',
'latitude': '40.74276834996858',
'longitude': '-73.8189444170767',
'location': {'latitude': '40.74276834996858',
'longitude': '-73.8189444170767',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788203',
'created_date': '2025-01-17T01:19:14.000',
'closed_date': '2025-01-17T01:50:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Drinking',
'descriptor': 'Underage - Licensed Est',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10453',
'incident_address': '2193 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'ANTHONY AVENUE',
'cross_street_2': 'EAST 182 STREET',
'intersection_street_1': 'ANTHONY AVENUE',
'intersection_street_2': 'EAST 182 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:50:06.000',
'community_board': '05 BRONX',
'bbl': '2031620029',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011621',
'y_coordinate_state_plane': '251036',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85566827339903',
'longitude': '-73.9010567471798',
'location': {'latitude': '40.85566827339903',
'longitude': '-73.9010567471798',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787393',
'created_date': '2025-01-17T01:19:03.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '8632 BAY 16 STREET',
'street_name': 'BAY 16 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 16 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063660058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '982901',
'y_coordinate_state_plane': '160584',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60744223175268',
'longitude': '-74.00485835872688',
'location': {'latitude': '40.60744223175268',
'longitude': '-74.00485835872688',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783213',
'created_date': '2025-01-17T01:18:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11361',
'incident_address': '34-32 205 STREET',
'street_name': '205 STREET',
'cross_street_1': '34 AVENUE',
'cross_street_2': '35 AVENUE',
'intersection_street_1': '34 AVENUE',
'intersection_street_2': '35 AVENUE',
'address_type': 'ADDRESS',
'city': 'BAYSIDE',
'landmark': '205 STREET',
'status': 'In Progress',
'community_board': '11 QUEENS',
'bbl': '4060890016',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1044374',
'y_coordinate_state_plane': '218829',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76710699890617',
'longitude': '-73.78294697317745',
'location': {'latitude': '40.76710699890617',
'longitude': '-73.78294697317745',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790443',
'created_date': '2025-01-17T01:18:27.000',
'closed_date': '2025-01-17T01:28:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11372',
'incident_address': '78-11 ROOSEVELT AVENUE',
'street_name': 'ROOSEVELT AVENUE',
'cross_street_1': '78 STREET',
'cross_street_2': '79 STREET',
'intersection_street_1': '78 STREET',
'intersection_street_2': '79 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': 'ROOSEVELT AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:28:41.000',
'community_board': '03 QUEENS',
'bbl': '4012890042',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015438',
'y_coordinate_state_plane': '211549',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74727471286751',
'longitude': '-73.88744212760699',
'location': {'latitude': '40.74727471286751',
'longitude': '-73.88744212760699',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783113',
'created_date': '2025-01-17T01:17:53.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11368',
'incident_address': '108-59 ROOSEVELT AVENUE',
'street_name': 'ROOSEVELT AVENUE',
'cross_street_1': '108 STREET',
'cross_street_2': '111 STREET',
'intersection_street_1': '108 STREET',
'intersection_street_2': '111 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': 'ROOSEVELT AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:20:02.000',
'community_board': '03 QUEENS',
'bbl': '4017807501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023518',
'y_coordinate_state_plane': '212871',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.750871076618466',
'longitude': '-73.85827363537683',
'location': {'latitude': '40.750871076618466',
'longitude': '-73.85827363537683',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785849',
'created_date': '2025-01-17T01:17:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '216 WEST 234 STREET',
'street_name': 'WEST 234 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'KINGSBRIDGE AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 234 STREET',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057550041',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010988',
'y_coordinate_state_plane': '260610',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88194790683594',
'longitude': '-73.90330677021551',
'location': {'latitude': '40.88194790683594',
'longitude': '-73.90330677021551',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781753',
'created_date': '2025-01-17T01:17:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11378',
'incident_address': '60-05 FLUSHING AVENUE',
'street_name': 'FLUSHING AVENUE',
'cross_street_1': '59 AVENUE',
'cross_street_2': '60 STREET',
'intersection_street_1': '59 AVENUE',
'intersection_street_2': '60 STREET',
'address_type': 'ADDRESS',
'city': 'MASPETH',
'landmark': 'FLUSHING AVENUE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4026990037',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010003',
'y_coordinate_state_plane': '201309',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.719185944600326',
'longitude': '-73.90709628764378',
'location': {'latitude': '40.719185944600326',
'longitude': '-73.90709628764378',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783892',
'created_date': '2025-01-17T01:16:59.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Obstruction',
'descriptor': 'Merchandise',
'location_type': 'Street',
'incident_zip': '10018',
'incident_address': '485 9 AVENUE',
'street_name': '9 AVENUE',
'cross_street_1': 'WEST 37 STREET',
'cross_street_2': 'WEST 38 STREET',
'intersection_street_1': 'WEST 37 STREET',
'intersection_street_2': 'WEST 38 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '9 AVENUE',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'bbl': '1007350025',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '985673',
'y_coordinate_state_plane': '214485',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7553881738146',
'longitude': '-73.99486375152493',
'location': {'latitude': '40.7553881738146',
'longitude': '-73.99486375152493',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789942',
'created_date': '2025-01-17T01:16:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'License Plate Obscured',
'location_type': 'Street/Sidewalk',
'incident_zip': '10128',
'incident_address': '180 EAST END AVENUE',
'street_name': 'EAST END AVENUE',
'cross_street_1': 'EAST 88 STREET',
'cross_street_2': 'EAST 89 STREET',
'intersection_street_1': 'EAST 88 STREET',
'intersection_street_2': 'EAST 89 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST END AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:27:36.000',
'community_board': '08 MANHATTAN',
'bbl': '1015850023',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999858',
'y_coordinate_state_plane': '222182',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77650078178161',
'longitude': '-73.94364582673172',
'location': {'latitude': '40.77650078178161',
'longitude': '-73.94364582673172',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789092',
'created_date': '2025-01-17T01:16:37.000',
'closed_date': '2025-01-17T01:29:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10038',
'incident_address': '161 WATER STREET',
'street_name': 'WATER STREET',
'cross_street_1': 'FLETCHER STREET',
'cross_street_2': 'JOHN STREET',
'intersection_street_1': 'FLETCHER STREET',
'intersection_street_2': 'JOHN STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WATER STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:29:15.000',
'community_board': '01 MANHATTAN',
'bbl': '1000717501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982703',
'y_coordinate_state_plane': '196652',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.706440937870255',
'longitude': '-74.00557972033668',
'location': {'latitude': '40.706440937870255',
'longitude': '-74.00557972033668',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785908',
'created_date': '2025-01-17T01:15:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '214 ROCKAWAY PARKWAY',
'street_name': 'ROCKAWAY PARKWAY',
'cross_street_1': 'WINTHROP STREET',
'cross_street_2': 'CLARKSON AVENUE',
'intersection_street_1': 'WINTHROP STREET',
'intersection_street_2': 'CLARKSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ROCKAWAY PARKWAY',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3046320025',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006187',
'y_coordinate_state_plane': '180410',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66183331534403',
'longitude': '-73.9209305179595',
'location': {'latitude': '40.66183331534403',
'longitude': '-73.9209305179595',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785909',
'created_date': '2025-01-17T01:15:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '202 YORK STREET',
'street_name': 'YORK STREET',
'cross_street_1': 'GOLD STREET',
'cross_street_2': 'NAVY STREET',
'intersection_street_1': 'GOLD STREET',
'intersection_street_2': 'NAVY STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'YORK STREET',
'status': 'In Progress',
'community_board': '02 BROOKLYN',
'bbl': '3000710001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989043',
'y_coordinate_state_plane': '194796',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70134549131544',
'longitude': '-73.9827139265285',
'location': {'latitude': '40.70134549131544',
'longitude': '-73.9827139265285',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785992',
'created_date': '2025-01-17T01:15:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '259 WEST 234 STREET',
'street_name': 'WEST 234 STREET',
'cross_street_1': 'KINGSBRIDGE AVENUE',
'cross_street_2': 'CORLEAR AVENUE',
'intersection_street_1': 'KINGSBRIDGE AVENUE',
'intersection_street_2': 'CORLEAR AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 234 STREET',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057610460',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010692',
'y_coordinate_state_plane': '260834',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.882563608473006',
'longitude': '-73.90437631652628',
'location': {'latitude': '40.882563608473006',
'longitude': '-73.90437631652628',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783448',
'created_date': '2025-01-17T01:15:09.000',
'closed_date': '2025-01-17T01:40:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '205 BEVERLY ROAD',
'street_name': 'BEVERLY ROAD',
'cross_street_1': 'EAST 2 STREET',
'cross_street_2': 'EAST 3 STREET',
'intersection_street_1': 'EAST 2 STREET',
'intersection_street_2': 'EAST 3 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BEVERLEY ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:40:14.000',
'community_board': '12 BROOKLYN',
'bbl': '3053350090',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '990331',
'y_coordinate_state_plane': '173493',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64287274489119',
'longitude': '-73.97808794136415',
'location': {'latitude': '40.64287274489119',
'longitude': '-73.97808794136415',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787395',
'created_date': '2025-01-17T01:14:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3242 CORLEAR AVENUE',
'street_name': 'CORLEAR AVENUE',
'cross_street_1': 'WEST 232 STREET',
'cross_street_2': 'WEST 234 STREET',
'intersection_street_1': 'WEST 232 STREET',
'intersection_street_2': 'WEST 234 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CORLEAR AVENUE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057560226',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010468',
'y_coordinate_state_plane': '260871',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88266583017549',
'longitude': '-73.90518623479058',
'location': {'latitude': '40.88266583017549',
'longitude': '-73.90518623479058',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787470',
'created_date': '2025-01-17T01:14:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '27 SICKLES STREET',
'street_name': 'SICKLES STREET',
'cross_street_1': 'NAGLE AVENUE',
'cross_street_2': 'SHERMAN AVENUE',
'intersection_street_1': 'NAGLE AVENUE',
'intersection_street_2': 'SHERMAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SICKLES STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:24:17.000',
'community_board': '12 MANHATTAN',
'bbl': '1021740145',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1004247',
'y_coordinate_state_plane': '253063',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'location': {'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790221',
'created_date': '2025-01-17T01:13:39.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '214 ROCKAWAY PARKWAY',
'street_name': 'ROCKAWAY PARKWAY',
'cross_street_1': 'WINTHROP STREET',
'cross_street_2': 'CLARKSON AVENUE',
'intersection_street_1': 'WINTHROP STREET',
'intersection_street_2': 'CLARKSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ROCKAWAY PARKWAY',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3046320025',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006187',
'y_coordinate_state_plane': '180410',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66183331534403',
'longitude': '-73.9209305179595',
'location': {'latitude': '40.66183331534403',
'longitude': '-73.9209305179595',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783148',
'created_date': '2025-01-17T01:13:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '274 WEST 236 STREET',
'street_name': 'WEST 236 STREET',
'cross_street_1': 'KINGSBRIDGE AVENUE',
'cross_street_2': 'CORLEAR AVENUE',
'intersection_street_1': 'KINGSBRIDGE AVENUE',
'intersection_street_2': 'CORLEAR AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 236 STREET',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057610429',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011036',
'y_coordinate_state_plane': '261422',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88417644648266',
'longitude': '-73.90312993958072',
'location': {'latitude': '40.88417644648266',
'longitude': '-73.90312993958072',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788682',
'created_date': '2025-01-17T01:12:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11365',
'incident_address': '64-20 192 STREET',
'street_name': '192 STREET',
'cross_street_1': 'BEND',
'cross_street_2': 'BEND',
'intersection_street_1': 'BEND',
'intersection_street_2': 'BEND',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '192 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1044607',
'y_coordinate_state_plane': '208430',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73856288026834',
'longitude': '-73.78219916791839',
'location': {'latitude': '40.73856288026834',
'longitude': '-73.78219916791839',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784496',
'created_date': '2025-01-17T01:12:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '8632 BAY 16 STREET',
'street_name': 'BAY 16 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 16 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063660058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '982901',
'y_coordinate_state_plane': '160584',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60744223175268',
'longitude': '-74.00485835872688',
'location': {'latitude': '40.60744223175268',
'longitude': '-74.00485835872688',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787394',
'created_date': '2025-01-17T01:12:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3253 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'cross_street_1': 'WEST 233 STREET',
'cross_street_2': 'WEST 234 STREET',
'intersection_street_1': 'WEST 233 STREET',
'intersection_street_2': 'WEST 234 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'KINGSBRIDGE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:29:37.000',
'community_board': '08 BRONX',
'bbl': '2057560231',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010742',
'y_coordinate_state_plane': '260727',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88226977705907',
'longitude': '-73.90419592207655',
'location': {'latitude': '40.88226977705907',
'longitude': '-73.90419592207655',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781759',
'created_date': '2025-01-17T01:12:07.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '11219',
'incident_address': '1404 58 STREET',
'street_name': '58 STREET',
'cross_street_1': '14 AVENUE',
'cross_street_2': '15 AVENUE',
'intersection_street_1': '14 AVENUE',
'intersection_street_2': '15 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '58 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:59:32.000',
'community_board': '12 BROOKLYN',
'bbl': '3057060005',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985700',
'y_coordinate_state_plane': '168223',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62840968496727',
'longitude': '-73.9947762540118',
'location': {'latitude': '40.62840968496727',
'longitude': '-73.9947762540118',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781673',
'created_date': '2025-01-17T01:12:02.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11414',
'incident_address': '151-19 78 STREET',
'street_name': '78 STREET',
'cross_street_1': 'STANLEY AVENUE',
'cross_street_2': '153 AVENUE',
'intersection_street_1': 'STANLEY AVENUE',
'intersection_street_2': '153 AVENUE',
'address_type': 'ADDRESS',
'city': 'HOWARD BEACH',
'landmark': '78 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4114257502',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024094',
'y_coordinate_state_plane': '182209',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.66670869147315',
'longitude': '-73.85637618176581',
'location': {'latitude': '40.66670869147315',
'longitude': '-73.85637618176581',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784431',
'created_date': '2025-01-17T01:11:30.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3425 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'cross_street_1': 'WEST 234 STREET',
'cross_street_2': 'WEST 236 STREET',
'intersection_street_1': 'WEST 234 STREET',
'intersection_street_2': 'WEST 236 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'KINGSBRIDGE AVENUE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057610444',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010871',
'y_coordinate_state_plane': '260895',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.882730496214215',
'longitude': '-73.90372874689294',
'location': {'latitude': '40.882730496214215',
'longitude': '-73.90372874689294',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788830',
'created_date': '2025-01-17T01:11:22.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11207',
'incident_address': '85 HENDRIX STREET',
'street_name': 'HENDRIX STREET',
'cross_street_1': 'JAMAICA AVENUE',
'cross_street_2': 'ARLINGTON AVENUE',
'intersection_street_1': 'JAMAICA AVENUE',
'intersection_street_2': 'ARLINGTON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HENDRIX STREET',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'bbl': '3039190001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1014394',
'y_coordinate_state_plane': '187155',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.680322679327986',
'longitude': '-73.89131916034651',
'location': {'latitude': '40.680322679327986',
'longitude': '-73.89131916034651',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787287',
'created_date': '2025-01-17T01:10:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11365',
'incident_address': '64-20 192 STREET',
'street_name': '192 STREET',
'cross_street_1': 'BEND',
'cross_street_2': 'BEND',
'intersection_street_1': 'BEND',
'intersection_street_2': 'BEND',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '192 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1044607',
'y_coordinate_state_plane': '208430',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73856288026834',
'longitude': '-73.78219916791839',
'location': {'latitude': '40.73856288026834',
'longitude': '-73.78219916791839',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783015',
'created_date': '2025-01-17T01:10:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11368',
'incident_address': '55-35 97 STREET',
'street_name': '97 STREET',
'cross_street_1': '55 AVENUE',
'cross_street_2': '57 AVENUE',
'intersection_street_1': '55 AVENUE',
'intersection_street_2': '57 AVENUE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '97 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4019050009',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1021790',
'y_coordinate_state_plane': '208319',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73838449546053',
'longitude': '-73.86453574265308',
'location': {'latitude': '40.73838449546053',
'longitude': '-73.86453574265308',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785797',
'created_date': '2025-01-17T01:10:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '2502 BATH AVENUE',
'street_name': 'BATH AVENUE',
'cross_street_1': '25 AVENUE',
'cross_street_2': 'BAY 40 STREET',
'intersection_street_1': '25 AVENUE',
'intersection_street_2': 'BAY 40 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BATH AVENUE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3068940035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986809',
'y_coordinate_state_plane': '155772',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59423400115416',
'longitude': '-73.99078570734713',
'location': {'latitude': '40.59423400115416',
'longitude': '-73.99078570734713',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791667',
'created_date': '2025-01-17T01:10:21.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '10031',
'incident_address': '492 CONVENT AVENUE',
'street_name': 'CONVENT AVENUE',
'cross_street_1': 'WEST 151 STREET',
'cross_street_2': 'WEST 152 STREET',
'intersection_street_1': 'WEST 151 STREET',
'intersection_street_2': 'WEST 152 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'CONVENT AVENUE',
'status': 'In Progress',
'community_board': '09 MANHATTAN',
'bbl': '1020660046',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000128',
'y_coordinate_state_plane': '241174',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82862812082296',
'longitude': '-73.94262605306395',
'location': {'latitude': '40.82862812082296',
'longitude': '-73.94262605306395',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791696',
'created_date': '2025-01-17T01:09:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3441 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'cross_street_1': 'WEST 234 STREET',
'cross_street_2': 'WEST 236 STREET',
'intersection_street_1': 'WEST 234 STREET',
'intersection_street_2': 'WEST 236 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'KINGSBRIDGE AVENUE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057610441',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010895',
'y_coordinate_state_plane': '260925',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8828127643775',
'longitude': '-73.90364183486102',
'location': {'latitude': '40.8828127643775',
'longitude': '-73.90364183486102',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791706',
'created_date': '2025-01-17T01:09:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Non-Emergency Police Matter',
'descriptor': 'Other (complaint details)',
'location_type': 'Street/Sidewalk',
'incident_zip': '10018',
'incident_address': '331 WEST 37 STREET',
'street_name': 'WEST 37 STREET',
'cross_street_1': '8 AVENUE',
'cross_street_2': '9 AVENUE',
'intersection_street_1': '8 AVENUE',
'intersection_street_2': '9 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 37 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:07:47.000',
'community_board': '04 MANHATTAN',
'bbl': '1007610043',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986159',
'y_coordinate_state_plane': '214175',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.754537211073256',
'longitude': '-73.99310964646145',
'location': {'latitude': '40.754537211073256',
'longitude': '-73.99310964646145',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783097',
'created_date': '2025-01-17T01:09:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10461',
'incident_address': '1720 MAYFLOWER AVENUE',
'street_name': 'MAYFLOWER AVENUE',
'cross_street_1': 'WESTCHESTER AVENUE',
'cross_street_2': 'BUHRE AVENUE',
'intersection_street_1': 'WESTCHESTER AVENUE',
'intersection_street_2': 'BUHRE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MAYFLOWER AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2041620002',
'borough': 'BRONX',
'x_coordinate_state_plane': '1030059',
'y_coordinate_state_plane': '247502',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84589209305118',
'longitude': '-73.83442961221682',
'location': {'latitude': '40.84589209305118',
'longitude': '-73.83442961221682',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791576',
'created_date': '2025-01-17T01:09:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11217',
'incident_address': '414 BALTIC STREET',
'street_name': 'BALTIC STREET',
'cross_street_1': 'HOYT STREET',
'cross_street_2': 'BOND STREET',
'intersection_street_1': 'HOYT STREET',
'intersection_street_2': 'BOND STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BALTIC STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:14:52.000',
'community_board': '06 BROOKLYN',
'bbl': '3004040001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987296',
'y_coordinate_state_plane': '188380',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.683735827854086',
'longitude': '-73.98901742643632',
'location': {'latitude': '40.683735827854086',
'longitude': '-73.98901742643632',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784731',
'created_date': '2025-01-17T01:06:56.000',
'closed_date': '2025-01-17T01:30:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11372',
'incident_address': '84-10 34 AVENUE',
'street_name': '34 AVENUE',
'cross_street_1': '84 STREET',
'cross_street_2': '85 STREET',
'intersection_street_1': '84 STREET',
'intersection_street_2': '85 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '34 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:30:46.000',
'community_board': '03 QUEENS',
'bbl': '4014450001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016674',
'y_coordinate_state_plane': '213979',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753939997619135',
'longitude': '-73.88296967711675',
'location': {'latitude': '40.753939997619135',
'longitude': '-73.88296967711675',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782062',
'created_date': '2025-01-17T01:04:32.000',
'closed_date': '2025-01-17T01:32:02.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11372',
'incident_address': '84-10 34 AVENUE',
'street_name': '34 AVENUE',
'cross_street_1': '84 STREET',
'cross_street_2': '85 STREET',
'intersection_street_1': '84 STREET',
'intersection_street_2': '85 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '34 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:32:05.000',
'community_board': '03 QUEENS',
'bbl': '4014450001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016674',
'y_coordinate_state_plane': '213979',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753939997619135',
'longitude': '-73.88296967711675',
'location': {'latitude': '40.753939997619135',
'longitude': '-73.88296967711675',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784365',
'created_date': '2025-01-17T01:03:47.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '10031',
'incident_address': '484 CONVENT AVENUE',
'street_name': 'CONVENT AVENUE',
'cross_street_1': 'WEST 151 STREET',
'cross_street_2': 'WEST 152 STREET',
'intersection_street_1': 'WEST 151 STREET',
'intersection_street_2': 'WEST 152 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'CONVENT AVENUE',
'status': 'In Progress',
'community_board': '09 MANHATTAN',
'bbl': '1020660021',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000072',
'y_coordinate_state_plane': '241130',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82850745392018',
'longitude': '-73.94282850852007',
'location': {'latitude': '40.82850745392018',
'longitude': '-73.94282850852007',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783072',
'created_date': '2025-01-17T01:03:44.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Signs of Rodents',
'location_type': 'Commercial Building',
'incident_zip': '11354',
'incident_address': '136-11 ROOSEVELT AVENUE',
'street_name': 'ROOSEVELT AVENUE',
'cross_street_1': 'MAIN STREET',
'cross_street_2': 'LIPPMANN PLAZA',
'intersection_street_1': 'MAIN STREET',
'intersection_street_2': 'LIPPMANN PLAZA',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': 'ROOSEVELT AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4049800081',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1031479',
'y_coordinate_state_plane': '216114',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75973333271898',
'longitude': '-73.82951802037047',
'location': {'latitude': '40.75973333271898',
'longitude': '-73.82951802037047',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783126',
'created_date': '2025-01-17T01:02:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '1088 LENOX ROAD',
'street_name': 'LENOX ROAD',
'cross_street_1': 'EAST 95 STREET',
'cross_street_2': 'EAST 96 STREET',
'intersection_street_1': 'EAST 95 STREET',
'intersection_street_2': 'EAST 96 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LENOX ROAD',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3046700036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006494',
'y_coordinate_state_plane': '179188',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65847843002299',
'longitude': '-73.91982800234932',
'location': {'latitude': '40.65847843002299',
'longitude': '-73.91982800234932',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791435',
'created_date': '2025-01-17T01:01:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10457',
'incident_address': '1771 MONROE AVENUE',
'street_name': 'MONROE AVENUE',
'cross_street_1': 'CROSS BRONX EXPRESSWAY',
'cross_street_2': 'EAST 175 STREET',
'intersection_street_1': 'CROSS BRONX EXPRESSWAY',
'intersection_street_2': 'EAST 175 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MONROE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:01:19.000',
'community_board': '05 BRONX',
'bbl': '2027970039',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010108',
'y_coordinate_state_plane': '247573',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84616793092962',
'longitude': '-73.9065394332204',
'location': {'latitude': '40.84616793092962',
'longitude': '-73.9065394332204',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781786',
'created_date': '2025-01-17T01:01:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11237',
'incident_address': '44 WILSON AVENUE',
'street_name': 'WILSON AVENUE',
'cross_street_1': 'GEORGE STREET',
'cross_street_2': 'MELROSE STREET',
'intersection_street_1': 'GEORGE STREET',
'intersection_street_2': 'MELROSE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WILSON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:53:46.000',
'community_board': '04 BROOKLYN',
'bbl': '3031570031',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003829',
'y_coordinate_state_plane': '195325',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70277711007218',
'longitude': '-73.92938632693719',
'location': {'latitude': '40.70277711007218',
'longitude': '-73.92938632693719',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783067',
'created_date': '2025-01-17T01:00:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11212',
'incident_address': '827 THOMAS S BOYLAND STREET',
'street_name': 'THOMAS S BOYLAND STREET',
'cross_street_1': 'RIVERDALE AVENUE',
'cross_street_2': 'NEWPORT STREET',
'intersection_street_1': 'RIVERDALE AVENUE',
'intersection_street_2': 'NEWPORT STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'THOMAS S BOYLAND STREET',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2025-01-17T02:26:50.000',
'community_board': '16 BROOKLYN',
'bbl': '3036000023',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008889',
'y_coordinate_state_plane': '179777',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66008876418062',
'longitude': '-73.91119377818862',
'location': {'latitude': '40.66008876418062',
'longitude': '-73.91119377818862',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787508',
'created_date': '2025-01-17T01:00:05.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11234',
'incident_address': '1150 EAST 53 STREET',
'street_name': 'EAST 53 STREET',
'cross_street_1': 'AVENUE H',
'cross_street_2': 'AVENUE I',
'intersection_street_1': 'AVENUE H',
'intersection_street_2': 'AVENUE I',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 53 STREET',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'bbl': '3077560076',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004990',
'y_coordinate_state_plane': '169280',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.631286766133385',
'longitude': '-73.92527918930374',
'location': {'latitude': '40.631286766133385',
'longitude': '-73.92527918930374',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783040',
'created_date': '2025-01-17T00:59:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10467',
'incident_address': '308 EAST 206 STREET',
'street_name': 'EAST 206 STREET',
'cross_street_1': 'BAINBRIDGE AVENUE',
'cross_street_2': 'PERRY AVENUE',
'intersection_street_1': 'BAINBRIDGE AVENUE',
'intersection_street_2': 'PERRY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 206 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:03:05.000',
'community_board': '07 BRONX',
'bbl': '2033410056',
'borough': 'BRONX',
'x_coordinate_state_plane': '1017980',
'y_coordinate_state_plane': '258043',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8748783404694',
'longitude': '-73.87803439818289',
'location': {'latitude': '40.8748783404694',
'longitude': '-73.87803439818289',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791804',
'created_date': '2025-01-17T00:59:25.000',
'closed_date': '2025-01-17T01:37:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11235',
'incident_address': '1151 BRIGHTON BEACH AVENUE',
'street_name': 'BRIGHTON BEACH AVENUE',
'cross_street_1': 'BRIGHTON 14 STREET',
'cross_street_2': 'BRIGHTON 15 STREET',
'intersection_street_1': 'BRIGHTON 14 STREET',
'intersection_street_2': 'BRIGHTON 15 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHTON BEACH AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:37:49.000',
'community_board': '13 BROOKLYN',
'bbl': '3087177501',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996667',
'y_coordinate_state_plane': '149686',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57752081545611',
'longitude': '-73.95530080237096',
'location': {'latitude': '40.57752081545611',
'longitude': '-73.95530080237096',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781844',
'created_date': '2025-01-17T00:59:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '10455',
'intersection_street_1': 'ELTON AVENUE',
'intersection_street_2': 'EAST 155 STREET',
'address_type': 'INTERSECTION',
'city': 'BRONX',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '01 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007981',
'y_coordinate_state_plane': '237945',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.81974782795241',
'longitude': '-73.91426126938494',
'location': {'latitude': '40.81974782795241',
'longitude': '-73.91426126938494',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786627',
'created_date': '2025-01-17T00:59:00.000',
'closed_date': '2025-01-17T01:44:18.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11101',
'incident_address': '54-19 2 STREET',
'street_name': '2 STREET',
'cross_street_1': '54 AVENUE',
'cross_street_2': '55 AVENUE',
'intersection_street_1': '54 AVENUE',
'intersection_street_2': '55 AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '2 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:44:24.000',
'community_board': '02 QUEENS',
'bbl': '4000110003',
'borough': 'QUEENS',
'x_coordinate_state_plane': '995504',
'y_coordinate_state_plane': '209099',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.740597912654586',
'longitude': '-73.95938825665284',
'location': {'latitude': '40.740597912654586',
'longitude': '-73.95938825665284',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784750',
'created_date': '2025-01-17T00:58:08.000',
'closed_date': '2025-01-17T01:37:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11375',
'incident_address': '108-07 72 AVENUE',
'street_name': '72 AVENUE',
'cross_street_1': 'AUSTIN STREET',
'cross_street_2': 'QUEENS BOULEVARD',
'intersection_street_1': 'AUSTIN STREET',
'intersection_street_2': 'QUEENS BOULEVARD',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': '72 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:37:55.000',
'community_board': '06 QUEENS',
'bbl': '4032570024',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027907',
'y_coordinate_state_plane': '201465',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.71954389017692',
'longitude': '-73.84250686995416',
'location': {'latitude': '40.71954389017692',
'longitude': '-73.84250686995416',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788002',
'created_date': '2025-01-17T00:58:02.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Sidewalk',
'incident_zip': '10031',
'incident_address': '828 ST NICHOLAS AVENUE',
'street_name': 'ST NICHOLAS AVENUE',
'cross_street_1': 'WEST 151 STREET',
'cross_street_2': 'WEST 152 STREET',
'intersection_street_1': 'WEST 151 STREET',
'intersection_street_2': 'WEST 152 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'ST NICHOLAS AVENUE',
'status': 'In Progress',
'community_board': '09 MANHATTAN',
'bbl': '1020660033',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000208',
'y_coordinate_state_plane': '241092',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8284029101287',
'longitude': '-73.94233717427045',
'location': {'latitude': '40.8284029101287',
'longitude': '-73.94233717427045',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784511',
'created_date': '2025-01-17T00:57:50.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10457',
'incident_address': '4215 PARK AVENUE',
'street_name': 'PARK AVENUE',
'cross_street_1': 'EAST TREMONT AVENUE',
'cross_street_2': 'EAST 178 STREET',
'intersection_street_1': 'EAST TREMONT AVENUE',
'intersection_street_2': 'EAST 178 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'PARK AVENUE',
'status': 'In Progress',
'community_board': '06 BRONX',
'bbl': '2030277501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012131',
'y_coordinate_state_plane': '248193',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.847863491304004',
'longitude': '-73.89922497624548',
'location': {'latitude': '40.847863491304004',
'longitude': '-73.89922497624548',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785933',
'created_date': '2025-01-17T00:56:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '10028',
'intersection_street_1': 'LEXINGTON AVENUE',
'intersection_street_2': 'EAST 80 STREET',
'address_type': 'INTERSECTION',
'city': 'MANHATTAN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '08 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '995772',
'y_coordinate_state_plane': '221867',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77564246025849',
'longitude': '-73.95839925712613',
'location': {'latitude': '40.77564246025849',
'longitude': '-73.95839925712613',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790232',
'created_date': '2025-01-17T00:55:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10455',
'incident_address': '725 PROSPECT AVENUE',
'street_name': 'PROSPECT AVENUE',
'cross_street_1': 'DAWSON STREET',
'cross_street_2': 'EAST 156 STREET',
'intersection_street_1': 'DAWSON STREET',
'intersection_street_2': 'EAST 156 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'PROSPECT AVENUE',
'status': 'In Progress',
'community_board': '01 BRONX',
'bbl': '2026750055',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011143',
'y_coordinate_state_plane': '236858',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.81675525979464',
'longitude': '-73.90284151099382',
'location': {'latitude': '40.81675525979464',
'longitude': '-73.90284151099382',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791578',
'created_date': '2025-01-17T00:55:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11225',
'incident_address': '501 LEFFERTS AVENUE',
'street_name': 'LEFFERTS AVENUE',
'cross_street_1': 'BALFOUR PLACE',
'cross_street_2': 'LAMONT COURT',
'intersection_street_1': 'BALFOUR PLACE',
'intersection_street_2': 'LAMONT COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LEFFERTS AVENUE',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3013240001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999590',
'y_coordinate_state_plane': '180736',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6627420000501',
'longitude': '-73.94470792299451',
'location': {'latitude': '40.6627420000501',
'longitude': '-73.94470792299451',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789041',
'created_date': '2025-01-17T00:55:15.000',
'closed_date': '2025-01-17T01:18:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11102',
'incident_address': '14-52 28 AVENUE',
'street_name': '28 AVENUE',
'cross_street_1': '14 STREET',
'cross_street_2': '21 STREET',
'intersection_street_1': '14 STREET',
'intersection_street_2': '21 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '28 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:18:31.000',
'community_board': '01 QUEENS',
'bbl': '4005380041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004011',
'y_coordinate_state_plane': '220540',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77198561475821',
'longitude': '-73.92865585848409',
'location': {'latitude': '40.77198561475821',
'longitude': '-73.92865585848409',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781698',
'created_date': '2025-01-17T00:55:11.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Root/Sewer/Sidewalk Condition',
'descriptor': 'Trees and Sidewalks Program',
'location_type': 'Street',
'incident_zip': '11204',
'incident_address': '1550 WEST 10 STREET',
'street_name': 'WEST 10 STREET',
'cross_street_1': 'AVENUE O',
'cross_street_2': 'AVENUE P',
'intersection_street_1': 'AVENUE O',
'intersection_street_2': 'AVENUE P',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 10 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3065960027',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988769',
'y_coordinate_state_plane': '161123',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60892062672974',
'longitude': '-73.98372467798701',
'location': {'latitude': '40.60892062672974',
'longitude': '-73.98372467798701',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790846',
'created_date': '2025-01-17T00:54:00.000',
'closed_date': '2025-01-17T01:35:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11101',
'incident_address': '51-01 2 STREET',
'street_name': '2 STREET',
'cross_street_1': '51 AVENUE',
'cross_street_2': 'BORDEN AVENUE',
'intersection_street_1': '51 AVENUE',
'intersection_street_2': 'BORDEN AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '2 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:35:31.000',
'community_board': '02 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '995708',
'y_coordinate_state_plane': '209891',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74277149319882',
'longitude': '-73.95865074311972',
'location': {'latitude': '40.74277149319882',
'longitude': '-73.95865074311972',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791448',
'created_date': '2025-01-17T00:53:59.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10466',
'incident_address': '655 EAST 234 STREET',
'street_name': 'EAST 234 STREET',
'cross_street_1': 'CARPENTER AVENUE',
'cross_street_2': 'WHITE PLAINS ROAD',
'intersection_street_1': 'CARPENTER AVENUE',
'intersection_street_2': 'WHITE PLAINS ROAD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 234 STREET',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049950022',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023366',
'y_coordinate_state_plane': '265264',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8946754733025',
'longitude': '-73.8585168127549',
'location': {'latitude': '40.8946754733025',
'longitude': '-73.8585168127549',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784539',
'created_date': '2025-01-17T00:53:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11367',
'incident_address': '72-64 150 STREET',
'street_name': '150 STREET',
'cross_street_1': '72 DRIVE',
'cross_street_2': '73 AVENUE',
'intersection_street_1': '72 DRIVE',
'intersection_street_2': '73 AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '150 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4066810001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035052',
'y_coordinate_state_plane': '203957',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.726345667297174',
'longitude': '-73.81671245975532',
'location': {'latitude': '40.726345667297174',
'longitude': '-73.81671245975532',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783449',
'created_date': '2025-01-17T00:53:40.000',
'closed_date': '2025-01-17T01:10:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10031',
'incident_address': '1833 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 150 STREET',
'cross_street_2': 'WEST 151 STREET',
'intersection_street_1': 'WEST 150 STREET',
'intersection_street_2': 'WEST 151 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:10:44.000',
'community_board': '09 MANHATTAN',
'bbl': '1020650001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999480',
'y_coordinate_state_plane': '241246',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82882688134842',
'longitude': '-73.94496738776525',
'location': {'latitude': '40.82882688134842',
'longitude': '-73.94496738776525',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787339',
'created_date': '2025-01-17T00:51:33.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Passenger',
'location_type': 'Street',
'incident_zip': '11369',
'incident_address': 'LA GUARDIA AIRPORT',
'street_name': 'LA GUARDIA AIRPORT',
'cross_street_1': '94 STREET',
'cross_street_2': 'GRAND CENTRAL PARKWAY ET 7 EB',
'intersection_street_1': '94 STREET',
'intersection_street_2': 'GRAND CENTRAL PARKWAY ET 7 EB',
'address_type': 'UNRECOGNIZED',
'city': 'EAST ELMHURST',
'landmark': 'LA GUARDIA AIRPORT',
'status': 'In Progress',
'community_board': '80 QUEENS',
'bbl': '4009260001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1018236',
'y_coordinate_state_plane': '221443',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'taxi_pick_up_location': 'LA GUARDIA AIRPORT, QUEENS (EAST ELMHURST) ,NY, 11369',
'latitude': '40.77442086598845',
'longitude': '-73.87729410513894',
'location': {'latitude': '40.77442086598845',
'longitude': '-73.87729410513894',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791617',
'created_date': '2025-01-17T00:51:09.000',
'closed_date': '2025-01-17T01:04:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11103',
'incident_address': '32-52 41 STREET',
'street_name': '41 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': '34 AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': '34 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '41 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:04:53.000',
'community_board': '01 QUEENS',
'bbl': '4006760074',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1006643',
'y_coordinate_state_plane': '215234',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75741574540848',
'longitude': '-73.91917109670187',
'location': {'latitude': '40.75741574540848',
'longitude': '-73.91917109670187',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784832',
'created_date': '2025-01-17T00:50:32.000',
'closed_date': '2025-01-17T01:12:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11103',
'incident_address': '25-70 41 STREET',
'street_name': '41 STREET',
'cross_street_1': '25 AVENUE',
'cross_street_2': '28 AVENUE',
'intersection_street_1': '25 AVENUE',
'intersection_street_2': '28 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '41 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:12:29.000',
'community_board': '01 QUEENS',
'bbl': '4006840072',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1008835',
'y_coordinate_state_plane': '218785',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76715649868011',
'longitude': '-73.91124595697188',
'location': {'latitude': '40.76715649868011',
'longitude': '-73.91124595697188',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790449',
'created_date': '2025-01-17T00:47:21.000',
'closed_date': '2025-01-17T01:37:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11224',
'incident_address': '464 NEPTUNE AVENUE',
'street_name': 'NEPTUNE AVENUE',
'cross_street_1': 'OCEAN PARKWAY',
'cross_street_2': 'WEST 5 STREET',
'intersection_street_1': 'OCEAN PARKWAY',
'intersection_street_2': 'WEST 5 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NEPTUNE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:37:26.000',
'community_board': '13 BROOKLYN',
'bbl': '3072740001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992294',
'y_coordinate_state_plane': '150504',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.579771110510144',
'longitude': '-73.97104192226583',
'location': {'latitude': '40.579771110510144',
'longitude': '-73.97104192226583',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784350',
'created_date': '2025-01-17T00:47:09.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11377',
'incident_address': '53-02 32 AVENUE',
'street_name': '32 AVENUE',
'cross_street_1': '53 PLACE',
'cross_street_2': '54 STREET',
'intersection_street_1': '53 PLACE',
'intersection_street_2': '54 STREET',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '32 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:40:36.000',
'community_board': '01 QUEENS',
'bbl': '4011550001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009785',
'y_coordinate_state_plane': '214486',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.755354161256385',
'longitude': '-73.90783270416958',
'location': {'latitude': '40.755354161256385',
'longitude': '-73.90783270416958',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787327',
'created_date': '2025-01-17T00:46:52.000',
'closed_date': '2025-01-17T01:42:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10471',
'incident_address': '548 WEST 256 STREET',
'street_name': 'WEST 256 STREET',
'cross_street_1': 'RIVERDALE AVENUE',
'cross_street_2': 'NETHERLAND AVENUE',
'intersection_street_1': 'RIVERDALE AVENUE',
'intersection_street_2': 'NETHERLAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 256 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:42:14.000',
'community_board': '08 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010225',
'y_coordinate_state_plane': '268746',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.90428091154132',
'longitude': '-73.90603446070851',
'location': {'latitude': '40.90428091154132',
'longitude': '-73.90603446070851',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784777',
'created_date': '2025-01-17T00:46:04.000',
'closed_date': '2025-01-17T01:06:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10016',
'incident_address': '629 2 AVENUE',
'street_name': '2 AVENUE',
'cross_street_1': 'EAST 34 STREET',
'cross_street_2': 'EAST 35 STREET',
'intersection_street_1': 'EAST 34 STREET',
'intersection_street_2': 'EAST 35 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '2 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
'resolution_action_updated_date': '2025-01-17T01:06:04.000',
'community_board': '06 MANHATTAN',
'bbl': '1009150030',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990982',
'y_coordinate_state_plane': '210715',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.74503802751723',
'longitude': '-73.97570495194192',
'location': {'latitude': '40.74503802751723',
'longitude': '-73.97570495194192',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791562',
'created_date': '2025-01-17T00:46:03.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11105',
'incident_address': '20-54 43 STREET',
'street_name': '43 STREET',
'cross_street_1': '20 ROAD',
'cross_street_2': '21 AVENUE',
'intersection_street_1': '20 ROAD',
'intersection_street_2': '21 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '43 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4007870066',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1011689',
'y_coordinate_state_plane': '221199',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77377389783952',
'longitude': '-73.90093291486869',
'location': {'latitude': '40.77377389783952',
'longitude': '-73.90093291486869',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786191',
'created_date': '2025-01-17T00:45:57.000',
'closed_date': '2025-01-17T01:41:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10471',
'incident_address': '5535 NETHERLAND AVENUE',
'street_name': 'NETHERLAND AVENUE',
'cross_street_1': 'BEND',
'cross_street_2': 'WEST 256 STREET',
'intersection_street_1': 'BEND',
'intersection_street_2': 'WEST 256 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'NETHERLAND AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:41:41.000',
'community_board': '08 BRONX',
'bbl': '2059500430',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010114',
'y_coordinate_state_plane': '268519',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.903658196293335',
'longitude': '-73.90643688418457',
'location': {'latitude': '40.903658196293335',
'longitude': '-73.90643688418457',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786224',
'created_date': '2025-01-17T00:45:30.000',
'closed_date': '2025-01-17T01:33:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11229',
'incident_address': '1745 EAST 12 STREET',
'street_name': 'EAST 12 STREET',
'cross_street_1': 'KINGS HIGHWAY',
'cross_street_2': 'AVENUE R',
'intersection_street_1': 'KINGS HIGHWAY',
'intersection_street_2': 'AVENUE R',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 12 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:33:45.000',
'community_board': '15 BROOKLYN',
'bbl': '3067950075',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995128',
'y_coordinate_state_plane': '160337',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60675769327318',
'longitude': '-73.96082380572435',
'location': {'latitude': '40.60675769327318',
'longitude': '-73.96082380572435',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783219',
'created_date': '2025-01-17T00:45:02.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Panhandling',
'descriptor': 'N/A',
'location_type': 'Residential Building/House',
'incident_zip': '10026',
'incident_address': '301 WEST 112 STREET',
'street_name': 'WEST 112 STREET',
'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'cross_street_2': 'MANHATTAN AVENUE',
'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_2': 'MANHATTAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 112 STREET',
'status': 'In Progress',
'community_board': '10 MANHATTAN',
'bbl': '1018470018',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996030',
'y_coordinate_state_plane': '231454',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.801955860354255',
'longitude': '-73.95745092228412',
'location': {'latitude': '40.801955860354255',
'longitude': '-73.95745092228412',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781785',
'created_date': '2025-01-17T00:44:55.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11691',
'incident_address': '433 BEACH 40 STREET',
'street_name': 'BEACH 40 STREET',
'cross_street_1': 'BEACH CHANNEL DRIVE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'BEACH CHANNEL DRIVE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'BEACH 40 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:26:16.000',
'community_board': '14 QUEENS',
'bbl': '4159600060',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1047446',
'y_coordinate_state_plane': '156606',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.596298225387066',
'longitude': '-73.7724403696525',
'location': {'latitude': '40.596298225387066',
'longitude': '-73.7724403696525',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781728',
'created_date': '2025-01-17T00:44:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11235',
'incident_address': '2850 HARING STREET',
'street_name': 'HARING STREET',
'cross_street_1': 'DUNNE PLACE',
'cross_street_2': 'EMMONS AVENUE',
'intersection_street_1': 'DUNNE PLACE',
'intersection_street_2': 'EMMONS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HARING STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3087960169',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001597',
'y_coordinate_state_plane': '152288',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58465451341418',
'longitude': '-73.93754692443149',
'location': {'latitude': '40.58465451341418',
'longitude': '-73.93754692443149',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788965',
'created_date': '2025-01-17T00:44:25.000',
'closed_date': '2025-01-17T01:27:18.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1324 OGDEN AVENUE',
'street_name': 'OGDEN AVENUE',
'cross_street_1': 'WEST 169 STREET',
'cross_street_2': 'WEST 170 STREET',
'intersection_street_1': 'WEST 169 STREET',
'intersection_street_2': 'WEST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'OGDEN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:27:21.000',
'community_board': '04 BRONX',
'bbl': '2025220005',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004955',
'y_coordinate_state_plane': '245568',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'location': {'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784749',
'created_date': '2025-01-17T00:43:24.000',
'closed_date': '2025-01-17T01:27:32.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Car/Truck Music',
'location_type': 'Store/Commercial',
'incident_zip': '10451',
'incident_address': '88 EAST 161 STREET',
'street_name': 'EAST 161 STREET',
'cross_street_1': 'GERARD AVENUE',
'cross_street_2': 'WALTON AVENUE',
'intersection_street_1': 'GERARD AVENUE',
'intersection_street_2': 'WALTON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 161 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:27:35.000',
'community_board': '04 BRONX',
'bbl': '2024740046',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005145',
'y_coordinate_state_plane': '240720',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82737157689047',
'longitude': '-73.92449892650774',
'location': {'latitude': '40.82737157689047',
'longitude': '-73.92449892650774',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786121',
'created_date': '2025-01-17T00:43:09.000',
'closed_date': '2025-01-17T00:48:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10032',
'incident_address': '2145 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 166 STREET',
'cross_street_2': 'WEST 167 STREET',
'intersection_street_1': 'WEST 166 STREET',
'intersection_street_2': 'WEST 167 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:48:36.000',
'community_board': '12 MANHATTAN',
'bbl': '1021110083',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001495',
'y_coordinate_state_plane': '244885',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'location': {'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784773',
'created_date': '2025-01-17T00:41:51.000',
'closed_date': '2025-01-17T00:59:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11103',
'incident_address': '41-17 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': '41 STREET',
'cross_street_2': '42 STREET',
'intersection_street_1': '41 STREET',
'intersection_street_2': '42 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:59:48.000',
'community_board': '01 QUEENS',
'bbl': '4006790001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007089',
'y_coordinate_state_plane': '215559',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75830664617634',
'longitude': '-73.91756012932159',
'location': {'latitude': '40.75830664617634',
'longitude': '-73.91756012932159',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783136',
'created_date': '2025-01-17T00:41:20.000',
'agency': 'DOE',
'agency_name': 'Department of Education',
'complaint_type': 'School Maintenance',
'descriptor': 'Rodents/Mice',
'location_type': 'School',
'incident_zip': '11225',
'incident_address': '976 PRESIDENT STREET',
'street_name': 'PRESIDENT STREET',
'cross_street_1': 'CLASSON AVENUE',
'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
'intersection_street_1': 'CLASSON AVENUE',
'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'PRESIDENT STREET',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3011880001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995133',
'y_coordinate_state_plane': '183145',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'P.S. 241 Emma L. Johnston',
'park_borough': 'BROOKLYN',
'latitude': '40.669360769192444',
'longitude': '-73.96076901123807',
'location': {'latitude': '40.669360769192444',
'longitude': '-73.96076901123807',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785941',
'created_date': '2025-01-17T00:40:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11235',
'incident_address': '2829 BROWN STREET',
'street_name': 'BROWN STREET',
'cross_street_1': 'GUNNISON COURT',
'cross_street_2': 'EMMONS AVENUE',
'intersection_street_1': 'GUNNISON COURT',
'intersection_street_2': 'EMMONS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BROWN STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3088007501',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001780',
'y_coordinate_state_plane': '152206',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58442907974878',
'longitude': '-73.93688829647114',
'location': {'latitude': '40.58442907974878',
'longitude': '-73.93688829647114',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787503',
'created_date': '2025-01-17T00:40:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10466',
'incident_address': '730 EAST 236 STREET',
'street_name': 'EAST 236 STREET',
'cross_street_1': 'FURMAN AVENUE',
'cross_street_2': 'BYRON AVENUE',
'intersection_street_1': 'FURMAN AVENUE',
'intersection_street_2': 'BYRON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 236 STREET',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049990068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024355',
'y_coordinate_state_plane': '265466',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.89522545852203',
'longitude': '-73.85493838071939',
'location': {'latitude': '40.89522545852203',
'longitude': '-73.85493838071939',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782118',
'created_date': '2025-01-17T00:39:48.000',
'closed_date': '2025-01-17T01:27:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1324 OGDEN AVENUE',
'street_name': 'OGDEN AVENUE',
'cross_street_1': 'WEST 169 STREET',
'cross_street_2': 'WEST 170 STREET',
'intersection_street_1': 'WEST 169 STREET',
'intersection_street_2': 'WEST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'OGDEN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:27:10.000',
'community_board': '04 BRONX',
'bbl': '2025220005',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004955',
'y_coordinate_state_plane': '245568',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'location': {'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784842',
'created_date': '2025-01-17T00:39:41.000',
'closed_date': '2025-01-17T01:26:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10032',
'incident_address': '601 WEST 160 STREET',
'street_name': 'WEST 160 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'FORT WASHINGTON AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'FORT WASHINGTON AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 160 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:26:45.000',
'community_board': '12 MANHATTAN',
'bbl': '1021370011',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999815',
'y_coordinate_state_plane': '243874',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83603939998165',
'longitude': '-73.94375078965372',
'location': {'latitude': '40.83603939998165',
'longitude': '-73.94375078965372',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791108',
'created_date': '2025-01-17T00:39:13.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Posting',
'descriptor': 'Sticker or Decal',
'location_type': 'Sidewalk',
'incident_zip': '11106',
'incident_address': '29-15 36 AVENUE',
'street_name': '36 AVENUE',
'cross_street_1': '29 STREET',
'cross_street_2': '30 STREET',
'intersection_street_1': '29 STREET',
'intersection_street_2': '30 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '36 AVENUE',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4003410045',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003326',
'y_coordinate_state_plane': '215169',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.757245115717325',
'longitude': '-73.93114419016902',
'location': {'latitude': '40.757245115717325',
'longitude': '-73.93114419016902',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782066',
'created_date': '2025-01-17T00:39:09.000',
'closed_date': '2025-01-17T01:38:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11375',
'incident_address': '108-07 72 AVENUE',
'street_name': '72 AVENUE',
'cross_street_1': 'AUSTIN STREET',
'cross_street_2': 'QUEENS BOULEVARD',
'intersection_street_1': 'AUSTIN STREET',
'intersection_street_2': 'QUEENS BOULEVARD',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': '72 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:38:22.000',
'community_board': '06 QUEENS',
'bbl': '4032570024',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027907',
'y_coordinate_state_plane': '201465',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.71954389017692',
'longitude': '-73.84250686995416',
'location': {'latitude': '40.71954389017692',
'longitude': '-73.84250686995416',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787146',
'created_date': '2025-01-17T00:38:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '89-88 COOPER AVENUE',
'street_name': 'COOPER AVENUE',
'cross_street_1': 'METROPOLITAN AVENUE',
'cross_street_2': 'WOODHAVEN BOULEVARD',
'intersection_street_1': 'METROPOLITAN AVENUE',
'intersection_street_2': 'WOODHAVEN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': 'COOPER AVENUE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4031760034',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022938',
'y_coordinate_state_plane': '199066',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Van',
'latitude': '40.712982343977785',
'longitude': '-73.86044634996371',
'location': {'latitude': '40.712982343977785',
'longitude': '-73.86044634996371',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787604',
'created_date': '2025-01-17T00:38:34.000',
'closed_date': '2025-01-17T01:26:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1324 OGDEN AVENUE',
'street_name': 'OGDEN AVENUE',
'cross_street_1': 'WEST 169 STREET',
'cross_street_2': 'WEST 170 STREET',
'intersection_street_1': 'WEST 169 STREET',
'intersection_street_2': 'WEST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'OGDEN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:26:50.000',
'community_board': '04 BRONX',
'bbl': '2025220005',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004955',
'y_coordinate_state_plane': '245568',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'location': {'latitude': '40.84067838149263',
'longitude': '-73.92517049953447',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781729',
'created_date': '2025-01-17T00:38:23.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11377',
'incident_address': '47-16 48 STREET',
'street_name': '48 STREET',
'cross_street_1': '47 AVENUE',
'cross_street_2': '48 AVENUE',
'intersection_street_1': '47 AVENUE',
'intersection_street_2': '48 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '48 STREET',
'status': 'In Progress',
'community_board': '02 QUEENS',
'bbl': '4022850037',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007152',
'y_coordinate_state_plane': '209055',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.740454650738144',
'longitude': '-73.91735487374173',
'location': {'latitude': '40.740454650738144',
'longitude': '-73.91735487374173',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788686',
'created_date': '2025-01-17T00:38:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11214',
'incident_address': '2040 21 DRIVE',
'street_name': '21 DRIVE',
'cross_street_1': 'BAY 25 STREET',
'cross_street_2': '20 LANE',
'intersection_street_1': 'BAY 25 STREET',
'intersection_street_2': '20 LANE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '21 DRIVE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3064670012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983480',
'y_coordinate_state_plane': '157331',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59851347774566',
'longitude': '-74.00277274719411',
'location': {'latitude': '40.59851347774566',
'longitude': '-74.00277274719411',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791434',
'created_date': '2025-01-17T00:37:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10453',
'incident_address': '1901 LORING PLACE SOUTH',
'street_name': 'LORING PLACE SOUTH',
'cross_street_1': 'WEST BURNSIDE AVENUE',
'cross_street_2': 'WEST 179 STREET',
'intersection_street_1': 'WEST BURNSIDE AVENUE',
'intersection_street_2': 'WEST 179 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'LORING PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:04:07.000',
'community_board': '05 BRONX',
'bbl': '2032280001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007865',
'y_coordinate_state_plane': '250427',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.854007596223',
'longitude': '-73.91463642360853',
'location': {'latitude': '40.854007596223',
'longitude': '-73.91463642360853',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785831',
'created_date': '2025-01-17T00:37:13.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11357',
'incident_address': '166-31 9 AVENUE',
'street_name': '9 AVENUE',
'cross_street_1': '166 STREET',
'cross_street_2': 'TOTTEN STREET',
'intersection_street_1': '166 STREET',
'intersection_street_2': 'TOTTEN STREET',
'address_type': 'ADDRESS',
'city': 'WHITESTONE',
'landmark': '9 AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4046030048',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1040718',
'y_coordinate_state_plane': '228198',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.79284646456215',
'longitude': '-73.79606666919048',
'location': {'latitude': '40.79284646456215',
'longitude': '-73.79606666919048',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786186',
'created_date': '2025-01-17T00:35:41.000',
'closed_date': '2025-01-17T00:39:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10456',
'incident_address': '1465 WASHINGTON AVENUE',
'street_name': 'WASHINGTON AVENUE',
'cross_street_1': 'ST PAULS PLACE',
'cross_street_2': 'EAST 171 STREET',
'intersection_street_1': 'ST PAULS PLACE',
'intersection_street_2': 'EAST 171 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WASHINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:39:19.000',
'community_board': '03 BRONX',
'bbl': '2029020036',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010885',
'y_coordinate_state_plane': '244212',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'location': {'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788875',
'created_date': '2025-01-17T00:34:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11435',
'incident_address': '84-70 MAIN STREET',
'street_name': 'MAIN STREET',
'cross_street_1': '141 STREET',
'cross_street_2': '139 STREET',
'intersection_street_1': '141 STREET',
'intersection_street_2': '139 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': 'MAIN STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4096650001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034629',
'y_coordinate_state_plane': '198593',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.711625228323726',
'longitude': '-73.81827873600422',
'location': {'latitude': '40.711625228323726',
'longitude': '-73.81827873600422',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791704',
'created_date': '2025-01-17T00:34:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '1080 ANDERSON AVENUE',
'street_name': 'ANDERSON AVENUE',
'cross_street_1': 'WEST 165 STREET',
'cross_street_2': 'WEST 166 STREET',
'intersection_street_1': 'WEST 165 STREET',
'intersection_street_2': 'WEST 166 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'ANDERSON AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025050006',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004806',
'y_coordinate_state_plane': '243197',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83417102437764',
'longitude': '-73.92571626362835',
'location': {'latitude': '40.83417102437764',
'longitude': '-73.92571626362835',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787294',
'created_date': '2025-01-17T00:34:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10031',
'incident_address': '3480 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 142 STREET',
'cross_street_2': 'WEST 143 STREET',
'intersection_street_1': 'WEST 142 STREET',
'intersection_street_2': 'WEST 143 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:00:14.000',
'community_board': '09 MANHATTAN',
'bbl': '1020740001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997598',
'y_coordinate_state_plane': '239705',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.824600320883576',
'longitude': '-73.95177093639812',
'location': {'latitude': '40.824600320883576',
'longitude': '-73.95177093639812',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784862',
'created_date': '2025-01-17T00:33:28.000',
'closed_date': '2025-01-17T00:59:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10021',
'incident_address': '231 EAST 76 STREET',
'street_name': 'EAST 76 STREET',
'cross_street_1': '3 AVENUE',
'cross_street_2': '2 AVENUE',
'intersection_street_1': '3 AVENUE',
'intersection_street_2': '2 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 76 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:59:38.000',
'community_board': '08 MANHATTAN',
'bbl': '1014310016',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '995944',
'y_coordinate_state_plane': '220520',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'SUV',
'latitude': '40.771945072628284',
'longitude': '-73.95778058686089',
'location': {'latitude': '40.771945072628284',
'longitude': '-73.95778058686089',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783051',
'created_date': '2025-01-17T00:33:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11433',
'incident_address': '105-27 170 STREET',
'street_name': '170 STREET',
'cross_street_1': '105 AVENUE',
'cross_street_2': '107 AVENUE',
'intersection_street_1': '105 AVENUE',
'intersection_street_2': '107 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '170 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:18:02.000',
'community_board': '12 QUEENS',
'bbl': '4102390008',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1043309',
'y_coordinate_state_plane': '194712',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.700919148403855',
'longitude': '-73.78700340418567',
'location': {'latitude': '40.700919148403855',
'longitude': '-73.78700340418567',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788970',
'created_date': '2025-01-17T00:32:33.000',
'closed_date': '2025-01-17T01:04:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10012',
'incident_address': '19 CLEVELAND PLACE',
'street_name': 'CLEVELAND PLACE',
'cross_street_1': 'KENMARE STREET',
'cross_street_2': 'LAFAYETTE STREET',
'intersection_street_1': 'KENMARE STREET',
'intersection_street_2': 'LAFAYETTE STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'CLEVELAND PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:04:39.000',
'community_board': '02 MANHATTAN',
'bbl': '1004810009',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984989',
'y_coordinate_state_plane': '202181',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72161682745682',
'longitude': '-73.99733396750808',
'location': {'latitude': '40.72161682745682',
'longitude': '-73.99733396750808',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787581',
'created_date': '2025-01-17T00:32:07.000',
'closed_date': '2025-01-17T00:39:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10456',
'incident_address': '1465 WASHINGTON AVENUE',
'street_name': 'WASHINGTON AVENUE',
'cross_street_1': 'ST PAULS PLACE',
'cross_street_2': 'EAST 171 STREET',
'intersection_street_1': 'ST PAULS PLACE',
'intersection_street_2': 'EAST 171 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WASHINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:39:19.000',
'community_board': '03 BRONX',
'bbl': '2029020036',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010885',
'y_coordinate_state_plane': '244212',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'location': {'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784126',
'created_date': '2025-01-17T00:32:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Encampment',
'descriptor': 'N/A',
'location_type': 'Subway',
'status': 'In Progress',
'community_board': 'Unspecified BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999759',
'y_coordinate_state_plane': '199616',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'bridge_highway_name': 'L',
'bridge_highway_direction': 'L to Canarsie - Rockaway Parkway',
'bridge_highway_segment': 'Platform',
'latitude': '40.71456295602985',
'longitude': '-73.94405531133282',
'location': {'latitude': '40.71456295602985',
'longitude': '-73.94405531133282',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789972',
'created_date': '2025-01-17T00:31:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11103',
'incident_address': '28-15 42 STREET',
'street_name': '42 STREET',
'cross_street_1': '28 AVENUE',
'cross_street_2': '30 AVENUE',
'intersection_street_1': '28 AVENUE',
'intersection_street_2': '30 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '42 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:09:50.000',
'community_board': '01 QUEENS',
'bbl': '4006980015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1008545',
'y_coordinate_state_plane': '217807',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.764472944718136',
'longitude': '-73.91229641708922',
'location': {'latitude': '40.764472944718136',
'longitude': '-73.91229641708922',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783115',
'created_date': '2025-01-17T00:31:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10466',
'incident_address': '730 EAST 236 STREET',
'street_name': 'EAST 236 STREET',
'cross_street_1': 'FURMAN AVENUE',
'cross_street_2': 'BYRON AVENUE',
'intersection_street_1': 'FURMAN AVENUE',
'intersection_street_2': 'BYRON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 236 STREET',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049990068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024355',
'y_coordinate_state_plane': '265466',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.89522545852203',
'longitude': '-73.85493838071939',
'location': {'latitude': '40.89522545852203',
'longitude': '-73.85493838071939',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786293',
'created_date': '2025-01-17T00:30:38.000',
'closed_date': '2025-01-17T00:39:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10456',
'incident_address': '1465 WASHINGTON AVENUE',
'street_name': 'WASHINGTON AVENUE',
'cross_street_1': 'ST PAULS PLACE',
'cross_street_2': 'EAST 171 STREET',
'intersection_street_1': 'ST PAULS PLACE',
'intersection_street_2': 'EAST 171 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WASHINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:39:15.000',
'community_board': '03 BRONX',
'bbl': '2029020036',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010885',
'y_coordinate_state_plane': '244212',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'location': {'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787392',
'created_date': '2025-01-17T00:30:36.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '149-27 HOLLYWOOD AVENUE',
'street_name': 'HOLLYWOOD AVENUE',
'cross_street_1': '149 STREET',
'cross_street_2': '156 STREET',
'intersection_street_1': '149 STREET',
'intersection_street_2': '156 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': 'HOLLYWOOD AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4054330047',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036301',
'y_coordinate_state_plane': '214325',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75479592235159',
'longitude': '-73.81212600337203',
'location': {'latitude': '40.75479592235159',
'longitude': '-73.81212600337203',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791787',
'created_date': '2025-01-17T00:29:53.000',
'closed_date': '2025-01-17T00:59:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10029',
'incident_address': '1830 LEXINGTON AVENUE',
'street_name': 'LEXINGTON AVENUE',
'cross_street_1': 'EAST 112 STREET',
'cross_street_2': 'EAST 115 STREET',
'intersection_street_1': 'EAST 112 STREET',
'intersection_street_2': 'EAST 115 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'LEXINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:59:54.000',
'community_board': '11 MANHATTAN',
'bbl': '1016400001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000049',
'y_coordinate_state_plane': '229591',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79683616244716',
'longitude': '-73.9429387775481',
'location': {'latitude': '40.79683616244716',
'longitude': '-73.9429387775481',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785910',
'created_date': '2025-01-17T00:29:22.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11225',
'incident_address': '2111 BEEKMAN PLACE',
'street_name': 'BEEKMAN PLACE',
'cross_street_1': 'DEAD END',
'cross_street_2': 'FLATBUSH AVENUE',
'intersection_street_1': 'DEAD END',
'intersection_street_2': 'FLATBUSH AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BEEKMAN PLACE',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3050260075',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994992',
'y_coordinate_state_plane': '179735',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66000124850346',
'longitude': '-73.96128272045006',
'location': {'latitude': '40.66000124850346',
'longitude': '-73.96128272045006',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789028',
'created_date': '2025-01-17T00:29:12.000',
'closed_date': '2025-01-17T01:50:02.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:50:05.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784384',
'created_date': '2025-01-17T00:29:06.000',
'closed_date': '2025-01-17T00:57:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '64 HALE AVENUE',
'street_name': 'HALE AVENUE',
'cross_street_1': 'FORCE TUBE AVENUE',
'cross_street_2': 'RIDGEWOOD AVENUE',
'intersection_street_1': 'FORCE TUBE AVENUE',
'intersection_street_2': 'RIDGEWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HALE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:57:28.000',
'community_board': '05 BROOKLYN',
'bbl': '3039130035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1017304',
'y_coordinate_state_plane': '188409',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'location': {'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782123',
'created_date': '2025-01-17T00:28:24.000',
'closed_date': '2025-01-17T00:39:22.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11103',
'incident_address': '36-06 30 AVENUE',
'street_name': '30 AVENUE',
'cross_street_1': '36 STREET',
'cross_street_2': '37 STREET',
'intersection_street_1': '36 STREET',
'intersection_street_2': '37 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '30 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:39:25.000',
'community_board': '01 QUEENS',
'bbl': '4006510143',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007175',
'y_coordinate_state_plane': '217976',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76494046458546',
'longitude': '-73.91724146058725',
'location': {'latitude': '40.76494046458546',
'longitude': '-73.91724146058725',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786187',
'created_date': '2025-01-17T00:28:10.000',
'closed_date': '2025-01-17T00:44:59.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10456',
'incident_address': '1465 WASHINGTON AVENUE',
'street_name': 'WASHINGTON AVENUE',
'cross_street_1': 'ST PAULS PLACE',
'cross_street_2': 'EAST 171 STREET',
'intersection_street_1': 'ST PAULS PLACE',
'intersection_street_2': 'EAST 171 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WASHINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:45:04.000',
'community_board': '03 BRONX',
'bbl': '2029020036',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010885',
'y_coordinate_state_plane': '244212',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'location': {'latitude': '40.83694066292417',
'longitude': '-73.90374441298103',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784336',
'created_date': '2025-01-17T00:27:18.000',
'closed_date': '2025-01-17T00:57:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '64 HALE AVENUE',
'street_name': 'HALE AVENUE',
'cross_street_1': 'FORCE TUBE AVENUE',
'cross_street_2': 'RIDGEWOOD AVENUE',
'intersection_street_1': 'FORCE TUBE AVENUE',
'intersection_street_2': 'RIDGEWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HALE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:57:28.000',
'community_board': '05 BROOKLYN',
'bbl': '3039130035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1017304',
'y_coordinate_state_plane': '188409',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'location': {'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782115',
'created_date': '2025-01-17T00:27:17.000',
'closed_date': '2025-01-17T01:35:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10458',
'incident_address': '2974 PERRY AVENUE',
'street_name': 'PERRY AVENUE',
'cross_street_1': 'BEDFORD PARK BOULEVARD',
'cross_street_2': 'EAST 201 STREET',
'intersection_street_1': 'BEDFORD PARK BOULEVARD',
'intersection_street_2': 'EAST 201 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'PERRY AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:35:32.000',
'community_board': '07 BRONX',
'bbl': '2032920023',
'borough': 'BRONX',
'x_coordinate_state_plane': '1016373',
'y_coordinate_state_plane': '256341',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.870212871785306',
'longitude': '-73.8838533643113',
'location': {'latitude': '40.870212871785306',
'longitude': '-73.8838533643113',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784534',
'created_date': '2025-01-17T00:26:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '208 LINWOOD STREET',
'street_name': 'LINWOOD STREET',
'cross_street_1': 'ARLINGTON AVENUE',
'cross_street_2': 'FULTON STREET',
'intersection_street_1': 'ARLINGTON AVENUE',
'intersection_street_2': 'FULTON STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LINWOOD STREET',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1016443',
'y_coordinate_state_plane': '187316',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68075737257024',
'longitude': '-73.88393095795244',
'location': {'latitude': '40.68075737257024',
'longitude': '-73.88393095795244',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783918',
'created_date': '2025-01-17T00:26:26.000',
'closed_date': '2025-01-17T01:01:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '11101',
'incident_address': '27-10 44 DRIVE',
'street_name': '44 DRIVE',
'cross_street_1': 'JACKSON AVENUE',
'cross_street_2': 'THOMSON AVENUE',
'intersection_street_1': 'JACKSON AVENUE',
'intersection_street_2': 'THOMSON AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '44 DRIVE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:02:03.000',
'community_board': '02 QUEENS',
'bbl': '4000810005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1000260',
'y_coordinate_state_plane': '211385',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Truck',
'latitude': '40.74686507916748',
'longitude': '-73.94222008171747',
'location': {'latitude': '40.74686507916748',
'longitude': '-73.94222008171747',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784540',
'created_date': '2025-01-17T00:25:33.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11211',
'incident_address': '25 FILLMORE PLACE',
'street_name': 'FILLMORE PLACE',
'cross_street_1': 'DRIGGS AVENUE',
'cross_street_2': 'ROEBLING STREET',
'intersection_street_1': 'DRIGGS AVENUE',
'intersection_street_2': 'ROEBLING STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FILLMORE PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:52:11.000',
'community_board': '01 BROOKLYN',
'bbl': '3023670028',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995783',
'y_coordinate_state_plane': '199394',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.71395969548049',
'longitude': '-73.9583980762652',
'location': {'latitude': '40.71395969548049',
'longitude': '-73.9583980762652',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787646',
'created_date': '2025-01-17T00:25:23.000',
'closed_date': '2025-01-17T00:47:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11235',
'incident_address': '1151 BRIGHTON BEACH AVENUE',
'street_name': 'BRIGHTON BEACH AVENUE',
'cross_street_1': 'BRIGHTON 14 STREET',
'cross_street_2': 'BRIGHTON 15 STREET',
'intersection_street_1': 'BRIGHTON 14 STREET',
'intersection_street_2': 'BRIGHTON 15 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHTON BEACH AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:47:19.000',
'community_board': '13 BROOKLYN',
'bbl': '3087177501',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996667',
'y_coordinate_state_plane': '149686',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57752081545611',
'longitude': '-73.95530080237096',
'location': {'latitude': '40.57752081545611',
'longitude': '-73.95530080237096',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783028',
'created_date': '2025-01-17T00:25:15.000',
'closed_date': '2025-01-17T00:57:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '64 HALE AVENUE',
'street_name': 'HALE AVENUE',
'cross_street_1': 'FORCE TUBE AVENUE',
'cross_street_2': 'RIDGEWOOD AVENUE',
'intersection_street_1': 'FORCE TUBE AVENUE',
'intersection_street_2': 'RIDGEWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HALE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:57:29.000',
'community_board': '05 BROOKLYN',
'bbl': '3039130035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1017304',
'y_coordinate_state_plane': '188409',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'location': {'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783153',
'created_date': '2025-01-17T00:25:09.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10463',
'incident_address': '432 WEST 238 STREET',
'street_name': 'WEST 238 STREET',
'cross_street_1': 'WALDO AVENUE',
'cross_street_2': 'GREYSTONE AVENUE',
'intersection_street_1': 'WALDO AVENUE',
'intersection_street_2': 'GREYSTONE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 238 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:01:30.000',
'community_board': '08 BRONX',
'bbl': '2057702003',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010703',
'y_coordinate_state_plane': '262493',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88711700850661',
'longitude': '-73.9043299842057',
'location': {'latitude': '40.88711700850661',
'longitude': '-73.9043299842057',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782171',
'created_date': '2025-01-17T00:24:43.000',
'closed_date': '2025-01-17T01:19:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11233',
'incident_address': '218 MACDOUGAL STREET',
'street_name': 'MACDOUGAL STREET',
'cross_street_1': 'THOMAS S BOYLAND STREET',
'cross_street_2': 'ROCKAWAY AVENUE',
'intersection_street_1': 'THOMAS S BOYLAND STREET',
'intersection_street_2': 'ROCKAWAY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MAC DOUGAL STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:19:45.000',
'community_board': '16 BROOKLYN',
'bbl': '3015330034',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008668',
'y_coordinate_state_plane': '187085',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68014819266674',
'longitude': '-73.91196385466242',
'location': {'latitude': '40.68014819266674',
'longitude': '-73.91196385466242',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788678',
'created_date': '2025-01-17T00:24:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11103',
'incident_address': '30-74 49 STREET',
'street_name': '49 STREET',
'cross_street_1': '30 AVENUE',
'cross_street_2': '31 AVENUE',
'intersection_street_1': '30 AVENUE',
'intersection_street_2': '31 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '49 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:41:58.000',
'community_board': '01 QUEENS',
'bbl': '4007390076',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009420',
'y_coordinate_state_plane': '215768',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.758873968834855',
'longitude': '-73.90914535294077',
'location': {'latitude': '40.758873968834855',
'longitude': '-73.90914535294077',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784828',
'created_date': '2025-01-17T00:24:06.000',
'closed_date': '2025-01-17T01:06:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10021',
'incident_address': '503 EAST 73 STREET',
'street_name': 'EAST 73 STREET',
'cross_street_1': 'YORK AVENUE',
'cross_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
'intersection_street_1': 'YORK AVENUE',
'intersection_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 73 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:06:21.000',
'community_board': '08 MANHATTAN',
'bbl': '1014850005',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997315',
'y_coordinate_state_plane': '218852',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.767364927346776',
'longitude': '-73.95283404275959',
'location': {'latitude': '40.767364927346776',
'longitude': '-73.95283404275959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787674',
'created_date': '2025-01-17T00:24:05.000',
'closed_date': '2025-01-17T00:41:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10014',
'incident_address': '169 WEST 4 STREET',
'street_name': 'WEST 4 STREET',
'cross_street_1': 'CORNELIA STREET',
'cross_street_2': 'JONES STREET',
'intersection_street_1': 'CORNELIA STREET',
'intersection_street_2': 'JONES STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 4 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:41:34.000',
'community_board': '02 MANHATTAN',
'bbl': '1005920029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983836',
'y_coordinate_state_plane': '206017',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73214573479022',
'longitude': '-74.00149379140831',
'location': {'latitude': '40.73214573479022',
'longitude': '-74.00149379140831',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783038',
'created_date': '2025-01-17T00:23:53.000',
'closed_date': '2025-01-17T00:57:19.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '64 HALE AVENUE',
'street_name': 'HALE AVENUE',
'cross_street_1': 'FORCE TUBE AVENUE',
'cross_street_2': 'RIDGEWOOD AVENUE',
'intersection_street_1': 'FORCE TUBE AVENUE',
'intersection_street_2': 'RIDGEWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HALE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:57:23.000',
'community_board': '05 BROOKLYN',
'bbl': '3039130035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1017304',
'y_coordinate_state_plane': '188409',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'location': {'latitude': '40.683754232824995',
'longitude': '-73.88082134018052',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788797',
'created_date': '2025-01-17T00:23:17.000',
'closed_date': '2025-01-17T00:26:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11220',
'incident_address': '834 62 STREET',
'street_name': '62 STREET',
'cross_street_1': '8 AVENUE',
'cross_street_2': '9 AVENUE',
'intersection_street_1': '8 AVENUE',
'intersection_street_2': '9 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '62 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:27:00.000',
'community_board': '10 BROOKLYN',
'bbl': '3057280020',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '981506',
'y_coordinate_state_plane': '170198',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63383033611589',
'longitude': '-74.00988629194552',
'location': {'latitude': '40.63383033611589',
'longitude': '-74.00988629194552',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787471',
'created_date': '2025-01-17T00:22:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11211',
'incident_address': '128 LEE AVENUE',
'street_name': 'LEE AVENUE',
'cross_street_1': 'HOOPER STREET',
'cross_street_2': 'HEWES STREET',
'intersection_street_1': 'HOOPER STREET',
'intersection_street_2': 'HEWES STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LEE AVENUE',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3022050032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995919',
'y_coordinate_state_plane': '195726',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.703891727084894',
'longitude': '-73.95791385308057',
'location': {'latitude': '40.703891727084894',
'longitude': '-73.95791385308057',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783079',
'created_date': '2025-01-17T00:21:53.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Report',
'descriptor': 'Driver Report - Passenger',
'incident_zip': '11430',
'incident_address': 'JOHN F KENNEDY AIRPORT',
'street_name': 'JOHN F KENNEDY AIRPORT',
'cross_street_1': 'BEND',
'cross_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
'intersection_street_1': 'BEND',
'intersection_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
'address_type': 'UNRECOGNIZED',
'city': 'JAMAICA',
'landmark': 'JOHN F KENNEDY AIRPORT',
'status': 'In Progress',
'community_board': '83 QUEENS',
'bbl': '4142600001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1043001',
'y_coordinate_state_plane': '175548',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'taxi_pick_up_location': 'JOHN F KENNEDY AIRPORT, QUEENS (JAMAICA) ,NY, 11430',
'latitude': '40.64832048620134',
'longitude': '-73.78828125130184',
'location': {'latitude': '40.64832048620134',
'longitude': '-73.78828125130184',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784629',
'created_date': '2025-01-17T00:21:41.000',
'closed_date': '2025-01-17T01:03:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11426',
'incident_address': '245-31 76 AVENUE',
'street_name': '76 AVENUE',
'cross_street_1': '77 CRESCENT',
'cross_street_2': '77 CRESCENT',
'intersection_street_1': '77 CRESCENT',
'intersection_street_2': '77 CRESCENT',
'address_type': 'ADDRESS',
'city': 'BELLEROSE',
'landmark': '76 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:03:25.000',
'community_board': '13 QUEENS',
'bbl': '4084010096',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1060435',
'y_coordinate_state_plane': '210451',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.743987813248864',
'longitude': '-73.72506059497272',
'location': {'latitude': '40.743987813248864',
'longitude': '-73.72506059497272',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783193',
'created_date': '2025-01-17T00:19:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '11422',
'intersection_street_1': 'BROOKVILLE BOULEVARD',
'intersection_street_2': '149 AVENUE',
'address_type': 'INTERSECTION',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '13 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1054577',
'y_coordinate_state_plane': '177125',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.652564629491025',
'longitude': '-73.74654903024499',
'location': {'latitude': '40.652564629491025',
'longitude': '-73.74654903024499',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787411',
'created_date': '2025-01-17T00:18:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11226',
'incident_address': '179 LINDEN BOULEVARD',
'street_name': 'LINDEN BOULEVARD',
'cross_street_1': 'ROGERS AVENUE',
'cross_street_2': 'NOSTRAND AVENUE',
'intersection_street_1': 'ROGERS AVENUE',
'intersection_street_2': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LINDEN BOULEVARD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:32:42.000',
'community_board': '17 BROOKLYN',
'bbl': '3050850090',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997612',
'y_coordinate_state_plane': '177018',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65254011371671',
'longitude': '-73.95184486671171',
'location': {'latitude': '40.65254011371671',
'longitude': '-73.95184486671171',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785301',
'created_date': '2025-01-17T00:18:31.000',
'closed_date': '2025-01-17T01:38:28.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '89-89 UNION TURNPIKE',
'street_name': 'UNION TURNPIKE',
'cross_street_1': 'MARGARET PLACE',
'cross_street_2': 'LIRR MONTAUK LINE',
'intersection_street_1': 'MARGARET PLACE',
'intersection_street_2': 'LIRR MONTAUK LINE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'UNION TURNPIKE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:38:31.000',
'community_board': '06 QUEENS',
'bbl': '4038860380',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024412',
'y_coordinate_state_plane': '196761',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.70664910607482',
'longitude': '-73.85514316099588',
'location': {'latitude': '40.70664910607482',
'longitude': '-73.85514316099588',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788866',
'created_date': '2025-01-17T00:18:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Street Light Out',
'incident_zip': '10017',
'incident_address': '306 EAST 49 STREET',
'street_name': 'EAST 49 STREET',
'cross_street_1': '1 AVE',
'cross_street_2': '2 AVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'community_board': '06 MANHATTAN',
'bbl': '1013410048',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '992970',
'y_coordinate_state_plane': '213999',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.75405004206811',
'longitude': '-73.96852622070752',
'location': {'latitude': '40.75405004206811',
'longitude': '-73.96852622070752',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782156',
'created_date': '2025-01-17T00:17:59.000',
'closed_date': '2025-01-17T00:54:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11377',
'incident_address': '41-01 71 STREET',
'street_name': '71 STREET',
'cross_street_1': '41 AVENUE',
'cross_street_2': 'WOODSIDE AVENUE',
'intersection_street_1': '41 AVENUE',
'intersection_street_2': 'WOODSIDE AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '71 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:54:04.000',
'community_board': '02 QUEENS',
'bbl': '4013110039',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013590',
'y_coordinate_state_plane': '210545',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74452531113512',
'longitude': '-73.89411595532312',
'location': {'latitude': '40.74452531113512',
'longitude': '-73.89411595532312',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787644',
'created_date': '2025-01-17T00:17:55.000',
'closed_date': '2025-01-17T01:18:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '82 ROCKAWAY PARKWAY',
'street_name': 'ROCKAWAY PARKWAY',
'cross_street_1': 'RUTLAND ROAD',
'cross_street_2': 'WINTHROP STREET',
'intersection_street_1': 'RUTLAND ROAD',
'intersection_street_2': 'WINTHROP STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ROCKAWAY PARKWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:18:49.000',
'community_board': '17 BROOKLYN',
'bbl': '3046150006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1005477',
'y_coordinate_state_plane': '181245',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66412693536968',
'longitude': '-73.92348700401172',
'location': {'latitude': '40.66412693536968',
'longitude': '-73.92348700401172',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781764',
'created_date': '2025-01-17T00:17:32.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10459',
'incident_address': '1323 LOUIS NINE BOULEVARD',
'street_name': 'LOUIS NINE BOULEVARD',
'cross_street_1': 'SOUTHERN BOULEVARD',
'cross_street_2': 'INTERVALE AVENUE',
'intersection_street_1': 'SOUTHERN BOULEVARD',
'intersection_street_2': 'INTERVALE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WILKINS AVENUE',
'status': 'In Progress',
'community_board': '03 BRONX',
'bbl': '2029760020',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014066',
'y_coordinate_state_plane': '242154',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83128188390817',
'longitude': '-73.89225783216867',
'location': {'latitude': '40.83128188390817',
'longitude': '-73.89225783216867',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783209',
'created_date': '2025-01-17T00:17:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11417',
'incident_address': '135-46 94 STREET',
'street_name': '94 STREET',
'cross_street_1': 'LINDEN BOULEVARD',
'cross_street_2': 'PITKIN AVENUE',
'intersection_street_1': 'LINDEN BOULEVARD',
'intersection_street_2': 'PITKIN AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '94 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4115120022',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027961',
'y_coordinate_state_plane': '184711',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.67355786388418',
'longitude': '-73.84242079097798',
'location': {'latitude': '40.67355786388418',
'longitude': '-73.84242079097798',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788816',
'created_date': '2025-01-17T00:17:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11354',
'incident_address': '119-50 27 AVENUE',
'street_name': '27 AVENUE',
'cross_street_1': 'DEAD END',
'cross_street_2': 'COLLEGE POINT BOULEVARD',
'intersection_street_1': 'DEAD END',
'intersection_street_2': 'COLLEGE POINT BOULEVARD',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '27 AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4042920058',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026590',
'y_coordinate_state_plane': '221235',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77381389415184',
'longitude': '-73.84713349106937',
'location': {'latitude': '40.77381389415184',
'longitude': '-73.84713349106937',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787404',
'created_date': '2025-01-17T00:17:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11230',
'incident_address': '946 EAST 19 STREET',
'street_name': 'EAST 19 STREET',
'cross_street_1': 'AVENUE I',
'cross_street_2': 'AVENUE J',
'intersection_street_1': 'AVENUE I',
'intersection_street_2': 'AVENUE J',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 19 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:58:30.000',
'community_board': '14 BROOKLYN',
'bbl': '3067110051',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995922',
'y_coordinate_state_plane': '167855',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.627392031783884',
'longitude': '-73.95795128565784',
'location': {'latitude': '40.627392031783884',
'longitude': '-73.95795128565784',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781800',
'created_date': '2025-01-17T00:16:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11377',
'incident_address': '72-15 41 AVENUE',
'street_name': '41 AVENUE',
'cross_street_1': '72 STREET',
'cross_street_2': '73 STREET',
'intersection_street_1': '72 STREET',
'intersection_street_2': '73 STREET',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '41 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4013040071',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013917',
'y_coordinate_state_plane': '210726',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74502101951681',
'longitude': '-73.89293505987077',
'location': {'latitude': '40.74502101951681',
'longitude': '-73.89293505987077',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791530',
'created_date': '2025-01-17T00:16:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11423',
'incident_address': '183-15 89 AVENUE',
'street_name': '89 AVENUE',
'cross_street_1': '183 STREET',
'cross_street_2': '184 STREET',
'intersection_street_1': '183 STREET',
'intersection_street_2': '184 STREET',
'address_type': 'ADDRESS',
'city': 'HOLLIS',
'landmark': '89 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:55:30.000',
'community_board': '12 QUEENS',
'bbl': '4099300003',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1045744',
'y_coordinate_state_plane': '198924',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.71246347086672',
'longitude': '-73.77818313449633',
'location': {'latitude': '40.71246347086672',
'longitude': '-73.77818313449633',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790358',
'created_date': '2025-01-17T00:15:49.000',
'closed_date': '2025-01-17T00:53:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10460',
'incident_address': '1705 BRYANT AVENUE',
'street_name': 'BRYANT AVENUE',
'cross_street_1': 'EAST 173 STREET',
'cross_street_2': 'EAST 174 STREET',
'intersection_street_1': 'EAST 173 STREET',
'intersection_street_2': 'EAST 174 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BRYANT AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:53:54.000',
'community_board': '03 BRONX',
'bbl': '2029970030',
'borough': 'BRONX',
'x_coordinate_state_plane': '1015899',
'y_coordinate_state_plane': '243742',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8356341044286',
'longitude': '-73.88562667543762',
'location': {'latitude': '40.8356341044286',
'longitude': '-73.88562667543762',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781810',
'created_date': '2025-01-17T00:14:33.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '10471',
'incident_address': '5700 ARLINGTON AVENUE',
'street_name': 'ARLINGTON AVENUE',
'cross_street_1': 'WEST 259 STREET',
'cross_street_2': 'INDEPENDENCE AVENUE',
'intersection_street_1': 'WEST 259 STREET',
'intersection_street_2': 'INDEPENDENCE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'ARLINGTON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:00:39.000',
'community_board': '08 BRONX',
'bbl': '2059530038',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010005',
'y_coordinate_state_plane': '269611',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.90665570023825',
'longitude': '-73.90682699003065',
'location': {'latitude': '40.90665570023825',
'longitude': '-73.90682699003065',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782093',
'created_date': '2025-01-17T00:14:18.000',
'closed_date': '2025-01-17T01:33:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Horn',
'location_type': 'Street/Sidewalk',
'incident_zip': '11372',
'incident_address': '35-28 80 STREET',
'street_name': '80 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '80 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:33:10.000',
'community_board': '03 QUEENS',
'bbl': '4012790018',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015700',
'y_coordinate_state_plane': '212997',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.751248176673506',
'longitude': '-73.88648979571101',
'location': {'latitude': '40.751248176673506',
'longitude': '-73.88648979571101',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781801',
'created_date': '2025-01-17T00:13:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Non-Emergency Police Matter',
'descriptor': 'Trespassing',
'location_type': 'Residential Building/House',
'incident_zip': '11377',
'incident_address': '72-10 41 AVENUE',
'street_name': '41 AVENUE',
'cross_street_1': '72 STREET',
'cross_street_2': '73 STREET',
'intersection_street_1': '72 STREET',
'intersection_street_2': '73 STREET',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '41 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4013120010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013908',
'y_coordinate_state_plane': '210718',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74499909172425',
'longitude': '-73.89296757512533',
'location': {'latitude': '40.74499909172425',
'longitude': '-73.89296757512533',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783481',
'created_date': '2025-01-17T00:13:36.000',
'closed_date': '2025-01-17T00:16:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '11374',
'incident_address': '66-01 BURNS STREET',
'street_name': 'BURNS STREET',
'cross_street_1': 'DEAD END',
'cross_street_2': 'THORNTON PLACE',
'intersection_street_1': 'DEAD END',
'intersection_street_2': 'THORNTON PLACE',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': 'BURNS STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:16:47.000',
'community_board': '06 QUEENS',
'bbl': '4031550001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023553',
'y_coordinate_state_plane': '203004',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.723788482937245',
'longitude': '-73.85820495907939',
'location': {'latitude': '40.723788482937245',
'longitude': '-73.85820495907939',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787637',
'created_date': '2025-01-17T00:12:45.000',
'closed_date': '2025-01-17T00:16:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11220',
'incident_address': '4600 9 AVENUE',
'street_name': '9 AVENUE',
'cross_street_1': '46 STREET',
'cross_street_2': '47 STREET',
'intersection_street_1': '46 STREET',
'intersection_street_2': '47 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '9 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:16:42.000',
'community_board': '12 BROOKLYN',
'bbl': '3007600036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984452',
'y_coordinate_state_plane': '173155',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64194709277605',
'longitude': '-73.99927213050553',
'location': {'latitude': '40.64194709277605',
'longitude': '-73.99927213050553',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788912',
'created_date': '2025-01-17T00:12:39.000',
'closed_date': '2025-01-17T01:50:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:50:19.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782476',
'created_date': '2025-01-17T00:12:13.000',
'closed_date': '2025-01-17T01:33:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '56-40 138 STREET',
'street_name': '138 STREET',
'cross_street_1': '56 AVENUE',
'cross_street_2': 'BOOTH MEMORIAL AVENUE',
'intersection_street_1': '56 AVENUE',
'intersection_street_2': 'BOOTH MEMORIAL AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '138 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:33:20.000',
'community_board': '07 QUEENS',
'bbl': '4051320054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032178',
'y_coordinate_state_plane': '211728',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'location': {'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783494',
'created_date': '2025-01-17T00:12:05.000',
'closed_date': '2025-01-17T01:19:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10453',
'incident_address': '111 MOUNT HOPE PLACE',
'street_name': 'MOUNT HOPE PLACE',
'cross_street_1': 'MORRIS AVENUE',
'cross_street_2': 'GRAND CONCOURSE',
'intersection_street_1': 'MORRIS AVENUE',
'intersection_street_2': 'GRAND CONCOURSE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MOUNT HOPE PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T01:19:11.000',
'community_board': '05 BRONX',
'bbl': '2028050065',
'borough': 'BRONX',
'x_coordinate_state_plane': '1009727',
'y_coordinate_state_plane': '248524',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.848779251763496',
'longitude': '-73.90791289647643',
'location': {'latitude': '40.848779251763496',
'longitude': '-73.90791289647643',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787229',
'created_date': '2025-01-17T00:12:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10470',
'incident_address': '4273 MARTHA AVENUE',
'street_name': 'MARTHA AVENUE',
'cross_street_1': 'EAST 235 STREET',
'cross_street_2': 'EAST 236 STREET',
'intersection_street_1': 'EAST 235 STREET',
'intersection_street_2': 'EAST 236 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MARTHA AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2033840043',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021602',
'y_coordinate_state_plane': '266492',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.89805358131851',
'longitude': '-73.86489036729425',
'location': {'latitude': '40.89805358131851',
'longitude': '-73.86489036729425',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791727',
'created_date': '2025-01-17T00:12:03.000',
'closed_date': '2025-01-17T00:38:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10032',
'incident_address': '2145 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 166 STREET',
'cross_street_2': 'WEST 167 STREET',
'intersection_street_1': 'WEST 166 STREET',
'intersection_street_2': 'WEST 167 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:38:25.000',
'community_board': '12 MANHATTAN',
'bbl': '1021110083',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001495',
'y_coordinate_state_plane': '244885',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'location': {'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785869',
'created_date': '2025-01-17T00:12:03.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Non-Residential Heat',
'descriptor': 'Inadequate or No Heat',
'location_type': 'Building (Non-Residential)',
'incident_zip': '11211',
'incident_address': '972 METROPOLITAN AVENUE',
'street_name': 'METROPOLITAN AVENUE',
'cross_street_1': 'CATHERINE STREET',
'cross_street_2': 'MORGAN AVENUE',
'intersection_street_1': 'CATHERINE STREET',
'intersection_street_2': 'MORGAN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'METROPOLITAN AVENUE',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3029180001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001819',
'y_coordinate_state_plane': '199595',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.7145014651309',
'longitude': '-73.93662445371372',
'location': {'latitude': '40.7145014651309',
'longitude': '-73.93662445371372',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792121',
'created_date': '2025-01-17T00:11:54.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Residential Disposal Complaint',
'descriptor': 'Trash or Recycling Not Secure',
'location_type': 'Sidewalk',
'incident_zip': '11220',
'incident_address': '465 57 STREET',
'street_name': '57 STREET',
'cross_street_1': '4 AVENUE',
'cross_street_2': '5 AVENUE',
'intersection_street_1': '4 AVENUE',
'intersection_street_2': '5 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '57 STREET',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3008390049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '980017',
'y_coordinate_state_plane': '173070',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64171277677542',
'longitude': '-74.01525277607013',
'location': {'latitude': '40.64171277677542',
'longitude': '-74.01525277607013',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785825',
'created_date': '2025-01-17T00:11:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11379',
'incident_address': '61-66 71 STREET',
'street_name': '71 STREET',
'cross_street_1': 'ELIOT AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'ELIOT AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'MIDDLE VILLAGE',
'landmark': '71 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4029270043',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015753',
'y_coordinate_state_plane': '201661',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72013349197805',
'longitude': '-73.88635158881601',
'location': {'latitude': '40.72013349197805',
'longitude': '-73.88635158881601',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788874',
'created_date': '2025-01-17T00:11:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10026',
'incident_address': '141 WEST 110 STREET',
'street_name': 'WEST 110 STREET',
'cross_street_1': 'LENOX AVENUE',
'cross_street_2': 'CENTRAL PARK EXIT POWELL BLVD',
'intersection_street_1': 'LENOX AVENUE',
'intersection_street_2': 'CENTRAL PARK EXIT POWELL BLVD',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 110 STREET',
'status': 'In Progress',
'community_board': '10 MANHATTAN',
'bbl': '1018200010',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997032',
'y_coordinate_state_plane': '230316',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.798830969027264',
'longitude': '-73.95383388924596',
'location': {'latitude': '40.798830969027264',
'longitude': '-73.95383388924596',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790220',
'created_date': '2025-01-17T00:10:48.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '10019',
'incident_address': '750 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 49 STREET',
'cross_street_2': 'WEST 50 STREET',
'intersection_street_1': 'WEST 49 STREET',
'intersection_street_2': 'WEST 50 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'In Progress',
'community_board': '05 MANHATTAN',
'bbl': '1010210026',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988814',
'y_coordinate_state_plane': '216440',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.760753085757045',
'longitude': '-73.98352513961923',
'location': {'latitude': '40.760753085757045',
'longitude': '-73.98352513961923',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783120',
'created_date': '2025-01-17T00:10:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '41-38 77 STREET',
'street_name': '77 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'WOODSIDE AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'WOODSIDE AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '77 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4014960027',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015230',
'y_coordinate_state_plane': '210574',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74459931564678',
'longitude': '-73.88819729244608',
'location': {'latitude': '40.74459931564678',
'longitude': '-73.88819729244608',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790152',
'created_date': '2025-01-17T00:09:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10454',
'incident_address': '340 BEEKMAN AVENUE',
'street_name': 'BEEKMAN AVENUE',
'cross_street_1': 'OAK TERRACE',
'cross_street_2': 'BEECH TERRACE',
'intersection_street_1': 'OAK TERRACE',
'intersection_street_2': 'BEECH TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BEEKMAN AVENUE',
'status': 'In Progress',
'community_board': '01 BRONX',
'bbl': '2025540010',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008107',
'y_coordinate_state_plane': '233961',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.80881252683152',
'longitude': '-73.9138202000098',
'location': {'latitude': '40.80881252683152',
'longitude': '-73.9138202000098',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787506',
'created_date': '2025-01-17T00:08:53.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11368',
'incident_address': '57-32 GRANGER STREET',
'street_name': 'GRANGER STREET',
'cross_street_1': 'MARTENSE AVENUE',
'cross_street_2': 'OTIS AVENUE',
'intersection_street_1': 'MARTENSE AVENUE',
'intersection_street_2': 'OTIS AVENUE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': 'GRANGER STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4019500054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023941',
'y_coordinate_state_plane': '208565',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.739050311848686',
'longitude': '-73.85677235427599',
'location': {'latitude': '40.739050311848686',
'longitude': '-73.85677235427599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784316',
'created_date': '2025-01-17T00:08:29.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Smoking or Vaping',
'descriptor': 'Allowed in Smoke Free Area',
'location_type': 'Residential Building',
'incident_zip': '10301',
'incident_address': '100 STUYVESANT PLACE',
'street_name': 'STUYVESANT PLACE',
'cross_street_1': 'WALL STREET',
'cross_street_2': 'SCHUYLER STREET',
'intersection_street_1': 'WALL STREET',
'intersection_street_2': 'SCHUYLER STREET',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'STUYVESANT PLACE',
'status': 'In Progress',
'community_board': '01 STATEN ISLAND',
'bbl': '5000080046',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '962763',
'y_coordinate_state_plane': '173771',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.64361181801623',
'longitude': '-74.07742635674747',
'location': {'latitude': '40.64361181801623',
'longitude': '-74.07742635674747',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785826',
'created_date': '2025-01-17T00:08:23.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '711 SEAGIRT AVENUE',
'street_name': 'SEAGIRT AVENUE',
'cross_street_1': 'BEACH 6 STREET',
'cross_street_2': 'BEACH 8 STREET',
'intersection_street_1': 'BEACH 6 STREET',
'intersection_street_2': 'BEACH 8 STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'SEAGIRT AVENUE',
'status': 'In Progress',
'community_board': '14 QUEENS',
'bbl': '4156100001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1055848',
'y_coordinate_state_plane': '156519',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.59599553669944',
'longitude': '-73.74218707271653',
'location': {'latitude': '40.59599553669944',
'longitude': '-73.74218707271653',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786139',
'created_date': '2025-01-17T00:08:22.000',
'closed_date': '2025-01-17T01:50:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:50:31.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788516',
'created_date': '2025-01-17T00:08:00.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Smoking or Vaping',
'descriptor': 'Allowed in Smoke Free Area',
'location_type': 'Residential Building',
'incident_zip': '11101',
'incident_address': '38-17 28 STREET',
'street_name': '28 STREET',
'cross_street_1': '38 AVENUE',
'cross_street_2': '39 AVENUE',
'intersection_street_1': '38 AVENUE',
'intersection_street_2': '39 AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '28 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4003850007',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1002379',
'y_coordinate_state_plane': '214250',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.754724687927755',
'longitude': '-73.93456491233351',
'location': {'latitude': '40.754724687927755',
'longitude': '-73.93456491233351',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784649',
'created_date': '2025-01-17T00:06:47.000',
'closed_date': '2025-01-17T01:12:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11369',
'incident_address': '32-04 86 STREET',
'street_name': '86 STREET',
'cross_street_1': '32 AVENUE',
'cross_street_2': 'NORTHERN BOULEVARD',
'intersection_street_1': '32 AVENUE',
'intersection_street_2': 'NORTHERN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'EAST ELMHURST',
'landmark': '86 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:12:43.000',
'community_board': '03 QUEENS',
'bbl': '4014150008',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016945',
'y_coordinate_state_plane': '215361',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7577322343659',
'longitude': '-73.88198481783013',
'location': {'latitude': '40.7577322343659',
'longitude': '-73.88198481783013',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791595',
'created_date': '2025-01-17T00:06:08.000',
'closed_date': '2025-01-17T00:51:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10012',
'incident_address': '142 SULLIVAN STREET',
'street_name': 'SULLIVAN STREET',
'cross_street_1': 'PRINCE STREET',
'cross_street_2': 'WEST HOUSTON STREET',
'intersection_street_1': 'PRINCE STREET',
'intersection_street_2': 'WEST HOUSTON STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SULLIVAN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:51:18.000',
'community_board': '02 MANHATTAN',
'bbl': '1005180037',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983707',
'y_coordinate_state_plane': '204136',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72698284261811',
'longitude': '-74.0019590963611',
'location': {'latitude': '40.72698284261811',
'longitude': '-74.0019590963611',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788921',
'created_date': '2025-01-17T00:05:53.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '27 SICKLES STREET',
'street_name': 'SICKLES STREET',
'cross_street_1': 'NAGLE AVENUE',
'cross_street_2': 'SHERMAN AVENUE',
'intersection_street_1': 'NAGLE AVENUE',
'intersection_street_2': 'SHERMAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SICKLES STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:25:17.000',
'community_board': '12 MANHATTAN',
'bbl': '1021740145',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1004247',
'y_coordinate_state_plane': '253063',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'location': {'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790444',
'created_date': '2025-01-17T00:05:51.000',
'closed_date': '2025-01-17T01:25:05.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '155 TOMPKINS AVENUE',
'street_name': 'TOMPKINS AVENUE',
'cross_street_1': 'WILLOUGHBY AVENUE',
'cross_street_2': 'HART STREET',
'intersection_street_1': 'WILLOUGHBY AVENUE',
'intersection_street_2': 'HART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'TOMPKINS AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:25:08.000',
'community_board': '03 BROOKLYN',
'bbl': '3017680008',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999218',
'y_coordinate_state_plane': '192127',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69400834818243',
'longitude': '-73.94602347392649',
'location': {'latitude': '40.69400834818243',
'longitude': '-73.94602347392649',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787661',
'created_date': '2025-01-17T00:05:30.000',
'closed_date': '2025-01-17T01:03:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10009',
'incident_address': '212 AVENUE A',
'street_name': 'AVENUE A',
'cross_street_1': 'EAST 13 STREET',
'cross_street_2': 'EAST 14 STREET',
'intersection_street_1': 'EAST 13 STREET',
'intersection_street_2': 'EAST 14 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AVENUE A',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:03:08.000',
'community_board': '03 MANHATTAN',
'bbl': '1004077502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989588',
'y_coordinate_state_plane': '205187',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72986598711956',
'longitude': '-73.98074013090198',
'location': {'latitude': '40.72986598711956',
'longitude': '-73.98074013090198',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788880',
'created_date': '2025-01-17T00:05:13.000',
'closed_date': '2025-01-17T00:34:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10455',
'incident_address': '760 FOX STREET',
'street_name': 'FOX STREET',
'cross_street_1': 'EAST 156 STREET',
'cross_street_2': 'LONGWOOD AVENUE',
'intersection_street_1': 'EAST 156 STREET',
'intersection_street_2': 'LONGWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'FOX STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:34:19.000',
'community_board': '02 BRONX',
'bbl': '2027200052',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012473',
'y_coordinate_state_plane': '236522',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.81582888553991',
'longitude': '-73.89803793096316',
'location': {'latitude': '40.81582888553991',
'longitude': '-73.89803793096316',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790120',
'created_date': '2025-01-17T00:05:07.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10472',
'incident_address': '1226 COLGATE AVENUE',
'street_name': 'COLGATE AVENUE',
'cross_street_1': 'WESTCHESTER AVENUE',
'cross_street_2': 'BEND',
'intersection_street_1': 'WESTCHESTER AVENUE',
'intersection_street_2': 'BEND',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'COLGATE AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2037700048',
'borough': 'BRONX',
'x_coordinate_state_plane': '1016866',
'y_coordinate_state_plane': '241329',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8290076009524',
'longitude': '-73.88214386216167',
'location': {'latitude': '40.8290076009524',
'longitude': '-73.88214386216167',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788588',
'created_date': '2025-01-17T00:04:32.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '10019',
'incident_address': '750 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 49 STREET',
'cross_street_2': 'WEST 50 STREET',
'intersection_street_1': 'WEST 49 STREET',
'intersection_street_2': 'WEST 50 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'In Progress',
'community_board': '05 MANHATTAN',
'bbl': '1010210026',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988814',
'y_coordinate_state_plane': '216440',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.760753085757045',
'longitude': '-73.98352513961923',
'location': {'latitude': '40.760753085757045',
'longitude': '-73.98352513961923',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785861',
'created_date': '2025-01-17T00:04:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Double Parked Blocking Vehicle',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '35-47 32 STREET',
'street_name': '32 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '36 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '36 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '32 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:54:44.000',
'community_board': '01 QUEENS',
'bbl': '4006050005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004116',
'y_coordinate_state_plane': '215084',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.75701007275981',
'longitude': '-73.92829289666444',
'location': {'latitude': '40.75701007275981',
'longitude': '-73.92829289666444',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782137',
'created_date': '2025-01-17T00:03:53.000',
'closed_date': '2025-01-17T01:33:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11207',
'incident_address': '1784 LINDEN BOULEVARD',
'street_name': 'LINDEN BOULEVARD',
'cross_street_1': 'HINSDALE STREET',
'cross_street_2': 'WILLIAMS AVENUE',
'intersection_street_1': 'HINSDALE STREET',
'intersection_street_2': 'WILLIAMS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LINDEN BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:33:11.000',
'community_board': '05 BROOKLYN',
'bbl': '3038750030',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1012968',
'y_coordinate_state_plane': '178928',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65774615749246',
'longitude': '-73.89649548777841',
'location': {'latitude': '40.65774615749246',
'longitude': '-73.89649548777841',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784548',
'created_date': '2025-01-17T00:03:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10465',
'incident_address': '3159 MILES AVENUE',
'street_name': 'MILES AVENUE',
'cross_street_1': 'BLAIR AVENUE',
'cross_street_2': 'LONGSTREET AVENUE',
'intersection_street_1': 'BLAIR AVENUE',
'intersection_street_2': 'LONGSTREET AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MILES AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2055170036',
'borough': 'BRONX',
'x_coordinate_state_plane': '1037328',
'y_coordinate_state_plane': '238720',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.821747389968635',
'longitude': '-73.80822637067043',
'location': {'latitude': '40.821747389968635',
'longitude': '-73.80822637067043',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787216',
'created_date': '2025-01-17T00:02:02.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Bodega, Deli, or Convenience Store',
'location_type': 'Business',
'incident_zip': '10451',
'incident_address': '610 EXTERIOR STREET',
'street_name': 'EXTERIOR STREET',
'cross_street_1': 'EAST 150 STREET',
'cross_street_2': 'MAJOR DEEGAN EXPWY ET 5 NB',
'intersection_street_1': 'EAST 150 STREET',
'intersection_street_2': 'MAJOR DEEGAN EXPWY ET 5 NB',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EXTERIOR STREET',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2023570035',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003394',
'y_coordinate_state_plane': '238539',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82138932177206',
'longitude': '-73.93083213282375',
'location': {'latitude': '40.82138932177206',
'longitude': '-73.93083213282375',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791742',
'created_date': '2025-01-17T00:01:42.000',
'closed_date': '2025-01-17T01:14:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '181 ROCKAWAY PARKWAY',
'street_name': 'ROCKAWAY PARKWAY',
'cross_street_1': 'WINTHROP STREET',
'cross_street_2': 'CLARKSON AVENUE',
'intersection_street_1': 'WINTHROP STREET',
'intersection_street_2': 'CLARKSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ROCKAWAY PARKWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T01:14:10.000',
'community_board': '17 BROOKLYN',
'bbl': '3046330065',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006045',
'y_coordinate_state_plane': '180586',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66231674694474',
'longitude': '-73.92144177201318',
'location': {'latitude': '40.66231674694474',
'longitude': '-73.92144177201318',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786140',
'created_date': '2025-01-17T00:01:31.000',
'closed_date': '2025-01-17T01:32:32.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11372',
'incident_address': '35-64 95 STREET',
'street_name': '95 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '95 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:32:35.000',
'community_board': '03 QUEENS',
'bbl': '4014680036',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019560',
'y_coordinate_state_plane': '213547',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75274321452115',
'longitude': '-73.8725553081455',
'location': {'latitude': '40.75274321452115',
'longitude': '-73.8725553081455',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783870',
'created_date': '2025-01-17T00:01:19.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Residential Disposal Complaint',
'descriptor': 'Trash or Recycling Not Secure',
'location_type': 'Sidewalk',
'incident_zip': '11220',
'incident_address': '463 57 STREET',
'street_name': '57 STREET',
'cross_street_1': '4 AVENUE',
'cross_street_2': '5 AVENUE',
'intersection_street_1': '4 AVENUE',
'intersection_street_2': '5 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '57 STREET',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3008390050',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '980008',
'y_coordinate_state_plane': '173077',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6417319859672',
'longitude': '-74.015285210186',
'location': {'latitude': '40.6417319859672',
'longitude': '-74.015285210186',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789068',
'created_date': '2025-01-17T00:00:44.000',
'closed_date': '2025-01-17T01:26:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '181 ROCKAWAY PARKWAY',
'street_name': 'ROCKAWAY PARKWAY',
'cross_street_1': 'WINTHROP STREET',
'cross_street_2': 'CLARKSON AVENUE',
'intersection_street_1': 'WINTHROP STREET',
'intersection_street_2': 'CLARKSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ROCKAWAY PARKWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T01:26:34.000',
'community_board': '17 BROOKLYN',
'bbl': '3046330065',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006045',
'y_coordinate_state_plane': '180586',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66231674694474',
'longitude': '-73.92144177201318',
'location': {'latitude': '40.66231674694474',
'longitude': '-73.92144177201318',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786299',
'created_date': '2025-01-17T00:00:21.000',
'closed_date': '2025-01-17T00:17:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10002',
'incident_address': '109 MADISON STREET',
'street_name': 'MADISON STREET',
'cross_street_1': 'CATHERINE STREET',
'cross_street_2': 'MARKET STREET',
'intersection_street_1': 'CATHERINE STREET',
'intersection_street_2': 'MARKET STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'MADISON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:17:47.000',
'community_board': '03 MANHATTAN',
'bbl': '1002770018',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '985621',
'y_coordinate_state_plane': '198770',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71225437491401',
'longitude': '-73.99505464526985',
'location': {'latitude': '40.71225437491401',
'longitude': '-73.99505464526985',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788900',
'created_date': '2025-01-17T00:00:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '84-07 96 STREET',
'street_name': '96 STREET',
'cross_street_1': 'PARK LANE SOUTH',
'cross_street_2': '85 AVENUE',
'intersection_street_1': 'PARK LANE SOUTH',
'intersection_street_2': '85 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '96 STREET',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4088920130',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025875',
'y_coordinate_state_plane': '193586',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69792772694873',
'longitude': '-73.8498860276305',
'location': {'latitude': '40.69792772694873',
'longitude': '-73.8498860276305',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785866',
'created_date': '2025-01-17T00:00:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '63 MONTROSE AVENUE',
'street_name': 'MONTROSE AVENUE',
'cross_street_1': 'LORIMER STREET',
'cross_street_2': 'LEONARD STREET',
'intersection_street_1': 'LORIMER STREET',
'intersection_street_2': 'LEONARD STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MONTROSE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:25:00.000',
'community_board': '01 BROOKLYN',
'bbl': '3030500034',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998824',
'y_coordinate_state_plane': '196835',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.706931362524664',
'longitude': '-73.9474341000148',
'location': {'latitude': '40.706931362524664',
'longitude': '-73.9474341000148',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783164',
'created_date': '2025-01-16T23:59:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10459',
'incident_address': '941 FAILE STREET',
'street_name': 'FAILE STREET',
'cross_street_1': 'BRUCKNER BOULEVARD',
'cross_street_2': 'ALDUS STREET',
'intersection_street_1': 'BRUCKNER BOULEVARD',
'intersection_street_2': 'ALDUS STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'FAILE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:05:35.000',
'community_board': '02 BRONX',
'bbl': '2027460044',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014862',
'y_coordinate_state_plane': '238780',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82201849964387',
'longitude': '-73.88939682865316',
'location': {'latitude': '40.82201849964387',
'longitude': '-73.88939682865316',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782466',
'created_date': '2025-01-16T23:58:59.000',
'closed_date': '2025-01-17T00:28:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11101',
'incident_address': '51-01 2 STREET',
'street_name': '2 STREET',
'cross_street_1': '51 AVENUE',
'cross_street_2': 'BORDEN AVENUE',
'intersection_street_1': '51 AVENUE',
'intersection_street_2': 'BORDEN AVENUE',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '2 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:28:58.000',
'community_board': '02 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '995708',
'y_coordinate_state_plane': '209891',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74277149319882',
'longitude': '-73.95865074311972',
'location': {'latitude': '40.74277149319882',
'longitude': '-73.95865074311972',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791809',
'created_date': '2025-01-16T23:58:49.000',
'closed_date': '2025-01-17T00:27:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10031',
'incident_address': '620 WEST 141 STREET',
'street_name': 'WEST 141 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'RIVERSIDE DRIVE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'RIVERSIDE DRIVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 141 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:27:13.000',
'community_board': '09 MANHATTAN',
'bbl': '1020880043',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997264',
'y_coordinate_state_plane': '239545',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82416166479311',
'longitude': '-73.95297805704422',
'location': {'latitude': '40.82416166479311',
'longitude': '-73.95297805704422',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786512',
'created_date': '2025-01-16T23:58:34.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11226',
'incident_address': '93 LINDEN BOULEVARD',
'street_name': 'LINDEN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '17 BROOKLYN',
'bbl': '3050840097',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996719',
'y_coordinate_state_plane': '176956',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.652371239667836',
'longitude': '-73.95506325152031',
'location': {'latitude': '40.652371239667836',
'longitude': '-73.95506325152031',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791936',
'created_date': '2025-01-16T23:58:31.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10032',
'incident_address': '711 WEST 171 STREET',
'street_name': 'WEST 171 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1021390193',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000456',
'y_coordinate_state_plane': '246840',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.84417905146368',
'longitude': '-73.9414271603943',
'location': {'latitude': '40.84417905146368',
'longitude': '-73.9414271603943',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786449',
'created_date': '2025-01-16T23:58:12.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10457',
'incident_address': '1511 SHERIDAN AVENUE',
'street_name': 'SHERIDAN AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 BRONX',
'bbl': '2028210068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008782',
'y_coordinate_state_plane': '245677',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84096775231571',
'longitude': '-73.91133903015907',
'location': {'latitude': '40.84096775231571',
'longitude': '-73.91133903015907',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785008',
'created_date': '2025-01-16T23:58:10.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10040',
'incident_address': '366 WADSWORTH AVENUE',
'street_name': 'WADSWORTH AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1021700268',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003573',
'y_coordinate_state_plane': '251284',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.85637024142327',
'longitude': '-73.93014868112249',
'location': {'latitude': '40.85637024142327',
'longitude': '-73.93014868112249',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782257',
'created_date': '2025-01-16T23:58:05.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'ELECTRIC',
'descriptor': 'NO LIGHTING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10011',
'incident_address': '90 7 AVENUE',
'street_name': '7 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 MANHATTAN',
'bbl': '1007650041',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984548',
'y_coordinate_state_plane': '208737',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.739611468042895',
'longitude': '-73.99892463835917',
'location': {'latitude': '40.739611468042895',
'longitude': '-73.99892463835917',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787596',
'created_date': '2025-01-16T23:58:05.000',
'closed_date': '2025-01-17T00:44:50.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10024',
'incident_address': '22 WEST 85 STREET',
'street_name': 'WEST 85 STREET',
'cross_street_1': 'CENTRAL PARK ENTRANCE W 85 ST',
'cross_street_2': 'COLUMBUS AVENUE',
'intersection_street_1': 'CENTRAL PARK ENTRANCE W 85 ST',
'intersection_street_2': 'COLUMBUS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 85 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:44:54.000',
'community_board': '07 MANHATTAN',
'bbl': '1011980041',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '992370',
'y_coordinate_state_plane': '225259',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78495638192179',
'longitude': '-73.97067824343726',
'location': {'latitude': '40.78495638192179',
'longitude': '-73.97067824343726',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792199',
'created_date': '2025-01-16T23:58:01.000',
'closed_date': '2025-01-17T01:33:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '56-40 138 STREET',
'street_name': '138 STREET',
'cross_street_1': '56 AVENUE',
'cross_street_2': 'BOOTH MEMORIAL AVENUE',
'intersection_street_1': '56 AVENUE',
'intersection_street_2': 'BOOTH MEMORIAL AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '138 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:33:20.000',
'community_board': '07 QUEENS',
'bbl': '4051320054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032178',
'y_coordinate_state_plane': '211728',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'location': {'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791559',
'created_date': '2025-01-16T23:57:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '16-17 CAFFREY AVENUE',
'street_name': 'CAFFREY AVENUE',
'cross_street_1': 'NEW HAVEN AVENUE',
'cross_street_2': 'BEACH 17 STREET',
'intersection_street_1': 'NEW HAVEN AVENUE',
'intersection_street_2': 'BEACH 17 STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'CAFFREY AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:42:02.000',
'community_board': '14 QUEENS',
'bbl': '4156290023',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1053673',
'y_coordinate_state_plane': '157727',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.599328542776796',
'longitude': '-73.7500064421774',
'location': {'latitude': '40.599328542776796',
'longitude': '-73.7500064421774',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785999',
'created_date': '2025-01-16T23:56:36.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10463',
'incident_address': '275 WEST 238 STREET',
'street_name': 'WEST 238 STREET',
'cross_street_1': 'KINGSBRIDGE AVENUE',
'cross_street_2': 'CORLEAR AVENUE',
'intersection_street_1': 'KINGSBRIDGE AVENUE',
'intersection_street_2': 'CORLEAR AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 238 STREET',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057730290',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011446',
'y_coordinate_state_plane': '261905',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88550087549394',
'longitude': '-73.90164523765534',
'location': {'latitude': '40.88550087549394',
'longitude': '-73.90164523765534',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784376',
'created_date': '2025-01-16T23:56:21.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Report',
'descriptor': 'Driver Report - Passenger',
'incident_zip': '11430',
'incident_address': 'JOHN F KENNEDY AIRPORT',
'street_name': 'JOHN F KENNEDY AIRPORT',
'cross_street_1': 'BEND',
'cross_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
'intersection_street_1': 'BEND',
'intersection_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
'address_type': 'UNRECOGNIZED',
'city': 'JAMAICA',
'landmark': 'JOHN F KENNEDY AIRPORT',
'status': 'In Progress',
'community_board': '83 QUEENS',
'bbl': '4142600001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1043001',
'y_coordinate_state_plane': '175548',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'taxi_pick_up_location': 'JOHN F KENNEDY AIRPORT, QUEENS (JAMAICA) ,NY, 11430',
'latitude': '40.64832048620134',
'longitude': '-73.78828125130184',
'location': {'latitude': '40.64832048620134',
'longitude': '-73.78828125130184',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791303',
'created_date': '2025-01-16T23:56:03.000',
'closed_date': '2025-01-17T01:35:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Double Parked Blocking Traffic',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '29 QUENTIN ROAD',
'street_name': 'QUENTIN ROAD',
'cross_street_1': 'WEST 13 STREET',
'cross_street_2': 'WEST 12 STREET',
'intersection_street_1': 'WEST 13 STREET',
'intersection_street_2': 'WEST 12 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'QUENTIN ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:35:15.000',
'community_board': '11 BROOKLYN',
'bbl': '3066190049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988262',
'y_coordinate_state_plane': '159786',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'SUV',
'latitude': '40.60525107931684',
'longitude': '-73.98555144879445',
'location': {'latitude': '40.60525107931684',
'longitude': '-73.98555144879445',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788076',
'created_date': '2025-01-16T23:56:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11375',
'incident_address': '61-20 GRAND CENTRAL PARKWAY',
'street_name': 'GRAND CENTRAL PARKWAY',
'cross_street_1': '62 AVE',
'cross_street_2': '62 DR',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '06 QUEENS',
'bbl': '4021620122',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026714',
'y_coordinate_state_plane': '208337',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73841162977033',
'longitude': '-73.84676725605964',
'location': {'latitude': '40.73841162977033',
'longitude': '-73.84676725605964',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791089',
'created_date': '2025-01-16T23:56:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11239',
'incident_address': '1300 PENNSYLVANIA AVENUE',
'street_name': 'PENNSYLVANIA AVENUE',
'cross_street_1': 'CROTON LOOP',
'cross_street_2': 'DELMAR LOOP',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '05 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1016593',
'y_coordinate_state_plane': '175874',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6493511026605',
'longitude': '-73.88344503720717',
'location': {'latitude': '40.6493511026605',
'longitude': '-73.88344503720717',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790416',
'created_date': '2025-01-16T23:55:58.000',
'closed_date': '2025-01-17T00:30:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11385',
'incident_address': '803 WYCKOFF AVENUE',
'street_name': 'WYCKOFF AVENUE',
'cross_street_1': 'PUTNAM AVENUE',
'cross_street_2': 'CORNELIA STREET',
'intersection_street_1': 'PUTNAM AVENUE',
'intersection_street_2': 'CORNELIA STREET',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'WYCKOFF AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:30:29.000',
'community_board': '05 QUEENS',
'bbl': '4035460001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009586',
'y_coordinate_state_plane': '193657',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69818423191772',
'longitude': '-73.9086294038465',
'location': {'latitude': '40.69818423191772',
'longitude': '-73.9086294038465',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787755',
'created_date': '2025-01-16T23:55:14.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10030',
'incident_address': '105 WEST 138 STREET',
'street_name': 'WEST 138 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1020070026',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000866',
'y_coordinate_state_plane': '236666',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81625358213994',
'longitude': '-73.93997050983799',
'location': {'latitude': '40.81625358213994',
'longitude': '-73.93997050983799',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785990',
'created_date': '2025-01-16T23:54:54.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11365',
'incident_address': '69-10A 188 STREET',
'street_name': '188 STREET',
'cross_street_1': 'BEND',
'cross_street_2': '186 LANE',
'intersection_street_1': 'BEND',
'intersection_street_2': '186 LANE',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '188 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4071150002',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1044151',
'y_coordinate_state_plane': '207058',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73480019104651',
'longitude': '-73.78385687303967',
'location': {'latitude': '40.73480019104651',
'longitude': '-73.78385687303967',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788815',
'created_date': '2025-01-16T23:54:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '142-20 CHERRY AVENUE',
'street_name': 'CHERRY AVENUE',
'cross_street_1': 'ROBINSON STREET',
'cross_street_2': 'BOWNE STREET',
'intersection_street_1': 'ROBINSON STREET',
'intersection_street_2': 'BOWNE STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': 'CHERRY AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4051940040',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033904',
'y_coordinate_state_plane': '214464',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75519122692376',
'longitude': '-73.82077673540158',
'location': {'latitude': '40.75519122692376',
'longitude': '-73.82077673540158',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791628',
'created_date': '2025-01-16T23:54:45.000',
'closed_date': '2025-01-17T01:50:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:50:44.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786871',
'created_date': '2025-01-16T23:54:26.000',
'closed_date': '2025-01-17T00:25:52.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11237',
'incident_address': '1545 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': 'LINDEN STREET',
'cross_street_2': 'GATES AVENUE',
'intersection_street_1': 'LINDEN STREET',
'intersection_street_2': 'GATES AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MYRTLE AVENUE',
'status': 'Closed',
'resolution_description': 'N/A',
'resolution_action_updated_date': '2025-01-17T00:25:54.000',
'community_board': '04 BROOKLYN',
'bbl': '3033370006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008259',
'y_coordinate_state_plane': '194072',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.699327009277525',
'longitude': '-73.91341355362138',
'location': {'latitude': '40.699327009277525',
'longitude': '-73.91341355362138',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786653',
'created_date': '2025-01-16T23:54:14.000',
'closed_date': '2025-01-17T00:25:59.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '11418',
'incident_address': '119-01 ATLANTIC AVENUE',
'street_name': 'ATLANTIC AVENUE',
'cross_street_1': 'LEFFERTS BOULEVARD',
'cross_street_2': '120 STREET',
'intersection_street_1': 'LEFFERTS BOULEVARD',
'intersection_street_2': '120 STREET',
'address_type': 'ADDRESS',
'city': 'RICHMOND HILL',
'landmark': 'ATLANTIC AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:26:03.000',
'community_board': '09 QUEENS',
'bbl': '4093510040',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1031987',
'y_coordinate_state_plane': '192203',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.69410086107785',
'longitude': '-73.82785392197312',
'location': {'latitude': '40.69410086107785',
'longitude': '-73.82785392197312',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789033',
'created_date': '2025-01-16T23:53:33.000',
'closed_date': '2025-01-17T00:22:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11220',
'incident_address': '834 62 STREET',
'street_name': '62 STREET',
'cross_street_1': '8 AVENUE',
'cross_street_2': '9 AVENUE',
'intersection_street_1': '8 AVENUE',
'intersection_street_2': '9 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '62 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:22:19.000',
'community_board': '10 BROOKLYN',
'bbl': '3057280020',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '981506',
'y_coordinate_state_plane': '170198',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63383033611589',
'longitude': '-74.00988629194552',
'location': {'latitude': '40.63383033611589',
'longitude': '-74.00988629194552',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788688',
'created_date': '2025-01-16T23:53:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11367',
'incident_address': '69 ROAD',
'street_name': '69 ROAD',
'cross_street_1': '69 ROAD',
'cross_street_2': 'MAIN STREET',
'intersection_street_1': '69 ROAD',
'intersection_street_2': 'MAIN STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '08 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033081',
'y_coordinate_state_plane': '205538',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73069621772311',
'longitude': '-73.82381209967353',
'location': {'latitude': '40.73069621772311',
'longitude': '-73.82381209967353',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781765',
'created_date': '2025-01-16T23:53:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11373',
'incident_address': '42-05 LAYTON STREET',
'street_name': 'LAYTON STREET',
'cross_street_1': 'BAXTER AVENUE',
'cross_street_2': 'PETTIT AVENUE',
'intersection_street_1': 'BAXTER AVENUE',
'intersection_street_2': 'PETTIT AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': 'LAYTON STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4015080001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016284',
'y_coordinate_state_plane': '210531',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.744477536326734',
'longitude': '-73.88439375550364',
'location': {'latitude': '40.744477536326734',
'longitude': '-73.88439375550364',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786098',
'created_date': '2025-01-16T23:52:48.000',
'closed_date': '2025-01-17T01:10:05.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10031',
'incident_address': '345 WEST 145 STREET',
'street_name': 'WEST 145 STREET',
'cross_street_1': 'EDGECOMBE AVENUE',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'EDGECOMBE AVENUE',
'intersection_street_2': 'ST NICHOLAS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 145 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:10:08.000',
'community_board': '09 MANHATTAN',
'bbl': '1020530001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999743',
'y_coordinate_state_plane': '239389',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.823729488820085',
'longitude': '-73.94402134275819',
'location': {'latitude': '40.823729488820085',
'longitude': '-73.94402134275819',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787374',
'created_date': '2025-01-16T23:52:39.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '95-08 42 AVENUE',
'street_name': '42 AVENUE',
'cross_street_1': '95 STREET',
'cross_street_2': 'WARREN STREET',
'intersection_street_1': '95 STREET',
'intersection_street_2': 'WARREN STREET',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '42 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4015990031',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1020461',
'y_coordinate_state_plane': '211089',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74599298774318',
'longitude': '-73.86931656109054',
'location': {'latitude': '40.74599298774318',
'longitude': '-73.86931656109054',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788899',
'created_date': '2025-01-16T23:52:18.000',
'closed_date': '2025-01-17T01:02:55.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': '4814 AVENUE O',
'street_name': 'AVENUE O',
'cross_street_1': 'EAST 48 STREET',
'cross_street_2': 'EAST 49 STREET',
'intersection_street_1': 'EAST 48 STREET',
'intersection_street_2': 'EAST 49 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'AVENUE O',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:02:59.000',
'community_board': '18 BROOKLYN',
'bbl': '3084880040',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004134',
'y_coordinate_state_plane': '163890',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.616494311972005',
'longitude': '-73.92837900975124',
'location': {'latitude': '40.616494311972005',
'longitude': '-73.92837900975124',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783116',
'created_date': '2025-01-16T23:52:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10473',
'incident_address': '755 WHITE PLAINS ROAD',
'street_name': 'WHITE PLAINS ROAD',
'cross_street_1': 'SEWARD AVENUE',
'cross_street_2': 'LAFAYETTE AVENUE',
'intersection_street_1': 'SEWARD AVENUE',
'intersection_street_2': 'LAFAYETTE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WHITE PLAINS ROAD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:52:04.000',
'community_board': '09 BRONX',
'bbl': '2036000025',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023504',
'y_coordinate_state_plane': '238630',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.821572615666604',
'longitude': '-73.85817363973848',
'location': {'latitude': '40.821572615666604',
'longitude': '-73.85817363973848',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782411',
'created_date': '2025-01-16T23:52:11.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11213',
'incident_address': '1399 ST JOHNS PLACE',
'street_name': 'ST JOHNS PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BROOKLYN',
'bbl': '3013780065',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003092',
'y_coordinate_state_plane': '183620',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67065117638102',
'longitude': '-73.93207712571099',
'location': {'latitude': '40.67065117638102',
'longitude': '-73.93207712571099',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785229',
'created_date': '2025-01-16T23:51:56.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11213',
'incident_address': '1248 ST MARKS AVENUE',
'street_name': 'ST MARKS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BROOKLYN',
'bbl': '3013610043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004091',
'y_coordinate_state_plane': '184849',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67402232211897',
'longitude': '-73.92847224907698',
'location': {'latitude': '40.67402232211897',
'longitude': '-73.92847224907698',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782507',
'created_date': '2025-01-16T23:51:44.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11106',
'incident_address': '25-21 31 AVENUE',
'street_name': '31 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '01 QUEENS',
'bbl': '4005780006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004688',
'y_coordinate_state_plane': '218229',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7656409832487',
'longitude': '-73.92621867972325',
'location': {'latitude': '40.7656409832487',
'longitude': '-73.92621867972325',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788113',
'created_date': '2025-01-16T23:51:39.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'OUTSIDE BUILDING',
'descriptor': 'ROOFING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11201',
'incident_address': '86 SCHERMERHORN STREET',
'street_name': 'SCHERMERHORN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BROOKLYN',
'bbl': '3002710043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986894',
'y_coordinate_state_plane': '190874',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'location': {'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789884',
'created_date': '2025-01-16T23:51:39.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'PESTS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11201',
'incident_address': '86 SCHERMERHORN STREET',
'street_name': 'SCHERMERHORN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BROOKLYN',
'bbl': '3002710043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986894',
'y_coordinate_state_plane': '190874',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'location': {'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789814',
'created_date': '2025-01-16T23:51:39.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'PESTS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11201',
'incident_address': '86 SCHERMERHORN STREET',
'street_name': 'SCHERMERHORN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BROOKLYN',
'bbl': '3002710043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986894',
'y_coordinate_state_plane': '190874',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'location': {'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784226',
'created_date': '2025-01-16T23:51:39.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'MOLD',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11201',
'incident_address': '86 SCHERMERHORN STREET',
'street_name': 'SCHERMERHORN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BROOKLYN',
'bbl': '3002710043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986894',
'y_coordinate_state_plane': '190874',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'location': {'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783237',
'created_date': '2025-01-16T23:51:31.000',
'agency': 'EDC',
'agency_name': 'Economic Development Corporation',
'complaint_type': 'Noise - Helicopter',
'descriptor': 'Other',
'location_type': 'Above Address',
'incident_zip': '10023',
'incident_address': '15 WEST 71 STREET',
'street_name': 'WEST 71 STREET',
'cross_street_1': 'CENTRAL PARK WEST',
'cross_street_2': 'COLUMBUS AVENUE',
'intersection_street_1': 'CENTRAL PARK WEST',
'intersection_street_2': 'COLUMBUS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 71 STREET',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990597',
'y_coordinate_state_plane': '221926',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77580963050521',
'longitude': '-73.97708379005802',
'location': {'latitude': '40.77580963050521',
'longitude': '-73.97708379005802',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791446',
'created_date': '2025-01-16T23:51:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '1760 WEST 12 STREET',
'street_name': 'WEST 12 STREET',
'cross_street_1': 'QUENTIN ROAD',
'cross_street_2': 'HIGHLAWN AVENUE',
'intersection_street_1': 'QUENTIN ROAD',
'intersection_street_2': 'HIGHLAWN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 12 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3066440032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988508',
'y_coordinate_state_plane': '159290',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60388954566575',
'longitude': '-73.98466583338785',
'location': {'latitude': '40.60388954566575',
'longitude': '-73.98466583338785',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788723',
'created_date': '2025-01-16T23:51:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '11236',
'intersection_street_1': 'AVENUE B',
'intersection_street_2': 'EAST 95 STREET',
'address_type': 'INTERSECTION',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '17 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008476',
'y_coordinate_state_plane': '176781',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65186654393698',
'longitude': '-73.9126931136562',
'location': {'latitude': '40.65186654393698',
'longitude': '-73.9126931136562',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787598',
'created_date': '2025-01-16T23:50:18.000',
'closed_date': '2025-01-17T00:51:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11209',
'incident_address': '383 86 STREET',
'street_name': '86 STREET',
'cross_street_1': '3 AVENUE',
'cross_street_2': '4 AVENUE',
'intersection_street_1': '3 AVENUE',
'intersection_street_2': '4 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '86 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:51:19.000',
'community_board': '10 BROOKLYN',
'bbl': '3060340049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '976280',
'y_coordinate_state_plane': '166216',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.622897424742334',
'longitude': '-74.0287102192464',
'location': {'latitude': '40.622897424742334',
'longitude': '-74.0287102192464',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781792',
'created_date': '2025-01-16T23:50:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10034',
'incident_address': '610 WEST 204 STREET',
'street_name': 'WEST 204 STREET',
'cross_street_1': 'SHERMAN AVENUE',
'cross_street_2': 'VERMILYEA AVENUE',
'intersection_street_1': 'SHERMAN AVENUE',
'intersection_street_2': 'VERMILYEA AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 204 STREET',
'status': 'In Progress',
'community_board': '12 MANHATTAN',
'bbl': '1022250020',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1005783',
'y_coordinate_state_plane': '254613',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Other',
'latitude': '40.86550222674629',
'longitude': '-73.92214899161553',
'location': {'latitude': '40.86550222674629',
'longitude': '-73.92214899161553',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790621',
'created_date': '2025-01-16T23:49:24.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10459',
'incident_address': '881 EAST 162 STREET',
'street_name': 'EAST 162 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BRONX',
'bbl': '2026900081',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012005',
'y_coordinate_state_plane': '238504',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82127039726054',
'longitude': '-73.89972048984208',
'location': {'latitude': '40.82127039726054',
'longitude': '-73.89972048984208',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792030',
'created_date': '2025-01-16T23:49:21.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10032',
'incident_address': '76 ST NICHOLAS PLACE',
'street_name': 'ST NICHOLAS PLACE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020540079',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000634',
'y_coordinate_state_plane': '241478',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829461589531974',
'longitude': '-73.94079691863257',
'location': {'latitude': '40.829461589531974',
'longitude': '-73.94079691863257',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783241',
'created_date': '2025-01-16T23:49:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10019',
'incident_address': '791 9 AVENUE',
'street_name': '9 AVENUE',
'cross_street_1': 'WEST 52 STREET',
'cross_street_2': 'WEST 53 STREET',
'intersection_street_1': 'WEST 52 STREET',
'intersection_street_2': 'WEST 53 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '9 AVENUE',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'bbl': '1010620034',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987636',
'y_coordinate_state_plane': '218027',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.76510952171534',
'longitude': '-73.98777661570499',
'location': {'latitude': '40.76510952171534',
'longitude': '-73.98777661570499',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790074',
'created_date': '2025-01-16T23:49:03.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '90-01 52 AVENUE',
'street_name': '52 AVENUE',
'cross_street_1': '90 STREET',
'cross_street_2': '92 STREET',
'intersection_street_1': '90 STREET',
'intersection_street_2': '92 STREET',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '52 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4018530088',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019322',
'y_coordinate_state_plane': '208503',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73889966065343',
'longitude': '-73.87344062527438',
'location': {'latitude': '40.73889966065343',
'longitude': '-73.87344062527438',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791363',
'created_date': '2025-01-16T23:48:59.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11412',
'incident_address': '201-44 120 AVENUE',
'street_name': '120 AVENUE',
'cross_street_1': '201 PLACE',
'cross_street_2': '202 STREET',
'intersection_street_1': '201 PLACE',
'intersection_street_2': '202 STREET',
'address_type': 'ADDRESS',
'city': 'SAINT ALBANS',
'landmark': '120 AVENUE',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4126930009',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1054069',
'y_coordinate_state_plane': '191184',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Truck',
'latitude': '40.69115729373062',
'longitude': '-73.74823417416616',
'location': {'latitude': '40.69115729373062',
'longitude': '-73.74823417416616',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783150',
'created_date': '2025-01-16T23:48:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Overnight Commercial Storage',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': 'COLONIAL ROAD',
'street_name': 'COLONIAL ROAD',
'cross_street_1': 'COLONIAL ROAD',
'cross_street_2': 'WAKEMAN PLACE',
'intersection_street_1': 'COLONIAL ROAD',
'intersection_street_2': 'WAKEMAN PLACE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2025-01-16T23:57:13.000',
'community_board': '10 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '976157',
'y_coordinate_state_plane': '172729',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64077411899319',
'longitude': '-74.02916111078318',
'location': {'latitude': '40.64077411899319',
'longitude': '-74.02916111078318',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785153',
'created_date': '2025-01-16T23:48:53.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11226',
'incident_address': '50 EAST 21 STREET',
'street_name': 'EAST 21 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '14 BROOKLYN',
'bbl': '3050620051',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995190',
'y_coordinate_state_plane': '177296',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65330648637028',
'longitude': '-73.96057302790511',
'location': {'latitude': '40.65330648637028',
'longitude': '-73.96057302790511',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781740',
'created_date': '2025-01-16T23:48:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '62-06 80 ROAD',
'street_name': '80 ROAD',
'cross_street_1': '62 STREET',
'cross_street_2': '64 LANE',
'intersection_street_1': '62 STREET',
'intersection_street_2': '64 LANE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '80 ROAD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:09:25.000',
'community_board': '05 QUEENS',
'bbl': '4037320083',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014446',
'y_coordinate_state_plane': '192452',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69486154087008',
'longitude': '-73.89110793994094',
'location': {'latitude': '40.69486154087008',
'longitude': '-73.89110793994094',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790106',
'created_date': '2025-01-16T23:48:24.000',
'closed_date': '2025-01-17T01:20:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10453',
'incident_address': '1780 DAVIDSON AVENUE',
'street_name': 'DAVIDSON AVENUE',
'cross_street_1': 'WEST 176 STREET',
'cross_street_2': 'WEST 177 STREET',
'intersection_street_1': 'WEST 176 STREET',
'intersection_street_2': 'WEST 177 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'DAVIDSON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T01:20:40.000',
'community_board': '05 BRONX',
'bbl': '2028610119',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008427',
'y_coordinate_state_plane': '248580',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.848936610450835',
'longitude': '-73.9126115661955',
'location': {'latitude': '40.848936610450835',
'longitude': '-73.9126115661955',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783696',
'created_date': '2025-01-16T23:48:08.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10027',
'incident_address': '55 WEST 126 STREET',
'street_name': 'WEST 126 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1017240013',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999905',
'y_coordinate_state_plane': '233588',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80780708598481',
'longitude': '-73.94344954249534',
'location': {'latitude': '40.80780708598481',
'longitude': '-73.94344954249534',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783023',
'created_date': '2025-01-16T23:48:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '11413',
'intersection_street_1': 'SPRINGFIELD BOULEVARD',
'intersection_street_2': '141 AVENUE',
'address_type': 'INTERSECTION',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '13 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051806',
'y_coordinate_state_plane': '184083',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.671684301124984',
'longitude': '-73.75646564992091',
'location': {'latitude': '40.671684301124984',
'longitude': '-73.75646564992091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787264',
'created_date': '2025-01-16T23:47:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '53-08 90 STREET',
'street_name': '90 STREET',
'cross_street_1': '53 AVENUE',
'cross_street_2': '54 AVENUE',
'intersection_street_1': '53 AVENUE',
'intersection_street_2': '54 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '90 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4018397501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019300',
'y_coordinate_state_plane': '208166',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73797476734915',
'longitude': '-73.87352176931351',
'location': {'latitude': '40.73797476734915',
'longitude': '-73.87352176931351',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791432',
'created_date': '2025-01-16T23:47:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10462',
'incident_address': '1142 CASTLE HILL AVENUE',
'street_name': 'CASTLE HILL AVENUE',
'cross_street_1': 'EAST 177 STREET',
'cross_street_2': 'POWELL AVENUE',
'intersection_street_1': 'EAST 177 STREET',
'intersection_street_2': 'POWELL AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CASTLE HILL AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:19:15.000',
'community_board': '09 BRONX',
'bbl': '2038190001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025546',
'y_coordinate_state_plane': '242014',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83085140810475',
'longitude': '-73.850774993076',
'location': {'latitude': '40.83085140810475',
'longitude': '-73.850774993076',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790153',
'created_date': '2025-01-16T23:47:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10304',
'incident_address': '125 FULTON STREET',
'street_name': 'FULTON STREET',
'cross_street_1': 'WARREN STREET',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'WARREN STREET',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'FULTON STREET',
'status': 'In Progress',
'community_board': '01 STATEN ISLAND',
'bbl': '5005620079',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '961407',
'y_coordinate_state_plane': '165565',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.62108470218542',
'longitude': '-74.08228479447632',
'location': {'latitude': '40.62108470218542',
'longitude': '-74.08228479447632',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784865',
'created_date': '2025-01-16T23:47:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '11212',
'intersection_street_1': 'AMBOY STREET',
'intersection_street_2': 'SUTTER AVENUE',
'address_type': 'INTERSECTION',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '16 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008145',
'y_coordinate_state_plane': '182150',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.666604159868',
'longitude': '-73.9138669618067',
'location': {'latitude': '40.666604159868',
'longitude': '-73.9138669618067',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790737',
'created_date': '2025-01-16T23:46:51.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11435',
'incident_address': '88-25 148 STREET',
'street_name': '148 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 QUEENS',
'bbl': '4096930001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037512',
'y_coordinate_state_plane': '196130',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.704848006726834',
'longitude': '-73.80789902961439',
'location': {'latitude': '40.704848006726834',
'longitude': '-73.80789902961439',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791788',
'created_date': '2025-01-16T23:46:47.000',
'closed_date': '2025-01-17T00:46:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10029',
'incident_address': '2029 2 AVENUE',
'street_name': '2 AVENUE',
'cross_street_1': 'EAST 104 STREET',
'cross_street_2': 'EAST 105 STREET',
'intersection_street_1': 'EAST 104 STREET',
'intersection_street_2': 'EAST 105 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '2 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:46:52.000',
'community_board': '11 MANHATTAN',
'bbl': '1016540011',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999954',
'y_coordinate_state_plane': '226908',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78947222299533',
'longitude': '-73.94328816237638',
'location': {'latitude': '40.78947222299533',
'longitude': '-73.94328816237638',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782132',
'created_date': '2025-01-16T23:46:45.000',
'closed_date': '2025-01-17T00:23:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11229',
'incident_address': '2936 AVENUE W',
'street_name': 'AVENUE W',
'cross_street_1': 'NOSTRAND AVENUE',
'cross_street_2': 'BATCHELDER STREET',
'intersection_street_1': 'NOSTRAND AVENUE',
'intersection_street_2': 'BATCHELDER STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'AVENUE W',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:23:29.000',
'community_board': '15 BROOKLYN',
'bbl': '3074051001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000734',
'y_coordinate_state_plane': '156404',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.595953754187086',
'longitude': '-73.94064387519408',
'location': {'latitude': '40.595953754187086',
'longitude': '-73.94064387519408',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785351',
'created_date': '2025-01-16T23:46:24.000',
'closed_date': '2025-01-17T01:33:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '56-40 138 STREET',
'street_name': '138 STREET',
'cross_street_1': '56 AVENUE',
'cross_street_2': 'BOOTH MEMORIAL AVENUE',
'intersection_street_1': '56 AVENUE',
'intersection_street_2': 'BOOTH MEMORIAL AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '138 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:33:15.000',
'community_board': '07 QUEENS',
'bbl': '4051320054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032178',
'y_coordinate_state_plane': '211728',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'location': {'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788056',
'created_date': '2025-01-16T23:46:16.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11377',
'incident_address': '72-10 41 AVENUE',
'street_name': '41 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 QUEENS',
'bbl': '4013120010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013908',
'y_coordinate_state_plane': '210718',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74499909172425',
'longitude': '-73.89296757512533',
'location': {'latitude': '40.74499909172425',
'longitude': '-73.89296757512533',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787976',
'created_date': '2025-01-16T23:46:05.000',
'closed_date': '2025-01-17T00:29:10.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10465',
'incident_address': '337 SWINTON AVENUE',
'street_name': 'SWINTON AVENUE',
'cross_street_1': 'MILES AVENUE',
'cross_street_2': 'SAMPSON AVENUE',
'intersection_street_1': 'MILES AVENUE',
'intersection_street_2': 'SAMPSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SWINTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T00:29:13.000',
'community_board': '10 BRONX',
'bbl': '2055800095',
'borough': 'BRONX',
'x_coordinate_state_plane': '1033797',
'y_coordinate_state_plane': '237448',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.818276627614736',
'longitude': '-73.82099341577246',
'location': {'latitude': '40.818276627614736',
'longitude': '-73.82099341577246',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788604',
'created_date': '2025-01-16T23:45:56.000',
'closed_date': '2025-01-17T01:06:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11215',
'incident_address': '514 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'PROSPECT AVENUE',
'cross_street_2': '17 STREET',
'intersection_street_1': 'PROSPECT AVENUE',
'intersection_street_2': '17 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '7 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:06:23.000',
'community_board': '07 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987993',
'y_coordinate_state_plane': '180137',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.661110374690125',
'longitude': '-73.98650891987036',
'location': {'latitude': '40.661110374690125',
'longitude': '-73.98650891987036',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785170',
'created_date': '2025-01-16T23:45:28.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10027',
'incident_address': '2 WEST 129 STREET',
'street_name': 'WEST 129 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1017260039',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000718',
'y_coordinate_state_plane': '234021',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80899407290369',
'longitude': '-73.94051168640271',
'location': {'latitude': '40.80899407290369',
'longitude': '-73.94051168640271',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790340',
'created_date': '2025-01-16T23:45:24.000',
'closed_date': '2025-01-17T00:38:47.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '10018',
'incident_address': '344 WEST 38 STREET',
'street_name': 'WEST 38 STREET',
'cross_street_1': '8 AVENUE',
'cross_street_2': '9 AVENUE',
'intersection_street_1': '8 AVENUE',
'intersection_street_2': '9 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 38 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:38:50.000',
'community_board': '04 MANHATTAN',
'bbl': '1007610059',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986202',
'y_coordinate_state_plane': '214438',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.75525906981246',
'longitude': '-73.99295436570866',
'location': {'latitude': '40.75525906981246',
'longitude': '-73.99295436570866',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788564',
'created_date': '2025-01-16T23:45:14.000',
'closed_date': '2025-01-17T01:19:55.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11228',
'incident_address': '1489 76 STREET',
'street_name': '76 STREET',
'cross_street_1': '14 AVENUE',
'cross_street_2': '15 AVENUE',
'intersection_street_1': '14 AVENUE',
'intersection_street_2': '15 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '76 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:20:00.000',
'community_board': '11 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983103',
'y_coordinate_state_plane': '164190',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61733998727306',
'longitude': '-74.0041314779446',
'location': {'latitude': '40.61733998727306',
'longitude': '-74.0041314779446',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785097',
'created_date': '2025-01-16T23:45:05.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '181 HAWTHORNE STREET',
'street_name': 'HAWTHORNE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3050430066',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996883',
'y_coordinate_state_plane': '178858',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65759158062353',
'longitude': '-73.95446865284168',
'location': {'latitude': '40.65759158062353',
'longitude': '-73.95446865284168',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782080',
'created_date': '2025-01-16T23:44:03.000',
'closed_date': '2025-01-17T00:03:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11235',
'incident_address': '3115 BRIGHTON 4 STREET',
'street_name': 'BRIGHTON 4 STREET',
'cross_street_1': 'BRIGHTON BEACH AVENUE',
'cross_street_2': 'BRIGHTWATER COURT',
'intersection_street_1': 'BRIGHTON BEACH AVENUE',
'intersection_street_2': 'BRIGHTWATER COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHTON 4 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:03:55.000',
'community_board': '13 BROOKLYN',
'bbl': '3086880041',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994497',
'y_coordinate_state_plane': '149260',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57635430309912',
'longitude': '-73.96311309717944',
'location': {'latitude': '40.57635430309912',
'longitude': '-73.96311309717944',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788210',
'created_date': '2025-01-16T23:44:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Veh Signal Lamp',
'intersection_street_1': 'WHITESTONE EXPY',
'intersection_street_2': 'COLLEGE POINT BLVD',
'address_type': 'INTERSECTION',
'facility_type': 'N/A',
'status': 'Open',
'community_board': 'Unspecified QUEENS',
'borough': 'QUEENS',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS'},
{'unique_key': '63783837',
'created_date': '2025-01-16T23:43:20.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Sidewalk',
'incident_zip': '10462',
'incident_address': 'ZEREGA AVENUE',
'street_name': 'ZEREGA AVENUE',
'cross_street_1': 'BLACKROCK AVENUE',
'cross_street_2': 'ZEREGA AVENUE',
'intersection_street_1': 'BLACKROCK AVENUE',
'intersection_street_2': 'ZEREGA AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '09 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1027353',
'y_coordinate_state_plane': '241661',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82987389195933',
'longitude': '-73.84424759648121',
'location': {'latitude': '40.82987389195933',
'longitude': '-73.84424759648121',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783417',
'created_date': '2025-01-16T23:43:06.000',
'closed_date': '2025-01-17T01:19:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11228',
'incident_address': '1489 76 STREET',
'street_name': '76 STREET',
'cross_street_1': '14 AVENUE',
'cross_street_2': '15 AVENUE',
'intersection_street_1': '14 AVENUE',
'intersection_street_2': '15 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '76 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:19:54.000',
'community_board': '11 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983103',
'y_coordinate_state_plane': '164190',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61733998727306',
'longitude': '-74.0041314779446',
'location': {'latitude': '40.61733998727306',
'longitude': '-74.0041314779446',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790204',
'created_date': '2025-01-16T23:42:23.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11417',
'incident_address': '137-20 94 STREET',
'street_name': '94 STREET',
'cross_street_1': 'PITKIN AVENUE',
'cross_street_2': '149 AVENUE',
'intersection_street_1': 'PITKIN AVENUE',
'intersection_street_2': '149 AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '94 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4115290015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1028063',
'y_coordinate_state_plane': '184168',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.67206694893742',
'longitude': '-73.8420566088586',
'location': {'latitude': '40.67206694893742',
'longitude': '-73.8420566088586',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783233',
'created_date': '2025-01-16T23:42:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11368',
'incident_address': '101-16 43 AVENUE',
'street_name': '43 AVENUE',
'cross_street_1': 'NATIONAL STREET',
'cross_street_2': '102 STREET',
'intersection_street_1': 'NATIONAL STREET',
'intersection_street_2': '102 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '43 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4016190015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022079',
'y_coordinate_state_plane': '211445',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.746963343817164',
'longitude': '-73.86347529799565',
'location': {'latitude': '40.746963343817164',
'longitude': '-73.86347529799565',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785769',
'created_date': '2025-01-16T23:41:59.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'GENERAL',
'descriptor': 'SIGNAGE MISSING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11218',
'incident_address': '506 AVENUE C',
'street_name': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 BROOKLYN',
'bbl': '3053740003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991242',
'y_coordinate_state_plane': '172730',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'location': {'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783729',
'created_date': '2025-01-16T23:41:59.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11218',
'incident_address': '506 AVENUE C',
'street_name': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 BROOKLYN',
'bbl': '3053740003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991242',
'y_coordinate_state_plane': '172730',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'location': {'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782972',
'created_date': '2025-01-16T23:41:59.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'SAFETY',
'descriptor': 'FIRE ESCAPE',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11218',
'incident_address': '506 AVENUE C',
'street_name': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 BROOKLYN',
'bbl': '3053740003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991242',
'y_coordinate_state_plane': '172730',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'location': {'latitude': '40.64077780137366',
'longitude': '-73.97480606735537',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783208',
'created_date': '2025-01-16T23:41:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '1794 WEST 12 STREET',
'street_name': 'WEST 12 STREET',
'cross_street_1': 'QUENTIN ROAD',
'cross_street_2': 'HIGHLAWN AVENUE',
'intersection_street_1': 'QUENTIN ROAD',
'intersection_street_2': 'HIGHLAWN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 12 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3066440045',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988540',
'y_coordinate_state_plane': '159073',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60329390942182',
'longitude': '-73.98455073088493',
'location': {'latitude': '40.60329390942182',
'longitude': '-73.98455073088493',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791987',
'created_date': '2025-01-16T23:41:41.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11355',
'incident_address': '147-25 SANFORD AVENUE',
'street_name': 'SANFORD AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 QUEENS',
'bbl': '4050530011',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035062',
'y_coordinate_state_plane': '216209',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75997421703607',
'longitude': '-73.81658382480778',
'location': {'latitude': '40.75997421703607',
'longitude': '-73.81658382480778',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790649',
'created_date': '2025-01-16T23:41:39.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '132 CROWN STREET',
'street_name': 'CROWN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3012950010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996344',
'y_coordinate_state_plane': '182135',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.666586973120474',
'longitude': '-73.95640541658757',
'location': {'latitude': '40.666586973120474',
'longitude': '-73.95640541658757',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787007',
'created_date': '2025-01-16T23:41:37.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'CEILING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11373',
'incident_address': '81-01 45 AVENUE',
'street_name': '45 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 QUEENS',
'bbl': '4015270001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016467',
'y_coordinate_state_plane': '209457',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'location': {'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782259',
'created_date': '2025-01-16T23:41:37.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'DOOR/WINDOW',
'descriptor': 'WINDOW FRAME',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11373',
'incident_address': '81-01 45 AVENUE',
'street_name': '45 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 QUEENS',
'bbl': '4015270001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016467',
'y_coordinate_state_plane': '209457',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'location': {'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789086',
'created_date': '2025-01-16T23:41:37.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'FLOORING/STAIRS',
'descriptor': 'FLOOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11373',
'incident_address': '81-01 45 AVENUE',
'street_name': '45 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 QUEENS',
'bbl': '4015270001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016467',
'y_coordinate_state_plane': '209457',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'location': {'latitude': '40.74152901218958',
'longitude': '-73.88373847898704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790551',
'created_date': '2025-01-16T23:41:36.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10037',
'incident_address': '34 WEST 139 STREET',
'street_name': 'WEST 139 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1017367501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001735',
'y_coordinate_state_plane': '236487',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81576060014264',
'longitude': '-73.93683149559669',
'location': {'latitude': '40.81576060014264',
'longitude': '-73.93683149559669',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791648',
'created_date': '2025-01-16T23:41:12.000',
'closed_date': '2025-01-17T00:39:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10012',
'incident_address': '496 LAGUARDIA PLACE',
'street_name': 'LAGUARDIA PLACE',
'cross_street_1': 'WEST HOUSTON STREET',
'cross_street_2': 'BLEECKER STREET',
'intersection_street_1': 'WEST HOUSTON STREET',
'intersection_street_2': 'BLEECKER STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'LA GUARDIA PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:39:05.000',
'community_board': '02 MANHATTAN',
'bbl': '1005257502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984370',
'y_coordinate_state_plane': '204274',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.727361634860884',
'longitude': '-73.99956704806702',
'location': {'latitude': '40.727361634860884',
'longitude': '-73.99956704806702',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786949',
'created_date': '2025-01-16T23:41:05.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dead Animal',
'descriptor': 'Cat',
'location_type': 'Street',
'incident_zip': '10462',
'incident_address': 'NEWBOLD AVENUE',
'street_name': 'NEWBOLD AVENUE',
'cross_street_1': 'CASTLE HILL AVENUE',
'cross_street_2': 'HAVEMEYER AVENUE',
'intersection_street_1': 'CASTLE HILL AVENUE',
'intersection_street_2': 'HAVEMEYER AVENUE',
'address_type': 'BLOCKFACE',
'status': 'In Progress',
'community_board': 'Unspecified BRONX',
'borough': 'BRONX',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX'},
{'unique_key': '63790412',
'created_date': '2025-01-16T23:41:01.000',
'closed_date': '2025-01-17T00:17:07.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11233',
'incident_address': '218 MAC DOUGAL STREET',
'street_name': 'MAC DOUGAL STREET',
'cross_street_1': 'THOMAS S BOYLAND STREET',
'cross_street_2': 'ROCKAWAY AVENUE',
'intersection_street_1': 'THOMAS S BOYLAND STREET',
'intersection_street_2': 'ROCKAWAY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MAC DOUGAL STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:17:09.000',
'community_board': '16 BROOKLYN',
'bbl': '3015330034',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008668',
'y_coordinate_state_plane': '187085',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68014819266674',
'longitude': '-73.91196385466242',
'location': {'latitude': '40.68014819266674',
'longitude': '-73.91196385466242',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782628',
'created_date': '2025-01-16T23:41:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Water System',
'descriptor': 'Hydrant Leaking (WC1)',
'incident_zip': '11354',
'incident_address': '135-53 NORTHERN BOULEVARD',
'street_name': 'NORTHERN BOULEVARD',
'cross_street_1': 'MAIN ST',
'cross_street_2': 'FARRINGTON ST',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'status': 'Open',
'community_board': '07 QUEENS',
'bbl': '4049580044',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1030868',
'y_coordinate_state_plane': '217311',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76302202694269',
'longitude': '-73.83171523384257',
'location': {'latitude': '40.76302202694269',
'longitude': '-73.83171523384257',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787441',
'created_date': '2025-01-16T23:40:50.000',
'closed_date': '2025-01-17T01:25:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11228',
'incident_address': '7522 15 AVENUE',
'street_name': '15 AVENUE',
'cross_street_1': 'BAY RIDGE PARKWAY',
'cross_street_2': '76 STREET',
'intersection_street_1': 'BAY RIDGE PARKWAY',
'intersection_street_2': '76 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '15 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:25:04.000',
'community_board': '11 BROOKLYN',
'bbl': '3062230046',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983354',
'y_coordinate_state_plane': '164235',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61746353187702',
'longitude': '-74.00322738543089',
'location': {'latitude': '40.61746353187702',
'longitude': '-74.00322738543089',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782499',
'created_date': '2025-01-16T23:39:56.000',
'closed_date': '2025-01-17T01:12:07.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '1702 LINDEN STREET',
'street_name': 'LINDEN STREET',
'cross_street_1': 'CYPRESS AVENUE',
'cross_street_2': 'SENECA AVENUE',
'intersection_street_1': 'CYPRESS AVENUE',
'intersection_street_2': 'SENECA AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'LINDEN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:12:11.000',
'community_board': '05 QUEENS',
'bbl': '4034520006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009169',
'y_coordinate_state_plane': '195316',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70273898063544',
'longitude': '-73.91012711421644',
'location': {'latitude': '40.70273898063544',
'longitude': '-73.91012711421644',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784903',
'created_date': '2025-01-16T23:39:54.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'DOOR/WINDOW',
'descriptor': 'WINDOW FRAME',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10462',
'incident_address': '2095 CRUGER AVENUE',
'street_name': 'CRUGER AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2042870055',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021114',
'y_coordinate_state_plane': '250125',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.853133318876914',
'longitude': '-73.86674561794703',
'location': {'latitude': '40.853133318876914',
'longitude': '-73.86674561794703',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782385',
'created_date': '2025-01-16T23:39:54.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10462',
'incident_address': '2095 CRUGER AVENUE',
'street_name': 'CRUGER AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2042870055',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021114',
'y_coordinate_state_plane': '250125',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.853133318876914',
'longitude': '-73.86674561794703',
'location': {'latitude': '40.853133318876914',
'longitude': '-73.86674561794703',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781962',
'created_date': '2025-01-16T23:39:53.000',
'closed_date': '2025-01-17T01:24:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '31-30 21 STREET',
'street_name': '21 STREET',
'cross_street_1': '31 ROAD',
'cross_street_2': '31 DRIVE',
'intersection_street_1': '31 ROAD',
'intersection_street_2': '31 DRIVE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '21 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:24:11.000',
'community_board': '01 QUEENS',
'bbl': '4005320041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003510',
'y_coordinate_state_plane': '218571',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.766582329313955',
'longitude': '-73.93047028599473',
'location': {'latitude': '40.766582329313955',
'longitude': '-73.93047028599473',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787845',
'created_date': '2025-01-16T23:39:52.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10039',
'incident_address': '2588 7 AVENUE',
'street_name': '7 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1020350001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001677',
'y_coordinate_state_plane': '239663',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82447793690331',
'longitude': '-73.93703278577436',
'location': {'latitude': '40.82447793690331',
'longitude': '-73.93703278577436',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785408',
'created_date': '2025-01-16T23:39:25.000',
'closed_date': '2025-01-17T01:39:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Non-Emergency Police Matter',
'descriptor': 'Trespassing',
'location_type': 'Residential Building/House',
'incident_zip': '10467',
'incident_address': '3202 KOSSUTH AVENUE',
'street_name': 'KOSSUTH AVENUE',
'cross_street_1': 'EAST MOSHOLU PARKWAY NORTH',
'cross_street_2': 'EAST 208 STREET',
'intersection_street_1': 'EAST MOSHOLU PARKWAY NORTH',
'intersection_street_2': 'EAST 208 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'KOSSUTH AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:39:14.000',
'community_board': '07 BRONX',
'bbl': '2033260021',
'borough': 'BRONX',
'x_coordinate_state_plane': '1016667',
'y_coordinate_state_plane': '259490',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.878854824832985',
'longitude': '-73.88277511755769',
'location': {'latitude': '40.878854824832985',
'longitude': '-73.88277511755769',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790826',
'created_date': '2025-01-16T23:39:18.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Sidewalk',
'incident_zip': '10465',
'incident_address': '3431 EAST TREMONT AVENUE',
'street_name': 'EAST TREMONT AVENUE',
'cross_street_1': 'BRUCKNER BOULEVARD',
'cross_street_2': 'OTIS AVENUE',
'intersection_street_1': 'BRUCKNER BOULEVARD',
'intersection_street_2': 'OTIS AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST TREMONT AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2054190114',
'borough': 'BRONX',
'x_coordinate_state_plane': '1031890',
'y_coordinate_state_plane': '242651',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83256784557436',
'longitude': '-73.82784618685936',
'location': {'latitude': '40.83256784557436',
'longitude': '-73.82784618685936',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791634',
'created_date': '2025-01-16T23:39:15.000',
'closed_date': '2025-01-17T00:08:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10473',
'incident_address': '2160 SEWARD AVENUE',
'street_name': 'SEWARD AVENUE',
'cross_street_1': 'OLMSTEAD AVENUE',
'cross_street_2': 'CASTLE HILL AVENUE',
'intersection_street_1': 'OLMSTEAD AVENUE',
'intersection_street_2': 'CASTLE HILL AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SEWARD AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:08:14.000',
'community_board': '09 BRONX',
'bbl': '2035700001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025796',
'y_coordinate_state_plane': '238400',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.820930848797815',
'longitude': '-73.8498939866724',
'location': {'latitude': '40.820930848797815',
'longitude': '-73.8498939866724',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788637',
'created_date': '2025-01-16T23:38:59.000',
'closed_date': '2025-01-17T01:47:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10037',
'incident_address': '630 LENOX AVENUE',
'street_name': 'LENOX AVENUE',
'cross_street_1': 'WEST 141 STREET',
'cross_street_2': 'WEST 142 STREET',
'intersection_street_1': 'WEST 141 STREET',
'intersection_street_2': 'WEST 142 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'LENOX AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:47:24.000',
'community_board': '10 MANHATTAN',
'bbl': '1017370069',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001428',
'y_coordinate_state_plane': '237337',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.818094213398375',
'longitude': '-73.93793842629789',
'location': {'latitude': '40.818094213398375',
'longitude': '-73.93793842629789',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790360',
'created_date': '2025-01-16T23:38:42.000',
'closed_date': '2025-01-17T01:38:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10468',
'incident_address': '2855 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'EAST 198 STREET',
'cross_street_2': 'MINERVA PLACE',
'intersection_street_1': 'EAST 198 STREET',
'intersection_street_2': 'MINERVA PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:38:24.000',
'community_board': '07 BRONX',
'bbl': '2033190001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014445',
'y_coordinate_state_plane': '256358',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.870266337436604',
'longitude': '-73.89082432011949',
'location': {'latitude': '40.870266337436604',
'longitude': '-73.89082432011949',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783712',
'created_date': '2025-01-16T23:38:37.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '132 CROWN STREET',
'street_name': 'CROWN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3012950010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996344',
'y_coordinate_state_plane': '182135',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.666586973120474',
'longitude': '-73.95640541658757',
'location': {'latitude': '40.666586973120474',
'longitude': '-73.95640541658757',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791700',
'created_date': '2025-01-16T23:38:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10027',
'incident_address': '248 WEST 132 STREET',
'street_name': 'WEST 132 STREET',
'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 132 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:50:26.000',
'community_board': '10 MANHATTAN',
'bbl': '1019370150',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999046',
'y_coordinate_state_plane': '235838',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81398418999208',
'longitude': '-73.94654754241463',
'location': {'latitude': '40.81398418999208',
'longitude': '-73.94654754241463',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786283',
'created_date': '2025-01-16T23:38:18.000',
'closed_date': '2025-01-17T01:18:35.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10457',
'incident_address': '1755 EASTBURN AVENUE',
'street_name': 'EASTBURN AVENUE',
'cross_street_1': 'CROSS BRONX EXPRESSWAY',
'cross_street_2': 'EAST 175 STREET',
'intersection_street_1': 'CROSS BRONX EXPRESSWAY',
'intersection_street_2': 'EAST 175 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EASTBURN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:18:40.000',
'community_board': '05 BRONX',
'bbl': '2027950038',
'borough': 'BRONX',
'x_coordinate_state_plane': '1009595',
'y_coordinate_state_plane': '247456',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84584828787941',
'longitude': '-73.90839404961551',
'location': {'latitude': '40.84584828787941',
'longitude': '-73.90839404961551',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790656',
'created_date': '2025-01-16T23:38:17.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10030',
'incident_address': '113 WEST 144 STREET',
'street_name': 'WEST 144 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1020130024',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001576',
'y_coordinate_state_plane': '238055',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82006463172612',
'longitude': '-73.93740187063955',
'location': {'latitude': '40.82006463172612',
'longitude': '-73.93740187063955',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788025',
'created_date': '2025-01-16T23:38:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Lead',
'descriptor': 'Lead Kit Request (Residential) (L10)',
'incident_zip': '11435',
'incident_address': '88-27 145 STREET',
'street_name': '145 STREET',
'cross_street_1': '88 AVE',
'cross_street_2': '89 AVE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '12 QUEENS',
'bbl': '4096870026',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036685',
'y_coordinate_state_plane': '195827',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70402128423499',
'longitude': '-73.81088413472584',
'location': {'latitude': '40.70402128423499',
'longitude': '-73.81088413472584',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791701',
'created_date': '2025-01-16T23:37:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '253 BUSHWICK AVENUE',
'street_name': 'BUSHWICK AVENUE',
'cross_street_1': 'MONTROSE AVENUE',
'cross_street_2': 'JOHNSON AVENUE',
'intersection_street_1': 'MONTROSE AVENUE',
'intersection_street_2': 'JOHNSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BUSHWICK AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:03:41.000',
'community_board': '01 BROOKLYN',
'bbl': '3030640027',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000949',
'y_coordinate_state_plane': '196975',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.7073118741198',
'longitude': '-73.9397692472213',
'location': {'latitude': '40.7073118741198',
'longitude': '-73.9397692472213',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785383',
'created_date': '2025-01-16T23:37:41.000',
'closed_date': '2025-01-17T01:36:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11416',
'incident_address': '97-12 90 STREET',
'street_name': '90 STREET',
'cross_street_1': '97 AVENUE',
'cross_street_2': '101 AVENUE',
'intersection_street_1': '97 AVENUE',
'intersection_street_2': '101 AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '90 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:36:45.000',
'community_board': '09 QUEENS',
'bbl': '4090630009',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025576',
'y_coordinate_state_plane': '188684',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.6844742882216',
'longitude': '-73.85099439299005',
'location': {'latitude': '40.6844742882216',
'longitude': '-73.85099439299005',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791702',
'created_date': '2025-01-16T23:37:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10026',
'incident_address': '110 WEST 111 STREET',
'street_name': 'WEST 111 STREET',
'cross_street_1': 'ST NICHOLAS AVENUE',
'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_1': 'ST NICHOLAS AVENUE',
'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 111 STREET',
'status': 'In Progress',
'community_board': '10 MANHATTAN',
'bbl': '1018200041',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997280',
'y_coordinate_state_plane': '230456',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79921486858024',
'longitude': '-73.95293788973842',
'location': {'latitude': '40.79921486858024',
'longitude': '-73.95293788973842',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790468',
'created_date': '2025-01-16T23:37:14.000',
'closed_date': '2025-01-17T00:05:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11226',
'incident_address': '179 LINDEN BOULEVARD',
'street_name': 'LINDEN BOULEVARD',
'cross_street_1': 'ROGERS AVENUE',
'cross_street_2': 'NOSTRAND AVENUE',
'intersection_street_1': 'ROGERS AVENUE',
'intersection_street_2': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'LINDEN BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:05:52.000',
'community_board': '17 BROOKLYN',
'bbl': '3050850090',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997612',
'y_coordinate_state_plane': '177018',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65254011371671',
'longitude': '-73.95184486671171',
'location': {'latitude': '40.65254011371671',
'longitude': '-73.95184486671171',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790122',
'created_date': '2025-01-16T23:36:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11105',
'incident_address': '22-30 47 STREET',
'street_name': '47 STREET',
'cross_street_1': 'DITMARS BOULEVARD',
'cross_street_2': 'ASTORIA BOULEVARD NORTH',
'intersection_street_1': 'DITMARS BOULEVARD',
'intersection_street_2': 'ASTORIA BOULEVARD NORTH',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '47 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4007680064',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1011248',
'y_coordinate_state_plane': '219531',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7691970339008',
'longitude': '-73.90253182199427',
'location': {'latitude': '40.7691970339008',
'longitude': '-73.90253182199427',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790289',
'created_date': '2025-01-16T23:36:44.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11229',
'incident_address': '2301 EAST 23 STREET',
'street_name': 'EAST 23 STREET',
'cross_street_1': 'AVENUE W',
'cross_street_2': 'AVENUE X',
'intersection_street_1': 'AVENUE W',
'intersection_street_2': 'AVENUE X',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 23 STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074050301',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998805',
'y_coordinate_state_plane': '156009',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59487293672661',
'longitude': '-73.94759073051542',
'location': {'latitude': '40.59487293672661',
'longitude': '-73.94759073051542',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790113',
'created_date': '2025-01-16T23:36:02.000',
'closed_date': '2025-01-17T00:29:39.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3881 SEDGWICK AVENUE',
'street_name': 'SEDGWICK AVENUE',
'cross_street_1': 'STEVENSON PLACE',
'cross_street_2': 'STEVENSON PLACE',
'intersection_street_1': 'STEVENSON PLACE',
'intersection_street_2': 'STEVENSON PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SEDGWICK AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T00:29:42.000',
'community_board': '08 BRONX',
'bbl': '2032630284',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013560',
'y_coordinate_state_plane': '261001',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.883012911975115',
'longitude': '-73.89400388657018',
'location': {'latitude': '40.883012911975115',
'longitude': '-73.89400388657018',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791735',
'created_date': '2025-01-16T23:35:39.000',
'closed_date': '2025-01-17T01:20:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '601 WEST 188 STREET',
'street_name': 'WEST 188 STREET',
'cross_street_1': 'ST NICHOLAS AVENUE',
'cross_street_2': 'WADSWORTH AVENUE',
'intersection_street_1': 'ST NICHOLAS AVENUE',
'intersection_street_2': 'WADSWORTH AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 188 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:20:55.000',
'community_board': '12 MANHATTAN',
'bbl': '1021680051',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003416',
'y_coordinate_state_plane': '250337',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.853771351956524',
'longitude': '-73.93071893264542',
'location': {'latitude': '40.853771351956524',
'longitude': '-73.93071893264542',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787246',
'created_date': '2025-01-16T23:35:39.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'License Plate Obscured',
'location_type': 'Street/Sidewalk',
'incident_zip': '10465',
'incident_address': '2825 CROSS BRONX EXPRESSWAY',
'street_name': 'CROSS BRONX EXPRESSWAY',
'cross_street_1': 'SWINTON AVENUE',
'cross_street_2': 'CROSS BRONX EP NB EN RANDALL AV',
'intersection_street_1': 'SWINTON AVENUE',
'intersection_street_2': 'CROSS BRONX EP NB EN RANDALL AV',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CROSS BRONX EXPRESSWAY',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2055460131',
'borough': 'BRONX',
'x_coordinate_state_plane': '1032357',
'y_coordinate_state_plane': '240085',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82552239205253',
'longitude': '-73.8261770213522',
'location': {'latitude': '40.82552239205253',
'longitude': '-73.8261770213522',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782387',
'created_date': '2025-01-16T23:35:36.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '3661 BROADWAY',
'street_name': 'BROADWAY',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020980029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998744',
'y_coordinate_state_plane': '241790',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83032124379424',
'longitude': '-73.94762569984421',
'location': {'latitude': '40.83032124379424',
'longitude': '-73.94762569984421',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783386',
'created_date': '2025-01-16T23:35:26.000',
'closed_date': '2025-01-17T01:33:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11229',
'incident_address': '1525 EAST 26 STREET',
'street_name': 'EAST 26 STREET',
'cross_street_1': 'KINGS HIGHWAY',
'cross_street_2': 'AVENUE P',
'intersection_street_1': 'KINGS HIGHWAY',
'intersection_street_2': 'AVENUE P',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 26 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:33:29.000',
'community_board': '15 BROOKLYN',
'bbl': '3067730080',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998660',
'y_coordinate_state_plane': '162577',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.612900992683514',
'longitude': '-73.94809883015722',
'location': {'latitude': '40.612900992683514',
'longitude': '-73.94809883015722',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790735',
'created_date': '2025-01-16T23:35:19.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11210',
'incident_address': '3210 AVENUE H',
'street_name': 'AVENUE H',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '17 BROOKLYN',
'bbl': '3075780057',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999406',
'y_coordinate_state_plane': '169457',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63178390751244',
'longitude': '-73.9453964812421',
'location': {'latitude': '40.63178390751244',
'longitude': '-73.9453964812421',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787681',
'created_date': '2025-01-16T23:35:04.000',
'closed_date': '2025-01-17T01:33:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11235',
'incident_address': '3902 NOSTRAND AVENUE',
'street_name': 'NOSTRAND AVENUE',
'cross_street_1': 'AVENUE Z',
'cross_street_2': 'VOORHIES AVENUE',
'intersection_street_1': 'AVENUE Z',
'intersection_street_2': 'VOORHIES AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NOSTRAND AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:33:59.000',
'community_board': '15 BROOKLYN',
'bbl': '3074740001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001020',
'y_coordinate_state_plane': '153705',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58854500573709',
'longitude': '-73.93962073628525',
'location': {'latitude': '40.58854500573709',
'longitude': '-73.93962073628525',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783585',
'created_date': '2025-01-16T23:35:03.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10034',
'incident_address': '127 POST AVENUE',
'street_name': 'POST AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1022190016',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1006400',
'y_coordinate_state_plane': '254283',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86459495054377',
'longitude': '-73.91991936455705',
'location': {'latitude': '40.86459495054377',
'longitude': '-73.91991936455705',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790924',
'created_date': '2025-01-16T23:35:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Lead',
'descriptor': 'Lead Kit Request (Residential) (L10)',
'incident_zip': '10019',
'incident_address': '749 9 AVENUE',
'street_name': '9 AVENUE',
'cross_street_1': 'W 50 ST',
'cross_street_2': 'W 51 ST',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '04 MANHATTAN',
'bbl': '1010600033',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987372',
'y_coordinate_state_plane': '217551',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.76380312175314',
'longitude': '-73.98872987087171',
'location': {'latitude': '40.76380312175314',
'longitude': '-73.98872987087171',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787763',
'created_date': '2025-01-16T23:34:56.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11210',
'incident_address': '2808 GLENWOOD ROAD',
'street_name': 'GLENWOOD ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '14 BROOKLYN',
'bbl': '3075570035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998111',
'y_coordinate_state_plane': '170307',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63411909801835',
'longitude': '-73.95006031605635',
'location': {'latitude': '40.63411909801835',
'longitude': '-73.95006031605635',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783133',
'created_date': '2025-01-16T23:34:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11357',
'incident_address': '19-17 PARSONS BOULEVARD',
'street_name': 'PARSONS BOULEVARD',
'cross_street_1': '19 AVENUE',
'cross_street_2': '20 AVENUE',
'intersection_street_1': '19 AVENUE',
'intersection_street_2': '20 AVENUE',
'address_type': 'ADDRESS',
'city': 'WHITESTONE',
'landmark': 'PARSONS BOULEVARD',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4046300005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033605',
'y_coordinate_state_plane': '224356',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78234381402753',
'longitude': '-73.82178331479268',
'location': {'latitude': '40.78234381402753',
'longitude': '-73.82178331479268',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787669',
'created_date': '2025-01-16T23:34:18.000',
'closed_date': '2025-01-17T01:18:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11207',
'incident_address': '16 PILLING STREET',
'street_name': 'PILLING STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'BUSHWICK AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'BUSHWICK AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'PILLING STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:18:49.000',
'community_board': '04 BROOKLYN',
'bbl': '3034560017',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1009546',
'y_coordinate_state_plane': '188020',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68271208824342',
'longitude': '-73.90879482424174',
'location': {'latitude': '40.68271208824342',
'longitude': '-73.90879482424174',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788860',
'created_date': '2025-01-16T23:34:09.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '11238',
'incident_address': '545 PROSPECT PLACE',
'street_name': 'PROSPECT PLACE',
'cross_street_1': 'CLASSON AVENUE',
'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
'intersection_street_1': 'CLASSON AVENUE',
'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'PROSPECT PLACE',
'status': 'In Progress',
'community_board': '08 BROOKLYN',
'bbl': '3011560080',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995761',
'y_coordinate_state_plane': '185382',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6755000375337',
'longitude': '-73.95850137979879',
'location': {'latitude': '40.6755000375337',
'longitude': '-73.95850137979879',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785945',
'created_date': '2025-01-16T23:33:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '53-08 90 STREET',
'street_name': '90 STREET',
'cross_street_1': '53 AVENUE',
'cross_street_2': '54 AVENUE',
'intersection_street_1': '53 AVENUE',
'intersection_street_2': '54 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '90 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4018397501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019300',
'y_coordinate_state_plane': '208166',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73797476734915',
'longitude': '-73.87352176931351',
'location': {'latitude': '40.73797476734915',
'longitude': '-73.87352176931351',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784716',
'created_date': '2025-01-16T23:33:38.000',
'closed_date': '2025-01-16T23:57:17.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10012',
'incident_address': '142 SULLIVAN STREET',
'street_name': 'SULLIVAN STREET',
'cross_street_1': 'PRINCE STREET',
'cross_street_2': 'WEST HOUSTON STREET',
'intersection_street_1': 'PRINCE STREET',
'intersection_street_2': 'WEST HOUSTON STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SULLIVAN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-16T23:57:19.000',
'community_board': '02 MANHATTAN',
'bbl': '1005180037',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983707',
'y_coordinate_state_plane': '204136',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72698284261811',
'longitude': '-74.0019590963611',
'location': {'latitude': '40.72698284261811',
'longitude': '-74.0019590963611',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792024',
'created_date': '2025-01-16T23:33:22.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '736 RIVERSIDE DRIVE',
'street_name': 'RIVERSIDE DRIVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020970047',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998221',
'y_coordinate_state_plane': '241946',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83075026178137',
'longitude': '-73.94951524337782',
'location': {'latitude': '40.83075026178137',
'longitude': '-73.94951524337782',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788835',
'created_date': '2025-01-16T23:32:58.000',
'closed_date': '2025-01-17T00:15:40.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11218',
'incident_address': '333 MCDONALD AVENUE',
'street_name': 'MCDONALD AVENUE',
'cross_street_1': 'CATON AVENUE',
'cross_street_2': 'ALBEMARLE ROAD',
'intersection_street_1': 'CATON AVENUE',
'intersection_street_2': 'ALBEMARLE ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MCDONALD AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:15:43.000',
'community_board': '12 BROOKLYN',
'bbl': '3053240001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989783',
'y_coordinate_state_plane': '174683',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64613939776511',
'longitude': '-73.98006160894715',
'location': {'latitude': '40.64613939776511',
'longitude': '-73.98006160894715',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787112',
'created_date': '2025-01-16T23:32:46.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'WATER LEAK',
'descriptor': 'HEAVY FLOW',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '2100 WESTBURY COURT',
'street_name': 'WESTBURY COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3050260257',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995154',
'y_coordinate_state_plane': '178522',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65667163234827',
'longitude': '-73.96070078703764',
'location': {'latitude': '40.65667163234827',
'longitude': '-73.96070078703764',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792047',
'created_date': '2025-01-16T23:32:46.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'CEILING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '2100 WESTBURY COURT',
'street_name': 'WESTBURY COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3050260257',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995154',
'y_coordinate_state_plane': '178522',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65667163234827',
'longitude': '-73.96070078703764',
'location': {'latitude': '40.65667163234827',
'longitude': '-73.96070078703764',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790255',
'created_date': '2025-01-16T23:32:34.000',
'closed_date': '2025-01-17T00:24:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11103',
'incident_address': '25-72 STEINWAY STREET',
'street_name': 'STEINWAY STREET',
'cross_street_1': '25 AVENUE',
'cross_street_2': '28 AVENUE',
'intersection_street_1': '25 AVENUE',
'intersection_street_2': '28 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': 'STEINWAY STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:24:59.000',
'community_board': '01 QUEENS',
'bbl': '4006540093',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1008614',
'y_coordinate_state_plane': '218923',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76753588454479',
'longitude': '-73.91204328591014',
'location': {'latitude': '40.76753588454479',
'longitude': '-73.91204328591014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785864',
'created_date': '2025-01-16T23:32:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3880 SEDGWICK AVENUE',
'street_name': 'SEDGWICK AVENUE',
'cross_street_1': 'STEVENSON PLACE',
'cross_street_2': 'STEVENSON PLACE',
'intersection_street_1': 'STEVENSON PLACE',
'intersection_street_2': 'STEVENSON PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SEDGWICK AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:52:30.000',
'community_board': '08 BRONX',
'bbl': '2032460076',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013559',
'y_coordinate_state_plane': '260995',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8829964471808',
'longitude': '-73.89400752920206',
'location': {'latitude': '40.8829964471808',
'longitude': '-73.89400752920206',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784453',
'created_date': '2025-01-16T23:32:21.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Non-Residential Heat',
'descriptor': 'Inadequate or No Heat',
'location_type': 'Building (Non-Residential)',
'incident_zip': '11225',
'incident_address': '486 BROOKLYN AVENUE',
'street_name': 'BROOKLYN AVENUE',
'cross_street_1': 'STERLING STREET',
'cross_street_2': 'LEFFERTS AVENUE',
'intersection_street_1': 'STERLING STREET',
'intersection_street_2': 'LEFFERTS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BROOKLYN AVENUE',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3013220032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999344',
'y_coordinate_state_plane': '180820',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66297298421168',
'longitude': '-73.94559442643347',
'location': {'latitude': '40.66297298421168',
'longitude': '-73.94559442643347',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790525',
'created_date': '2025-01-16T23:32:20.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11375',
'incident_address': '66-25 103 STREET',
'street_name': '103 STREET',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '06 QUEENS',
'bbl': '4021320045',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025479',
'y_coordinate_state_plane': '205076',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.729466843681784',
'longitude': '-73.85124376881488',
'location': {'latitude': '40.729466843681784',
'longitude': '-73.85124376881488',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785050',
'created_date': '2025-01-16T23:32:18.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '454 WEST 148 STREET',
'street_name': 'WEST 148 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020620054',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999392',
'y_coordinate_state_plane': '240493',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82676026302443',
'longitude': '-73.9452870694209',
'location': {'latitude': '40.82676026302443',
'longitude': '-73.9452870694209',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784219',
'created_date': '2025-01-16T23:32:18.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'GARBAGE/RECYCLING STORAGE',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10460',
'incident_address': '867 CROTONA PARK NORTH',
'street_name': 'CROTONA PARK NORTH',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '06 BRONX',
'bbl': '2029570008',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014819',
'y_coordinate_state_plane': '245148',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83949696796321',
'longitude': '-73.88952317285097',
'location': {'latitude': '40.83949696796321',
'longitude': '-73.88952317285097',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782007',
'created_date': '2025-01-16T23:32:17.000',
'closed_date': '2025-01-17T00:44:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11217',
'incident_address': '68 NEVINS STREET',
'street_name': 'NEVINS STREET',
'cross_street_1': 'STATE STREET',
'cross_street_2': 'ATLANTIC AVENUE',
'intersection_street_1': 'STATE STREET',
'intersection_street_2': 'ATLANTIC AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NEVINS STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T00:44:04.000',
'community_board': '02 BROOKLYN',
'bbl': '3001780040',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989157',
'y_coordinate_state_plane': '189435',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.686630725619224',
'longitude': '-73.98230668800166',
'location': {'latitude': '40.686630725619224',
'longitude': '-73.98230668800166',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791934',
'created_date': '2025-01-16T23:32:09.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10040',
'incident_address': '559 WEST 188 STREET',
'street_name': 'WEST 188 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1021580055',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003733',
'y_coordinate_state_plane': '250162',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.85329033535188',
'longitude': '-73.92957355325696',
'location': {'latitude': '40.85329033535188',
'longitude': '-73.92957355325696',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782846',
'created_date': '2025-01-16T23:32:00.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'CEILING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '835 NOSTRAND AVENUE',
'street_name': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3012760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997941',
'y_coordinate_state_plane': '182725',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'location': {'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785660',
'created_date': '2025-01-16T23:32:00.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'MOLD',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '835 NOSTRAND AVENUE',
'street_name': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3012760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997941',
'y_coordinate_state_plane': '182725',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'location': {'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784295',
'created_date': '2025-01-16T23:32:00.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'WATER LEAK',
'descriptor': 'SLOW LEAK',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11225',
'incident_address': '835 NOSTRAND AVENUE',
'street_name': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3012760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997941',
'y_coordinate_state_plane': '182725',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'location': {'latitude': '40.66820406598287',
'longitude': '-73.95064760056546',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786207',
'created_date': '2025-01-16T23:31:50.000',
'closed_date': '2025-01-17T01:19:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10034',
'incident_address': '610 WEST 204 STREET',
'street_name': 'WEST 204 STREET',
'cross_street_1': 'SHERMAN AVENUE',
'cross_street_2': 'VERMILYEA AVENUE',
'intersection_street_1': 'SHERMAN AVENUE',
'intersection_street_2': 'VERMILYEA AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 204 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:19:08.000',
'community_board': '12 MANHATTAN',
'bbl': '1022250020',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1005783',
'y_coordinate_state_plane': '254613',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86550222674629',
'longitude': '-73.92214899161553',
'location': {'latitude': '40.86550222674629',
'longitude': '-73.92214899161553',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786958',
'created_date': '2025-01-16T23:31:40.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dead Animal',
'descriptor': 'Cat',
'location_type': 'Street',
'incident_zip': '11203',
'incident_address': '142 EAST 51 STREET',
'street_name': 'EAST 51 STREET',
'cross_street_1': 'RUTLAND ROAD',
'cross_street_2': 'WINTHROP STREET',
'intersection_street_1': 'RUTLAND ROAD',
'intersection_street_2': 'WINTHROP STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 51 STREET',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3046040040',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003631',
'y_coordinate_state_plane': '179344',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65891334493365',
'longitude': '-73.93014639613295',
'location': {'latitude': '40.65891334493365',
'longitude': '-73.93014639613295',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789047',
'created_date': '2025-01-16T23:31:14.000',
'closed_date': '2025-01-16T23:43:57.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11249',
'incident_address': '75 WILSON STREET',
'street_name': 'WILSON STREET',
'cross_street_1': 'WYTHE PLACE',
'cross_street_2': 'BEDFORD AVENUE',
'intersection_street_1': 'WYTHE PLACE',
'intersection_street_2': 'BEDFORD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WILSON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-16T23:44:01.000',
'community_board': '01 BROOKLYN',
'bbl': '3021760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994234',
'y_coordinate_state_plane': '195909',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.704396080630595',
'longitude': '-73.96399080765072',
'location': {'latitude': '40.704396080630595',
'longitude': '-73.96399080765072',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791248',
'created_date': '2025-01-16T23:31:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Lamppost Knocked Down',
'incident_zip': '10465',
'intersection_street_1': 'BRINSMADE AVENUE',
'intersection_street_2': 'BRUCKNER BOULEVARD',
'address_type': 'INTERSECTION',
'city': 'BRONX',
'status': 'Open',
'community_board': '10 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1030767',
'y_coordinate_state_plane': '241948',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83064430228639',
'longitude': '-73.8319091693415',
'location': {'latitude': '40.83064430228639',
'longitude': '-73.8319091693415',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788853',
'created_date': '2025-01-16T23:30:57.000',
'closed_date': '2025-01-17T00:44:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '99-19 66 ROAD',
'street_name': '66 ROAD',
'cross_street_1': '99 STREET',
'cross_street_2': '102 STREET',
'intersection_street_1': '99 STREET',
'intersection_street_2': '102 STREET',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': '66 ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:44:20.000',
'community_board': '06 QUEENS',
'bbl': '4021170001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024691',
'y_coordinate_state_plane': '204456',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72776873522445',
'longitude': '-73.85409063183133',
'location': {'latitude': '40.72776873522445',
'longitude': '-73.85409063183133',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782469',
'created_date': '2025-01-16T23:30:49.000',
'closed_date': '2025-01-17T00:43:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11356',
'incident_address': '22-30 124 STREET',
'street_name': '124 STREET',
'cross_street_1': '22 AVENUE',
'cross_street_2': '23 AVENUE',
'intersection_street_1': '22 AVENUE',
'intersection_street_2': '23 AVENUE',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': '124 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:44:00.000',
'community_board': '07 QUEENS',
'bbl': '4041990032',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027386',
'y_coordinate_state_plane': '223341',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77959045228825',
'longitude': '-73.844246058087',
'location': {'latitude': '40.77959045228825',
'longitude': '-73.844246058087',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790130',
'created_date': '2025-01-16T23:30:24.000',
'closed_date': '2025-01-17T01:09:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '3605 SEDGWICK AVENUE',
'street_name': 'SEDGWICK AVENUE',
'cross_street_1': 'GILES PLACE',
'cross_street_2': 'WEST 238 STREET',
'intersection_street_1': 'GILES PLACE',
'intersection_street_2': 'WEST 238 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SEDGWICK AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:09:34.000',
'community_board': '08 BRONX',
'bbl': '2032580190',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012875',
'y_coordinate_state_plane': '260464',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88154126381984',
'longitude': '-73.89648339982303',
'location': {'latitude': '40.88154126381984',
'longitude': '-73.89648339982303',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786184',
'created_date': '2025-01-16T23:30:02.000',
'closed_date': '2025-01-16T23:44:13.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11249',
'incident_address': '75 WILSON STREET',
'street_name': 'WILSON STREET',
'cross_street_1': 'WYTHE PLACE',
'cross_street_2': 'BEDFORD AVENUE',
'intersection_street_1': 'WYTHE PLACE',
'intersection_street_2': 'BEDFORD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WILSON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-16T23:44:16.000',
'community_board': '01 BROOKLYN',
'bbl': '3021760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994234',
'y_coordinate_state_plane': '195909',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.704396080630595',
'longitude': '-73.96399080765072',
'location': {'latitude': '40.704396080630595',
'longitude': '-73.96399080765072',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783947',
'created_date': '2025-01-16T23:29:32.000',
'closed_date': '2025-01-17T00:56:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '549 61 STREET',
'street_name': '61 STREET',
'cross_street_1': '5 AVENUE',
'cross_street_2': '6 AVENUE',
'intersection_street_1': '5 AVENUE',
'intersection_street_2': '6 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '61 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:56:45.000',
'community_board': '07 BROOKLYN',
'bbl': '3057830057',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '979899',
'y_coordinate_state_plane': '171809',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63825154455137',
'longitude': '-74.01567715247015',
'location': {'latitude': '40.63825154455137',
'longitude': '-74.01567715247015',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782522',
'created_date': '2025-01-16T23:29:14.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10467',
'incident_address': '2300 OLINVILLE AVENUE',
'street_name': 'OLINVILLE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2043420010',
'borough': 'BRONX',
'x_coordinate_state_plane': '1020615',
'y_coordinate_state_plane': '252556',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.859807748903336',
'longitude': '-73.86853619067516',
'location': {'latitude': '40.859807748903336',
'longitude': '-73.86853619067516',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782490',
'created_date': '2025-01-16T23:28:51.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10474',
'incident_address': '617 CASANOVA STREET',
'street_name': 'CASANOVA STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BRONX',
'bbl': '2027650102',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014773',
'y_coordinate_state_plane': '235218',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.81224212502118',
'longitude': '-73.88973459130148',
'location': {'latitude': '40.81224212502118',
'longitude': '-73.88973459130148',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785033',
'created_date': '2025-01-16T23:28:47.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11212',
'incident_address': '2 EAST 96 STREET',
'street_name': 'EAST 96 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '17 BROOKLYN',
'bbl': '3045980009',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004748',
'y_coordinate_state_plane': '181658',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66526224611954',
'longitude': '-73.92611343701125',
'location': {'latitude': '40.66526224611954',
'longitude': '-73.92611343701125',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791273',
'created_date': '2025-01-16T23:28:38.000',
'closed_date': '2025-01-17T00:44:33.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '99-49 66 ROAD',
'street_name': '66 ROAD',
'cross_street_1': '99 STREET',
'cross_street_2': '102 STREET',
'intersection_street_1': '99 STREET',
'intersection_street_2': '102 STREET',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': '66 ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:44:35.000',
'community_board': '06 QUEENS',
'bbl': '4021170001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024699',
'y_coordinate_state_plane': '204459',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72777693290292',
'longitude': '-73.85406175020017',
'location': {'latitude': '40.72777693290292',
'longitude': '-73.85406175020017',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784687',
'created_date': '2025-01-16T23:28:21.000',
'closed_date': '2025-01-17T01:37:56.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '71-28 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': '71 PLACE',
'cross_street_2': '72 STREET',
'intersection_street_1': '71 PLACE',
'intersection_street_2': '72 STREET',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'MYRTLE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:37:59.000',
'community_board': '05 QUEENS',
'bbl': '4037100019',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1017792',
'y_coordinate_state_plane': '195086',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70207920075584',
'longitude': '-73.87902857538235',
'location': {'latitude': '40.70207920075584',
'longitude': '-73.87902857538235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787562',
'created_date': '2025-01-16T23:27:37.000',
'closed_date': '2025-01-16T23:29:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '177 SANDS STREET',
'street_name': 'SANDS STREET',
'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'cross_street_2': 'BIKE PATH',
'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'intersection_street_2': 'BIKE PATH',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SANDS STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-16T23:29:18.000',
'community_board': '02 BROOKLYN',
'bbl': '3000680001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988793',
'y_coordinate_state_plane': '194233',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.699800319891985',
'longitude': '-73.98361593748928',
'location': {'latitude': '40.699800319891985',
'longitude': '-73.98361593748928',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788633',
'created_date': '2025-01-16T23:26:58.000',
'closed_date': '2025-01-17T01:24:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '80 VAN CORTLANDT PARK SOUTH',
'street_name': 'VAN CORTLANDT PARK SOUTH',
'cross_street_1': 'HILLMAN AVENUE',
'cross_street_2': 'GOUVERNEUR AVENUE',
'intersection_street_1': 'HILLMAN AVENUE',
'intersection_street_2': 'GOUVERNEUR AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'VAN CORTLANDT PARK SOUTH',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:24:23.000',
'community_board': '08 BRONX',
'bbl': '2032520209',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014669',
'y_coordinate_state_plane': '261619',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88470537463531',
'longitude': '-73.88999051795918',
'location': {'latitude': '40.88470537463531',
'longitude': '-73.88999051795918',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787546',
'created_date': '2025-01-16T23:26:50.000',
'closed_date': '2025-01-16T23:52:04.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10032',
'incident_address': '2145 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 166 STREET',
'cross_street_2': 'WEST 167 STREET',
'intersection_street_1': 'WEST 166 STREET',
'intersection_street_2': 'WEST 167 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-16T23:52:09.000',
'community_board': '12 MANHATTAN',
'bbl': '1021110083',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001495',
'y_coordinate_state_plane': '244885',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'location': {'latitude': '40.8388111804014',
'longitude': '-73.93767696356736',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790604',
'created_date': '2025-01-16T23:26:28.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10458',
'incident_address': '2421 LORILLARD PLACE',
'street_name': 'LORILLARD PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '06 BRONX',
'bbl': '2030560045',
'borough': 'BRONX',
'x_coordinate_state_plane': '1015028',
'y_coordinate_state_plane': '251514',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.856969019679994',
'longitude': '-73.88873862247495',
'location': {'latitude': '40.856969019679994',
'longitude': '-73.88873862247495',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787804',
'created_date': '2025-01-16T23:26:26.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10467',
'incident_address': '3346 HULL AVENUE',
'street_name': 'HULL AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 BRONX',
'bbl': '2033520029',
'borough': 'BRONX',
'x_coordinate_state_plane': '1019145',
'y_coordinate_state_plane': '259108',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.877796904633854',
'longitude': '-73.87381628837076',
'location': {'latitude': '40.877796904633854',
'longitude': '-73.87381628837076',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786539',
'created_date': '2025-01-16T23:26:24.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10467',
'incident_address': '3459 DEKALB AVENUE',
'street_name': 'DEKALB AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 BRONX',
'bbl': '2033270124',
'borough': 'BRONX',
'x_coordinate_state_plane': '1017125',
'y_coordinate_state_plane': '260497',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88161703030082',
'longitude': '-73.88111397862994',
'location': {'latitude': '40.88161703030082',
'longitude': '-73.88111397862994',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787744',
'created_date': '2025-01-16T23:26:01.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10462',
'incident_address': '2009 CRUGER AVENUE',
'street_name': 'CRUGER AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2042570040',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021091',
'y_coordinate_state_plane': '249158',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.850479289891744',
'longitude': '-73.86683407105077',
'location': {'latitude': '40.850479289891744',
'longitude': '-73.86683407105077',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790479',
'created_date': '2025-01-16T23:26:01.000',
'closed_date': '2025-01-16T23:46:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10014',
'incident_address': '15 BARROW STREET',
'street_name': 'BARROW STREET',
'cross_street_1': 'WEST 4 STREET',
'cross_street_2': '7 AVENUE SOUTH',
'intersection_street_1': 'WEST 4 STREET',
'intersection_street_2': '7 AVENUE SOUTH',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BARROW STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-16T23:46:53.000',
'community_board': '02 MANHATTAN',
'bbl': '1005900064',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983496',
'y_coordinate_state_plane': '206191',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73262329962201',
'longitude': '-74.00272059612125',
'location': {'latitude': '40.73262329962201',
'longitude': '-74.00272059612125',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792432',
'created_date': '2025-01-16T23:26:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11222',
'intersection_street_1': 'GRAHAM AVENUE',
'intersection_street_2': 'MEEKER AVENUE',
'address_type': 'INTERSECTION',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '01 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999329',
'y_coordinate_state_plane': '201439',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.719567396229145',
'longitude': '-73.94560234054737',
'location': {'latitude': '40.719567396229145',
'longitude': '-73.94560234054737',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791275',
'created_date': '2025-01-16T23:25:58.000',
'closed_date': '2025-01-17T01:29:51.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11219',
'incident_address': '981 52 STREET',
'street_name': '52 STREET',
'cross_street_1': '9 AVENUE',
'cross_street_2': '10 AVENUE',
'intersection_street_1': '9 AVENUE',
'intersection_street_2': '10 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '52 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:29:55.000',
'community_board': '12 BROOKLYN',
'bbl': '3056520050',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '983951',
'y_coordinate_state_plane': '171613',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63771463001025',
'longitude': '-74.00107732264956',
'location': {'latitude': '40.63771463001025',
'longitude': '-74.00107732264956',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790664',
'created_date': '2025-01-16T23:25:51.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11212',
'incident_address': '1063 WILLMOHR STREET',
'street_name': 'WILLMOHR STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '17 BROOKLYN',
'bbl': '3046690010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006790',
'y_coordinate_state_plane': '178424',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65638067004004',
'longitude': '-73.91876371111498',
'location': {'latitude': '40.65638067004004',
'longitude': '-73.91876371111498',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784789',
'created_date': '2025-01-16T23:25:49.000',
'closed_date': '2025-01-17T01:24:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '92 VAN CORTLANDT PARK SOUTH',
'street_name': 'VAN CORTLANDT PARK SOUTH',
'cross_street_1': 'GOUVERNEUR AVENUE',
'cross_street_2': 'ORLOFF AVENUE',
'intersection_street_1': 'GOUVERNEUR AVENUE',
'intersection_street_2': 'ORLOFF AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'VAN CORTLANDT PARK SOUTH',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:24:46.000',
'community_board': '08 BRONX',
'bbl': '2032520287',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014357',
'y_coordinate_state_plane': '261697',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.884920529983056',
'longitude': '-73.89111850563759',
'location': {'latitude': '40.884920529983056',
'longitude': '-73.89111850563759',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783703',
'created_date': '2025-01-16T23:25:48.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10456',
'incident_address': '595 EAST 170 STREET',
'street_name': 'EAST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 BRONX',
'bbl': '2029320004',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011673',
'y_coordinate_state_plane': '243282',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83438567166922',
'longitude': '-73.90090048331452',
'location': {'latitude': '40.83438567166922',
'longitude': '-73.90090048331452',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786456',
'created_date': '2025-01-16T23:25:45.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10466',
'incident_address': '773 EAST 233 STREET',
'street_name': 'EAST 233 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 BRONX',
'bbl': '2049970001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024321',
'y_coordinate_state_plane': '264534',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.89266757255148',
'longitude': '-73.85506693764022',
'location': {'latitude': '40.89266757255148',
'longitude': '-73.85506693764022',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785073',
'created_date': '2025-01-16T23:25:38.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10461',
'incident_address': '1144 LYDIG AVENUE',
'street_name': 'LYDIG AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2043077501',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024338',
'y_coordinate_state_plane': '251010',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85554832711281',
'longitude': '-73.85508637127963',
'location': {'latitude': '40.85554832711281',
'longitude': '-73.85508637127963',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784840',
'created_date': '2025-01-16T23:25:30.000',
'closed_date': '2025-01-16T23:55:18.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10032',
'incident_address': '674 WEST 161 STREET',
'street_name': 'WEST 161 STREET',
'cross_street_1': 'FORT WASHINGTON AVENUE',
'cross_street_2': 'RIVERSIDE DRIVE',
'intersection_street_1': 'FORT WASHINGTON AVENUE',
'intersection_street_2': 'RIVERSIDE DRIVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 161 STREET',
'status': 'Closed',
'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
'resolution_action_updated_date': '2025-01-16T23:55:21.000',
'community_board': '12 MANHATTAN',
'bbl': '1021360120',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999255',
'y_coordinate_state_plane': '244474',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83768719509005',
'longitude': '-73.94577318972136',
'location': {'latitude': '40.83768719509005',
'longitude': '-73.94577318972136',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791135',
'created_date': '2025-01-16T23:25:29.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'GARBAGE/RECYCLING STORAGE',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10452',
'incident_address': '957 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788192',
'created_date': '2025-01-16T23:25:12.000',
'closed_date': '2025-01-17T01:33:37.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '56-40 138 STREET',
'street_name': '138 STREET',
'cross_street_1': '56 AVENUE',
'cross_street_2': 'BOOTH MEMORIAL AVENUE',
'intersection_street_1': '56 AVENUE',
'intersection_street_2': 'BOOTH MEMORIAL AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '138 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:33:40.000',
'community_board': '07 QUEENS',
'bbl': '4051320054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032178',
'y_coordinate_state_plane': '211728',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'location': {'latitude': '40.74769113775917',
'longitude': '-73.82702611740538',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784334',
'created_date': '2025-01-16T23:25:02.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '10065',
'incident_address': 'YORK AVENUE',
'street_name': 'YORK AVENUE',
'cross_street_1': 'EAST 60 STREET',
'cross_street_2': 'EAST 61 STREET',
'address_type': 'BLOCKFACE',
'city': 'MANHATTAN',
'facility_type': 'N/A',
'status': 'Open',
'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
'resolution_action_updated_date': '2025-01-16T23:25:02.000',
'community_board': '08 MANHATTAN',
'borough': 'MANHATTAN',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN'},
{'unique_key': '63787451',
'created_date': '2025-01-16T23:24:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11367',
'incident_address': '144-20 78 ROAD',
'street_name': '78 ROAD',
'cross_street_1': 'MAIN STREET',
'cross_street_2': '147 STREET',
'intersection_street_1': 'MAIN STREET',
'intersection_street_2': '147 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '78 ROAD',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4066710001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034877',
'y_coordinate_state_plane': '201476',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.71953694074092',
'longitude': '-73.81736249983769',
'location': {'latitude': '40.71953694074092',
'longitude': '-73.81736249983769',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786021',
'created_date': '2025-01-16T23:24:13.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'location_type': 'Street',
'incident_zip': '11101',
'incident_address': '35-17 42 STREET',
'street_name': '42 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': 'NORTHERN BOULEVARD',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': 'NORTHERN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'landmark': '42 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4006710008',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1006192',
'y_coordinate_state_plane': '213998',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'taxi_pick_up_location': '35-17 42 STREET, QUEENS (LONG ISLAND CITY), NY, 11101',
'latitude': '40.75402437219553',
'longitude': '-73.92080304147561',
'location': {'latitude': '40.75402437219553',
'longitude': '-73.92080304147561',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782049',
'created_date': '2025-01-16T23:24:06.000',
'closed_date': '2025-01-16T23:26:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '177 SANDS STREET',
'street_name': 'SANDS STREET',
'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'cross_street_2': 'BIKE PATH',
'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'intersection_street_2': 'BIKE PATH',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SANDS STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-16T23:26:32.000',
'community_board': '02 BROOKLYN',
'bbl': '3000680001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988793',
'y_coordinate_state_plane': '194233',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.699800319891985',
'longitude': '-73.98361593748928',
'location': {'latitude': '40.699800319891985',
'longitude': '-73.98361593748928',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784390',
'created_date': '2025-01-16T23:24:02.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Parking Permit Improper Use',
'location_type': 'Street/Sidewalk',
'incident_zip': '10463',
'incident_address': '130 GALE PLACE',
'street_name': 'GALE PLACE',
'cross_street_1': 'BEND',
'cross_street_2': 'VAN CORTLANDT PARK SOUTH',
'intersection_street_1': 'BEND',
'intersection_street_2': 'VAN CORTLANDT PARK SOUTH',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GALE PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:49:16.000',
'community_board': '08 BRONX',
'bbl': '2032520340',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013852',
'y_coordinate_state_plane': '261764',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88510613227025',
'longitude': '-73.89294453227276',
'location': {'latitude': '40.88510613227025',
'longitude': '-73.89294453227276',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790075',
'created_date': '2025-01-16T23:23:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '52-20 92 STREET',
'street_name': '92 STREET',
'cross_street_1': '52 AVENUE',
'cross_street_2': '53 AVENUE',
'intersection_street_1': '52 AVENUE',
'intersection_street_2': '53 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '92 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4018540041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019961',
'y_coordinate_state_plane': '208608',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73918530220479',
'longitude': '-73.87113420208536',
'location': {'latitude': '40.73918530220479',
'longitude': '-73.87113420208536',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791646',
'created_date': '2025-01-16T23:23:36.000',
'closed_date': '2025-01-17T01:03:06.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11372',
'incident_address': '80-15 NORTHERN BOULEVARD',
'street_name': 'NORTHERN BOULEVARD',
'cross_street_1': '80 STREET',
'cross_street_2': '81 STREET',
'intersection_street_1': '80 STREET',
'intersection_street_2': '81 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': 'NORTHERN BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:03:09.000',
'community_board': '03 QUEENS',
'bbl': '4011760038',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015558',
'y_coordinate_state_plane': '214508',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75539598889271',
'longitude': '-73.88699527010941',
'location': {'latitude': '40.75539598889271',
'longitude': '-73.88699527010941',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786305',
'created_date': '2025-01-16T23:23:30.000',
'closed_date': '2025-01-17T00:44:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10454',
'incident_address': '350 EAST 143 STREET',
'street_name': 'EAST 143 STREET',
'cross_street_1': 'ALEXANDER AVENUE',
'cross_street_2': 'WILLIS AVENUE',
'intersection_street_1': 'ALEXANDER AVENUE',
'intersection_street_2': 'WILLIS AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 143 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:44:44.000',
'community_board': '01 BRONX',
'bbl': '2023040001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005803',
'y_coordinate_state_plane': '235447',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.812897103451725',
'longitude': '-73.92213827515442',
'location': {'latitude': '40.812897103451725',
'longitude': '-73.92213827515442',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787963',
'created_date': '2025-01-16T23:23:24.000',
'closed_date': '2025-01-17T00:30:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '35-47 32 STREET',
'street_name': '32 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '36 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '36 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '32 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:30:29.000',
'community_board': '01 QUEENS',
'bbl': '4006050005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004116',
'y_coordinate_state_plane': '215084',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75701007275981',
'longitude': '-73.92829289666444',
'location': {'latitude': '40.75701007275981',
'longitude': '-73.92829289666444',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783214',
'created_date': '2025-01-16T23:23:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: air condition/ventilation equipment (NV1)',
'incident_zip': '11355',
'incident_address': '138-10 FRANKLIN AVENUE',
'street_name': 'FRANKLIN AVENUE',
'cross_street_1': 'COLDEN ST',
'cross_street_2': 'KISSENA BLVD',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '07 QUEENS',
'bbl': '4051370055',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032468',
'y_coordinate_state_plane': '214384',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.754979595276545',
'longitude': '-73.82596045488518',
'location': {'latitude': '40.754979595276545',
'longitude': '-73.82596045488518',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788255',
'created_date': '2025-01-16T23:23:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise, Barking Dog (NR5)',
'incident_zip': '10469',
'incident_address': '2794 SEXTON PLACE',
'street_name': 'SEXTON PLACE',
'cross_street_1': 'ADEE AVE',
'cross_street_2': 'FISH AVE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '11 BRONX',
'bbl': '2045640255',
'borough': 'BRONX',
'x_coordinate_state_plane': '1026470',
'y_coordinate_state_plane': '256076',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86944300854491',
'longitude': '-73.84734753194786',
'location': {'latitude': '40.86944300854491',
'longitude': '-73.84734753194786',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790756',
'created_date': '2025-01-16T23:22:57.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10461',
'incident_address': '1025 ESPLANADE',
'street_name': 'ESPLANADE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2043280023',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023099',
'y_coordinate_state_plane': '250853',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85512294839281',
'longitude': '-73.85956611953316',
'location': {'latitude': '40.85512294839281',
'longitude': '-73.85956611953316',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790633',
'created_date': '2025-01-16T23:22:55.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10454',
'incident_address': '370 BROOK AVENUE',
'street_name': 'BROOK AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '01 BRONX',
'bbl': '2022690001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007114',
'y_coordinate_state_plane': '234638',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.81067332885121',
'longitude': '-73.91740495406697',
'location': {'latitude': '40.81067332885121',
'longitude': '-73.91740495406697',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784217',
'created_date': '2025-01-16T23:22:51.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PLUMBING',
'descriptor': 'RADIATOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10468',
'incident_address': '2305 UNIVERSITY AVENUE',
'street_name': 'UNIVERSITY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 BRONX',
'bbl': '2032180058',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010086',
'y_coordinate_state_plane': '252949',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8609235071515',
'longitude': '-73.90659823100756',
'location': {'latitude': '40.8609235071515',
'longitude': '-73.90659823100756',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786678',
'created_date': '2025-01-16T23:22:33.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11356',
'incident_address': '118-20 14 ROAD',
'street_name': '14 ROAD',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 QUEENS',
'bbl': '4040700034',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026009',
'y_coordinate_state_plane': '225222',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78475990332266',
'longitude': '-73.84920637919484',
'location': {'latitude': '40.78475990332266',
'longitude': '-73.84920637919484',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784432',
'created_date': '2025-01-16T23:22:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '90-49 53 AVENUE',
'street_name': '53 AVENUE',
'cross_street_1': '90 STREET',
'cross_street_2': '92 STREET',
'intersection_street_1': '90 STREET',
'intersection_street_2': '92 STREET',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '53 AVENUE',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4018540049',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019418',
'y_coordinate_state_plane': '208260',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73823230536929',
'longitude': '-73.87309547447138',
'location': {'latitude': '40.73823230536929',
'longitude': '-73.87309547447138',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789245',
'created_date': '2025-01-16T23:22:29.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11226',
'incident_address': '601 EAST 18 STREET',
'street_name': 'EAST 18 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '14 BROOKLYN',
'bbl': '3052180039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995198',
'y_coordinate_state_plane': '171063',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63619823642374',
'longitude': '-73.96055431186893',
'location': {'latitude': '40.63619823642374',
'longitude': '-73.96055431186893',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783432',
'created_date': '2025-01-16T23:22:20.000',
'closed_date': '2025-01-17T01:25:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10451',
'incident_address': '84 EAST 161 STREET',
'street_name': 'EAST 161 STREET',
'cross_street_1': 'GERARD AVENUE',
'cross_street_2': 'WALTON AVENUE',
'intersection_street_1': 'GERARD AVENUE',
'intersection_street_2': 'WALTON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 161 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:25:36.000',
'community_board': '04 BRONX',
'bbl': '2024740040',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005116',
'y_coordinate_state_plane': '240731',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82740183729877',
'longitude': '-73.924603679569',
'location': {'latitude': '40.82740183729877',
'longitude': '-73.924603679569',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782947',
'created_date': '2025-01-16T23:22:11.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'PESTS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '510 WEST 151 STREET',
'street_name': 'WEST 151 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020820042',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999346',
'y_coordinate_state_plane': '241408',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'location': {'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784186',
'created_date': '2025-01-16T23:22:11.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'WALL',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '510 WEST 151 STREET',
'street_name': 'WEST 151 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020820042',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999346',
'y_coordinate_state_plane': '241408',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'location': {'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784243',
'created_date': '2025-01-16T23:22:11.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'MOLD',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10031',
'incident_address': '510 WEST 151 STREET',
'street_name': 'WEST 151 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020820042',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999346',
'y_coordinate_state_plane': '241408',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'location': {'latitude': '40.829271754967884',
'longitude': '-73.94545122337765',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792248',
'created_date': '2025-01-16T23:21:42.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Residential Disposal Complaint',
'descriptor': 'Waste Left in Front of Other Residence',
'location_type': 'Sidewalk',
'incident_zip': '11203',
'incident_address': '664 NEW YORK AVENUE',
'street_name': 'NEW YORK AVENUE',
'cross_street_1': 'HAWTHORNE STREET',
'cross_street_2': 'WINTHROP STREET',
'intersection_street_1': 'HAWTHORNE STREET',
'intersection_street_2': 'WINTHROP STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NEW YORK AVENUE',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3048197501',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998835',
'y_coordinate_state_plane': '178978',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65791795417816',
'longitude': '-73.94743307550172',
'location': {'latitude': '40.65791795417816',
'longitude': '-73.94743307550172',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781670',
'created_date': '2025-01-16T23:21:03.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Lost Property',
'descriptor': 'Bag/Wallet',
'location_type': 'Taxi',
'incident_zip': '10017',
'incident_address': 'EAST 41 STREET',
'street_name': 'EAST 41 STREET',
'cross_street_1': 'EAST 41 STREET',
'cross_street_2': 'PARK AVENUE',
'intersection_street_1': 'EAST 41 STREET',
'intersection_street_2': 'PARK AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '05 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990303',
'y_coordinate_state_plane': '213052',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': 'EAST 41 STREET AND PARK AVENUE, MANHATTAN, NY, 10017',
'latitude': '40.75145299507849',
'longitude': '-73.9781532847726',
'location': {'latitude': '40.75145299507849',
'longitude': '-73.9781532847726',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784597',
'created_date': '2025-01-16T23:20:52.000',
'closed_date': '2025-01-17T00:24:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11217',
'incident_address': '213 BERGEN STREET',
'street_name': 'BERGEN STREET',
'cross_street_1': 'BOND STREET',
'cross_street_2': 'NEVINS STREET',
'intersection_street_1': 'BOND STREET',
'intersection_street_2': 'NEVINS STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BERGEN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:24:27.000',
'community_board': '02 BROOKLYN',
'bbl': '3001960056',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988372',
'y_coordinate_state_plane': '188714',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.684652145936035',
'longitude': '-73.98513762626332',
'location': {'latitude': '40.684652145936035',
'longitude': '-73.98513762626332',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790142',
'created_date': '2025-01-16T23:20:41.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '86-19 ELDERT LANE',
'street_name': 'ELDERT LANE',
'cross_street_1': 'JAMAICA AVENUE',
'cross_street_2': '87 AVENUE',
'intersection_street_1': 'JAMAICA AVENUE',
'intersection_street_2': '87 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': 'ELDERT LANE',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4088990036',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1020871',
'y_coordinate_state_plane': '190947',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69070641396093',
'longitude': '-73.86794647932479',
'location': {'latitude': '40.69070641396093',
'longitude': '-73.86794647932479',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789073',
'created_date': '2025-01-16T23:20:25.000',
'closed_date': '2025-01-17T00:09:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10031',
'incident_address': '519 WEST 134 STREET',
'street_name': 'WEST 134 STREET',
'cross_street_1': 'AMSTERDAM AVENUE',
'cross_street_2': 'BROADWAY',
'intersection_street_1': 'AMSTERDAM AVENUE',
'intersection_street_2': 'BROADWAY',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 134 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:09:28.000',
'community_board': '09 MANHATTAN',
'bbl': '1019880016',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996940',
'y_coordinate_state_plane': '237607',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8188428746513',
'longitude': '-73.95415239257143',
'location': {'latitude': '40.8188428746513',
'longitude': '-73.95415239257143',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788685',
'created_date': '2025-01-16T23:19:30.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10463',
'incident_address': '432 WEST 238 STREET',
'street_name': 'WEST 238 STREET',
'cross_street_1': 'WALDO AVENUE',
'cross_street_2': 'GREYSTONE AVENUE',
'intersection_street_1': 'WALDO AVENUE',
'intersection_street_2': 'GREYSTONE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 238 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:52:04.000',
'community_board': '08 BRONX',
'bbl': '2057702003',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010703',
'y_coordinate_state_plane': '262493',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88711700850661',
'longitude': '-73.9043299842057',
'location': {'latitude': '40.88711700850661',
'longitude': '-73.9043299842057',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787227',
'created_date': '2025-01-16T23:19:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11379',
'incident_address': '63-46 84 PLACE',
'street_name': '84 PLACE',
'cross_street_1': '63 ROAD',
'cross_street_2': 'DANA COURT',
'intersection_street_1': '63 ROAD',
'intersection_street_2': 'DANA COURT',
'address_type': 'ADDRESS',
'city': 'MIDDLE VILLAGE',
'landmark': '84 PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:32:45.000',
'community_board': '05 QUEENS',
'bbl': '4029970029',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1020377',
'y_coordinate_state_plane': '202618',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.722742548330054',
'longitude': '-73.86966519856223',
'location': {'latitude': '40.722742548330054',
'longitude': '-73.86966519856223',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785851',
'created_date': '2025-01-16T23:19:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11235',
'incident_address': '2451 HOMECREST AVENUE',
'street_name': 'HOMECREST AVENUE',
'cross_street_1': 'DEMOND COURT',
'cross_street_2': 'DOONE COURT',
'intersection_street_1': 'DEMOND COURT',
'intersection_street_2': 'DOONE COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HOMECREST AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996001',
'y_coordinate_state_plane': '154479',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59067755549707',
'longitude': '-73.95768996078004',
'location': {'latitude': '40.59067755549707',
'longitude': '-73.95768996078004',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784500',
'created_date': '2025-01-16T23:19:13.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11204',
'incident_address': '5022 17 AVENUE',
'street_name': '17 AVENUE',
'cross_street_1': '50 STREET',
'cross_street_2': '51 STREET',
'intersection_street_1': '50 STREET',
'intersection_street_2': '51 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '17 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:59:14.000',
'community_board': '12 BROOKLYN',
'bbl': '3054590054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988742',
'y_coordinate_state_plane': '168377',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62883136229684',
'longitude': '-73.98381709285722',
'location': {'latitude': '40.62883136229684',
'longitude': '-73.98381709285722',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783135',
'created_date': '2025-01-16T23:19:09.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11225',
'incident_address': '268 SULLIVAN PLACE',
'street_name': 'SULLIVAN PLACE',
'cross_street_1': 'ROGERS AVENUE',
'cross_street_2': 'NOSTRAND AVENUE',
'intersection_street_1': 'ROGERS AVENUE',
'intersection_street_2': 'NOSTRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SULLIVAN PLACE',
'status': 'In Progress',
'community_board': '09 BROOKLYN',
'bbl': '3013080026',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997511',
'y_coordinate_state_plane': '181412',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66460082792916',
'longitude': '-73.95220021813682',
'location': {'latitude': '40.66460082792916',
'longitude': '-73.95220021813682',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782653',
'created_date': '2025-01-16T23:19:06.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11358',
'incident_address': '36-14 165 STREET',
'street_name': '165 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 QUEENS',
'bbl': '4052870020',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039421',
'y_coordinate_state_plane': '217230',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'location': {'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788832',
'created_date': '2025-01-16T23:19:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Double Parked Blocking Vehicle',
'location_type': 'Street/Sidewalk',
'incident_zip': '10306',
'incident_address': '2658 AMBOY ROAD',
'street_name': 'AMBOY ROAD',
'cross_street_1': '3 STREET',
'cross_street_2': 'DALE AVENUE',
'intersection_street_1': '3 STREET',
'intersection_street_2': 'DALE AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'AMBOY ROAD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:09:25.000',
'community_board': '02 STATEN ISLAND',
'bbl': '5042290074',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '950483',
'y_coordinate_state_plane': '147550',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'vehicle_type': 'Car',
'latitude': '40.57160230855219',
'longitude': '-74.12154501807753',
'location': {'latitude': '40.57160230855219',
'longitude': '-74.12154501807753',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791733',
'created_date': '2025-01-16T23:18:56.000',
'closed_date': '2025-01-17T00:26:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10128',
'incident_address': '316 EAST 93 STREET',
'street_name': 'EAST 93 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 93 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:26:10.000',
'community_board': '08 MANHATTAN',
'bbl': '1015550042',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998743',
'y_coordinate_state_plane': '224169',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.781956469384255',
'longitude': '-73.94766735355991',
'location': {'latitude': '40.781956469384255',
'longitude': '-73.94766735355991',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785120',
'created_date': '2025-01-16T23:18:49.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10457',
'incident_address': '2121 BELMONT AVENUE',
'street_name': 'BELMONT AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '06 BRONX',
'bbl': '2030810013',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014836',
'y_coordinate_state_plane': '248673',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84917199290993',
'longitude': '-73.88944565657596',
'location': {'latitude': '40.84917199290993',
'longitude': '-73.88944565657596',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791428',
'created_date': '2025-01-16T23:18:24.000',
'closed_date': '2025-01-17T01:19:12.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11212',
'incident_address': '128 GRAFTON STREET',
'street_name': 'GRAFTON STREET',
'cross_street_1': 'SUTTER AVENUE',
'cross_street_2': 'BLAKE AVENUE',
'intersection_street_1': 'SUTTER AVENUE',
'intersection_street_2': 'BLAKE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GRAFTON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:19:15.000',
'community_board': '16 BROOKLYN',
'bbl': '3035340039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006901',
'y_coordinate_state_plane': '181622',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66515818782258',
'longitude': '-73.91835291388111',
'location': {'latitude': '40.66515818782258',
'longitude': '-73.91835291388111',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784813',
'created_date': '2025-01-16T23:17:55.000',
'closed_date': '2025-01-17T00:05:36.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10011',
'incident_address': '202 WEST 24 STREET',
'street_name': 'WEST 24 STREET',
'cross_street_1': '7 AVENUE',
'cross_street_2': '8 AVENUE',
'intersection_street_1': '7 AVENUE',
'intersection_street_2': '8 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 24 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:05:39.000',
'community_board': '04 MANHATTAN',
'bbl': '1007730134',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '985467',
'y_coordinate_state_plane': '210679',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.744941695173566',
'longitude': '-73.99560798717059',
'location': {'latitude': '40.744941695173566',
'longitude': '-73.99560798717059',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786253',
'created_date': '2025-01-16T23:17:45.000',
'closed_date': '2025-01-16T23:45:00.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10011',
'incident_address': '106 WAVERLY PLACE',
'street_name': 'WAVERLY PLACE',
'cross_street_1': 'MAC DOUGAL STREET',
'cross_street_2': 'AVENUE OF THE AMERICAS',
'intersection_street_1': 'MAC DOUGAL STREET',
'intersection_street_2': 'AVENUE OF THE AMERICAS',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WAVERLY PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-16T23:45:04.000',
'community_board': '02 MANHATTAN',
'bbl': '1005527502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984520',
'y_coordinate_state_plane': '206113',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73240923679284',
'longitude': '-73.99902578435959',
'location': {'latitude': '40.73240923679284',
'longitude': '-73.99902578435959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789473',
'created_date': '2025-01-16T23:17:32.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10452',
'incident_address': '957 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786312',
'created_date': '2025-01-16T23:17:02.000',
'closed_date': '2025-01-17T00:12:57.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11378',
'incident_address': '62-19 53 AVENUE',
'street_name': '53 AVENUE',
'cross_street_1': '62 STREET',
'cross_street_2': '64 STREET',
'intersection_street_1': '62 STREET',
'intersection_street_2': '64 STREET',
'address_type': 'ADDRESS',
'city': 'MASPETH',
'landmark': '53 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:12:59.000',
'community_board': '05 QUEENS',
'bbl': '4023760101',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1011609',
'y_coordinate_state_plane': '205796',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73149684114676',
'longitude': '-73.9012844207401',
'location': {'latitude': '40.73149684114676',
'longitude': '-73.9012844207401',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789017',
'created_date': '2025-01-16T23:16:34.000',
'closed_date': '2025-01-16T23:50:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Fireworks',
'descriptor': 'N/A',
'location_type': 'Park/Playground',
'incident_zip': '11204',
'incident_address': '18 AVENUE',
'street_name': '18 AVENUE',
'cross_street_1': '18 AVENUE',
'cross_street_2': '56 STREET',
'intersection_street_1': '18 AVENUE',
'intersection_street_2': '56 STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-16T23:50:18.000',
'community_board': '12 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988424',
'y_coordinate_state_plane': '166734',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62432182804097',
'longitude': '-73.9849637376358',
'location': {'latitude': '40.62432182804097',
'longitude': '-73.9849637376358',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788280',
'created_date': '2025-01-16T23:16:23.000',
'closed_date': '2025-01-16T23:25:09.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11372',
'incident_address': '35 AVENUE',
'street_name': '35 AVENUE',
'cross_street_1': '35 AVENUE',
'cross_street_2': 'JUNCTION BOULEVARD',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': 'JUNCTION BOULEVARD',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'N/A',
'resolution_action_updated_date': '2025-01-16T23:25:11.000',
'community_board': '03 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019771',
'y_coordinate_state_plane': '213760',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75332699978863',
'longitude': '-73.87179261989392',
'location': {'latitude': '40.75332699978863',
'longitude': '-73.87179261989392',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789060',
'created_date': '2025-01-16T23:16:01.000',
'closed_date': '2025-01-17T00:30:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11212',
'incident_address': '360 DUMONT AVENUE',
'street_name': 'DUMONT AVENUE',
'cross_street_1': 'OSBORN STREET',
'cross_street_2': 'MOTHER GASTON BOULEVARD',
'intersection_street_1': 'OSBORN STREET',
'intersection_street_2': 'MOTHER GASTON BOULEVARD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DUMONT AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:30:44.000',
'community_board': '16 BROOKLYN',
'bbl': '3035760001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1010286',
'y_coordinate_state_plane': '181410',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66456698813642',
'longitude': '-73.90615227618277',
'location': {'latitude': '40.66456698813642',
'longitude': '-73.90615227618277',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787846',
'created_date': '2025-01-16T23:15:43.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10467',
'incident_address': '2206 HOLLAND AVENUE',
'street_name': 'HOLLAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '11 BRONX',
'bbl': '2043450005',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021423',
'y_coordinate_state_plane': '251975',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85820971492959',
'longitude': '-73.86561840106879',
'location': {'latitude': '40.85820971492959',
'longitude': '-73.86561840106879',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787288',
'created_date': '2025-01-16T23:15:41.000',
'agency': 'EDC',
'agency_name': 'Economic Development Corporation',
'complaint_type': 'Noise - Helicopter',
'descriptor': 'Other',
'location_type': 'Above Address',
'incident_zip': '10034',
'incident_address': '571 ACADEMY STREET',
'street_name': 'ACADEMY STREET',
'cross_street_1': 'POST AVENUE',
'cross_street_2': 'SHERMAN AVENUE',
'intersection_street_1': 'POST AVENUE',
'intersection_street_2': 'SHERMAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'ACADEMY STREET',
'status': 'In Progress',
'community_board': '12 MANHATTAN',
'bbl': '1022217501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1005487',
'y_coordinate_state_plane': '253907',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86356518841314',
'longitude': '-73.92322139496197',
'location': {'latitude': '40.86356518841314',
'longitude': '-73.92322139496197',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786014',
'created_date': '2025-01-16T23:15:31.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11205',
'incident_address': '160 WILLOUGHBY AVENUE',
'street_name': 'WILLOUGHBY AVENUE',
'cross_street_1': 'WASHINGTON AVENUE',
'cross_street_2': 'HALL STREET',
'intersection_street_1': 'WASHINGTON AVENUE',
'intersection_street_2': 'HALL STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WILLOUGHBY AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T01:53:34.000',
'community_board': '02 BROOKLYN',
'bbl': '3019180039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993729',
'y_coordinate_state_plane': '191333',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.69183658325062',
'longitude': '-73.96581862599976',
'location': {'latitude': '40.69183658325062',
'longitude': '-73.96581862599976',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792390',
'created_date': '2025-01-16T23:15:31.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Highway Condition',
'descriptor': 'Pothole - Highway',
'location_type': 'Highway',
'status': 'In Progress',
'community_board': 'Unspecified BROOKLYN',
'borough': 'BROOKLYN',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'bridge_highway_name': 'BQE/Gowanus Expwy',
'bridge_highway_direction': 'West/Staten Island Bound',
'road_ramp': 'Roadway',
'bridge_highway_segment': 'Cadman Plaza West / Brooklyn Br (Exit 28) - Atlantic Ave (Exit 27)'},
{'unique_key': '63783218',
'created_date': '2025-01-16T23:15:24.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Panhandling',
'descriptor': 'N/A',
'location_type': 'Residential Building/House',
'incident_zip': '10460',
'incident_address': '787 EAST 185 STREET',
'street_name': 'EAST 185 STREET',
'cross_street_1': 'PROSPECT AVENUE',
'cross_street_2': 'SOUTHERN BOULEVARD',
'intersection_street_1': 'PROSPECT AVENUE',
'intersection_street_2': 'SOUTHERN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 185 STREET',
'status': 'In Progress',
'community_board': '06 BRONX',
'bbl': '2031140073',
'borough': 'BRONX',
'x_coordinate_state_plane': '1016795',
'y_coordinate_state_plane': '249816',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85230218315347',
'longitude': '-73.88235923111634',
'location': {'latitude': '40.85230218315347',
'longitude': '-73.88235923111634',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781631',
'created_date': '2025-01-16T23:15:22.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11354',
'incident_address': '144-41 27 AVENUE',
'street_name': '27 AVENUE',
'cross_street_1': 'PARSONS BOULEVARD',
'cross_street_2': '146 STREET',
'intersection_street_1': 'PARSONS BOULEVARD',
'intersection_street_2': '146 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '27 AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4047810063',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1032947',
'y_coordinate_state_plane': '221236',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77378390392153',
'longitude': '-73.82418190239274',
'location': {'latitude': '40.77378390392153',
'longitude': '-73.82418190239274',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792049',
'created_date': '2025-01-16T23:15:18.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'CEILING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11372',
'incident_address': '90-10 34 AVENUE',
'street_name': '34 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 QUEENS',
'bbl': '4014510001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1018219',
'y_coordinate_state_plane': '214195',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.754527061691505',
'longitude': '-73.87739211112014',
'location': {'latitude': '40.754527061691505',
'longitude': '-73.87739211112014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785722',
'created_date': '2025-01-16T23:15:18.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'WATER LEAK',
'descriptor': 'DAMP SPOT',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11372',
'incident_address': '90-10 34 AVENUE',
'street_name': '34 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 QUEENS',
'bbl': '4014510001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1018219',
'y_coordinate_state_plane': '214195',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.754527061691505',
'longitude': '-73.87739211112014',
'location': {'latitude': '40.754527061691505',
'longitude': '-73.87739211112014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784970',
'created_date': '2025-01-16T23:15:15.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10306',
'incident_address': '675 TYSENS LANE',
'street_name': 'TYSENS LANE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 STATEN ISLAND',
'bbl': '5039830001',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '952759',
'y_coordinate_state_plane': '144089',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.56211091964103',
'longitude': '-74.11333639974674',
'location': {'latitude': '40.56211091964103',
'longitude': '-74.11333639974674',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786917',
'created_date': '2025-01-16T23:14:54.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '28-15 33 AVENUE',
'street_name': '33 AVENUE',
'cross_street_1': '28 STREET',
'cross_street_2': '29 STREET',
'intersection_street_1': '28 STREET',
'intersection_street_2': '29 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '33 AVENUE',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4005800001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004172',
'y_coordinate_state_plane': '217043',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7623868980907',
'longitude': '-73.9280849573899',
'location': {'latitude': '40.7623868980907',
'longitude': '-73.9280849573899',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790223',
'created_date': '2025-01-16T23:14:48.000',
'closed_date': '2025-01-17T01:04:33.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '147-25 94 AVENUE',
'street_name': '94 AVENUE',
'cross_street_1': 'SUTPHIN BOULEVARD',
'cross_street_2': '148 STREET',
'intersection_street_1': 'SUTPHIN BOULEVARD',
'intersection_street_2': '148 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '94 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:04:39.000',
'community_board': '12 QUEENS',
'bbl': '4099987502',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037925',
'y_coordinate_state_plane': '194081',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69922150012847',
'longitude': '-73.80642579116335',
'location': {'latitude': '40.69922150012847',
'longitude': '-73.80642579116335',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785189',
'created_date': '2025-01-16T23:14:37.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Street',
'incident_zip': '10461',
'incident_address': '1087 SACKET AVENUE',
'street_name': 'SACKET AVENUE',
'cross_street_1': 'LURTING AVENUE',
'cross_street_2': 'HAIGHT AVENUE',
'intersection_street_1': 'LURTING AVENUE',
'intersection_street_2': 'HAIGHT AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SACKET AVENUE',
'status': 'In Progress',
'community_board': '11 BRONX',
'bbl': '2040660027',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025837',
'y_coordinate_state_plane': '247106',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84482608472156',
'longitude': '-73.8496918803261',
'location': {'latitude': '40.84482608472156',
'longitude': '-73.8496918803261',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785395',
'created_date': '2025-01-16T23:14:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11231',
'incident_address': '219 KANE STREET',
'street_name': 'KANE STREET',
'cross_street_1': 'CLINTON ST',
'cross_street_2': 'TOMPKINS PL',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '06 BROOKLYN',
'bbl': '3003120055',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985380',
'y_coordinate_state_plane': '189191',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68596228956982',
'longitude': '-73.99592556714693',
'location': {'latitude': '40.68596228956982',
'longitude': '-73.99592556714693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791618',
'created_date': '2025-01-16T23:13:33.000',
'closed_date': '2025-01-17T01:45:57.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10030',
'incident_address': '143 WEST 140 STREET',
'street_name': 'WEST 140 STREET',
'cross_street_1': 'LENOX AVENUE',
'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_1': 'LENOX AVENUE',
'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 140 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:46:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1020090018',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000873',
'y_coordinate_state_plane': '237258',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81787844246842',
'longitude': '-73.93994375426453',
'location': {'latitude': '40.81787844246842',
'longitude': '-73.93994375426453',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783098',
'created_date': '2025-01-16T23:13:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11377',
'incident_address': '47-30 59 STREET',
'street_name': '59 STREET',
'cross_street_1': '47 AVENUE',
'cross_street_2': '48 AVENUE',
'intersection_street_1': '47 AVENUE',
'intersection_street_2': '48 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '59 STREET',
'status': 'In Progress',
'community_board': '02 QUEENS',
'bbl': '4023190010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010179',
'y_coordinate_state_plane': '208774',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.739675019299106',
'longitude': '-73.9064326044222',
'location': {'latitude': '40.739675019299106',
'longitude': '-73.9064326044222',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781609',
'created_date': '2025-01-16T23:13:01.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'License Plate Obscured',
'location_type': 'Street/Sidewalk',
'incident_zip': '11105',
'incident_address': '22-32 47 STREET',
'street_name': '47 STREET',
'cross_street_1': 'DITMARS BOULEVARD',
'cross_street_2': 'ASTORIA BOULEVARD NORTH',
'intersection_street_1': 'DITMARS BOULEVARD',
'intersection_street_2': 'ASTORIA BOULEVARD NORTH',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '47 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4007680065',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1011240',
'y_coordinate_state_plane': '219522',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76917235568499',
'longitude': '-73.9025607397124',
'location': {'latitude': '40.76917235568499',
'longitude': '-73.9025607397124',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787430',
'created_date': '2025-01-16T23:12:33.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Sidewalk Condition',
'descriptor': 'Broken Sidewalk',
'location_type': 'Sidewalk',
'incident_zip': '10466',
'incident_address': '4005A DE REIMER AVENUE',
'street_name': 'DE REIMER AVENUE',
'cross_street_1': 'STRANG AVENUE',
'cross_street_2': 'EDENWALD AVENUE',
'intersection_street_1': 'STRANG AVENUE',
'intersection_street_2': 'EDENWALD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'DE REIMER AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049820089',
'borough': 'BRONX',
'x_coordinate_state_plane': '1027985',
'y_coordinate_state_plane': '263761',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.890528536017975',
'longitude': '-73.8418196683311',
'location': {'latitude': '40.890528536017975',
'longitude': '-73.8418196683311',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785942',
'created_date': '2025-01-16T23:12:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11229',
'incident_address': '2349 BRIGHAM STREET',
'street_name': 'BRIGHAM STREET',
'cross_street_1': 'AVENUE W',
'cross_street_2': 'AVENUE X',
'intersection_street_1': 'AVENUE W',
'intersection_street_2': 'AVENUE X',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHAM STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074100206',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002524',
'y_coordinate_state_plane': '156277',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59560165492655',
'longitude': '-73.93419873064008',
'location': {'latitude': '40.59560165492655',
'longitude': '-73.93419873064008',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781843',
'created_date': '2025-01-16T23:12:16.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Street',
'incident_zip': '10461',
'incident_address': '1069 SACKET AVENUE',
'street_name': 'SACKET AVENUE',
'cross_street_1': 'HONE AVENUE',
'cross_street_2': 'LURTING AVENUE',
'intersection_street_1': 'HONE AVENUE',
'intersection_street_2': 'LURTING AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SACKET AVENUE',
'status': 'In Progress',
'community_board': '11 BRONX',
'bbl': '2040650024',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025625',
'y_coordinate_state_plane': '247005',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84454986565292',
'longitude': '-73.85045873476777',
'location': {'latitude': '40.84454986565292',
'longitude': '-73.85045873476777',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782698',
'created_date': '2025-01-16T23:12:13.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11368',
'incident_address': '112-18 38 AVENUE',
'street_name': '38 AVENUE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 QUEENS',
'bbl': '4017850007',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024406',
'y_coordinate_state_plane': '213888',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753658492249556',
'longitude': '-73.85506259153',
'location': {'latitude': '40.753658492249556',
'longitude': '-73.85506259153',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785601',
'created_date': '2025-01-16T23:12:12.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10459',
'incident_address': '975 SIMPSON STREET',
'street_name': 'SIMPSON STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BRONX',
'bbl': '2027247502',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013901',
'y_coordinate_state_plane': '238593',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.821508516035756',
'longitude': '-73.8928698077044',
'location': {'latitude': '40.821508516035756',
'longitude': '-73.8928698077044',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788833',
'created_date': '2025-01-16T23:12:11.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '158 67 STREET',
'street_name': '67 STREET',
'cross_street_1': 'SEDGWICK PLACE',
'cross_street_2': 'BERGEN PLACE',
'intersection_street_1': 'SEDGWICK PLACE',
'intersection_street_2': 'BERGEN PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '67 STREET',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2025-01-16T23:53:41.000',
'community_board': '10 BROOKLYN',
'bbl': '3058480030',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '976281',
'y_coordinate_state_plane': '172132',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63913559429275',
'longitude': '-74.02871360255963',
'location': {'latitude': '40.63913559429275',
'longitude': '-74.02871360255963',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786467',
'created_date': '2025-01-16T23:12:10.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10458',
'incident_address': '2317 CAMBRELENG AVENUE',
'street_name': 'CAMBRELENG AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '06 BRONX',
'bbl': '2030880039',
'borough': 'BRONX',
'x_coordinate_state_plane': '1015808',
'y_coordinate_state_plane': '250135',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85318132558475',
'longitude': '-73.88592544512991',
'location': {'latitude': '40.85318132558475',
'longitude': '-73.88592544512991',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781767',
'created_date': '2025-01-16T23:11:58.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11104',
'incident_address': '41-11 40 STREET',
'street_name': '40 STREET',
'cross_street_1': 'SKILLMAN AVENUE',
'cross_street_2': '43 AVENUE',
'intersection_street_1': 'SKILLMAN AVENUE',
'intersection_street_2': '43 AVENUE',
'address_type': 'ADDRESS',
'city': 'SUNNYSIDE',
'landmark': '40 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:03:01.000',
'community_board': '02 QUEENS',
'bbl': '4001850017',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1005382',
'y_coordinate_state_plane': '211219',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74639869446456',
'longitude': '-73.92373536844984',
'location': {'latitude': '40.74639869446456',
'longitude': '-73.92373536844984',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787679',
'created_date': '2025-01-16T23:11:31.000',
'closed_date': '2025-01-17T01:29:21.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10453',
'incident_address': '2155 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'EAST 181 STREET',
'cross_street_2': 'ANTHONY AVENUE',
'intersection_street_1': 'EAST 181 STREET',
'intersection_street_2': 'ANTHONY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:29:25.000',
'community_board': '05 BRONX',
'bbl': '2031620045',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011428',
'y_coordinate_state_plane': '250696',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85473567166208',
'longitude': '-73.90175579950744',
'location': {'latitude': '40.85473567166208',
'longitude': '-73.90175579950744',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785857',
'created_date': '2025-01-16T23:11:18.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '33-53 28 STREET',
'street_name': '28 STREET',
'cross_street_1': '33 AVENUE',
'cross_street_2': '34 AVENUE',
'intersection_street_1': '33 AVENUE',
'intersection_street_2': '34 AVENUE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '28 STREET',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4005820134',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003921',
'y_coordinate_state_plane': '216755',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76159697442693',
'longitude': '-73.92899186718466',
'location': {'latitude': '40.76159697442693',
'longitude': '-73.92899186718466',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792238',
'created_date': '2025-01-16T23:10:55.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Sidewalk',
'incident_zip': '10468',
'incident_address': '29 WEST KINGSBRIDGE ROAD',
'street_name': 'WEST KINGSBRIDGE ROAD',
'cross_street_1': 'DAVIDSON AVENUE',
'cross_street_2': 'GRAND AVENUE',
'intersection_street_1': 'DAVIDSON AVENUE',
'intersection_street_2': 'GRAND AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST KINGSBRIDGE ROAD',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2032470002',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012275',
'y_coordinate_state_plane': '255426',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8677154399217',
'longitude': '-73.89867425237192',
'location': {'latitude': '40.8677154399217',
'longitude': '-73.89867425237192',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788067',
'created_date': '2025-01-16T23:09:58.000',
'closed_date': '2025-01-17T00:19:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11372',
'incident_address': '34-20 71 STREET',
'street_name': '71 STREET',
'cross_street_1': '34 AVENUE',
'cross_street_2': '35 AVENUE',
'intersection_street_1': '34 AVENUE',
'intersection_street_2': '35 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '71 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:19:49.000',
'community_board': '03 QUEENS',
'bbl': '4012570015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013297',
'y_coordinate_state_plane': '213289',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75205786245697',
'longitude': '-73.8951614993983',
'location': {'latitude': '40.75205786245697',
'longitude': '-73.8951614993983',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787566',
'created_date': '2025-01-16T23:09:57.000',
'closed_date': '2025-01-16T23:14:28.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11224',
'incident_address': '2832 WEST 23 STREET',
'street_name': 'WEST 23 STREET',
'cross_street_1': 'NEPTUNE AVENUE',
'cross_street_2': 'MERMAID AVENUE',
'intersection_street_1': 'NEPTUNE AVENUE',
'intersection_street_2': 'MERMAID AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 23 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-16T23:14:31.000',
'community_board': '13 BROOKLYN',
'bbl': '3070150015',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986923',
'y_coordinate_state_plane': '149719',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.577619686746154',
'longitude': '-73.99037761720334',
'location': {'latitude': '40.577619686746154',
'longitude': '-73.99037761720334',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785859',
'created_date': '2025-01-16T23:09:54.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Double Parked Blocking Traffic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': '1675 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'EAST 173 STREET',
'cross_street_2': 'EAST 174 STREET',
'intersection_street_1': 'EAST 173 STREET',
'intersection_street_2': 'EAST 174 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:36:05.000',
'community_board': '04 BRONX',
'bbl': '2028380012',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008726',
'y_coordinate_state_plane': '246917',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.8443713433982',
'longitude': '-73.91153689354736',
'location': {'latitude': '40.8443713433982',
'longitude': '-73.91153689354736',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782092',
'created_date': '2025-01-16T23:09:53.000',
'closed_date': '2025-01-17T01:33:49.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Horn',
'location_type': 'Street/Sidewalk',
'incident_zip': '11372',
'incident_address': '35-01 80 STREET',
'street_name': '80 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '80 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T01:33:51.000',
'community_board': '03 QUEENS',
'bbl': '4012800001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015704',
'y_coordinate_state_plane': '213011',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Other',
'latitude': '40.75128658887407',
'longitude': '-73.88647529333224',
'location': {'latitude': '40.75128658887407',
'longitude': '-73.88647529333224',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785937',
'created_date': '2025-01-16T23:09:43.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '7803 21 AVENUE',
'street_name': '21 AVENUE',
'cross_street_1': '78 STREET',
'cross_street_2': '79 STREET',
'intersection_street_1': '78 STREET',
'intersection_street_2': '79 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '21 AVENUE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3062640009',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986626',
'y_coordinate_state_plane': '160677',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60769728186002',
'longitude': '-73.99144291738496',
'location': {'latitude': '40.60769728186002',
'longitude': '-73.99144291738496',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784510',
'created_date': '2025-01-16T23:09:14.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11367',
'incident_address': '76-01 147 STREET',
'street_name': '147 STREET',
'cross_street_1': '76 AVENUE',
'cross_street_2': '76 ROAD',
'intersection_street_1': '76 AVENUE',
'intersection_street_2': '76 ROAD',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '147 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4066850001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034782',
'y_coordinate_state_plane': '202818',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72322094196751',
'longitude': '-73.81769513694731',
'location': {'latitude': '40.72322094196751',
'longitude': '-73.81769513694731',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785110',
'created_date': '2025-01-16T23:09:02.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11235',
'incident_address': '3120 BRIGHTON 5 STREET',
'street_name': 'BRIGHTON 5 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '13 BROOKLYN',
'bbl': '3086880089',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994732',
'y_coordinate_state_plane': '149417',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57678496246616',
'longitude': '-73.96226690651686',
'location': {'latitude': '40.57678496246616',
'longitude': '-73.96226690651686',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789314',
'created_date': '2025-01-16T23:08:37.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11372',
'incident_address': '33-44 91 STREET',
'street_name': '91 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '03 QUEENS',
'bbl': '4014380001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1018366',
'y_coordinate_state_plane': '214589',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75560792445791',
'longitude': '-73.87685953010295',
'location': {'latitude': '40.75560792445791',
'longitude': '-73.87685953010295',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789301',
'created_date': '2025-01-16T23:08:34.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11235',
'incident_address': '3120 BRIGHTON 5 STREET',
'street_name': 'BRIGHTON 5 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '13 BROOKLYN',
'bbl': '3086880089',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994732',
'y_coordinate_state_plane': '149417',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57678496246616',
'longitude': '-73.96226690651686',
'location': {'latitude': '40.57678496246616',
'longitude': '-73.96226690651686',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784428',
'created_date': '2025-01-16T23:08:34.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11229',
'incident_address': '2060 COYLE STREET',
'street_name': 'COYLE STREET',
'cross_street_1': 'AVENUE T',
'cross_street_2': 'AVENUE U',
'intersection_street_1': 'AVENUE T',
'intersection_street_2': 'AVENUE U',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'COYLE STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3073390032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001653',
'y_coordinate_state_plane': '158546',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.601831352418294',
'longitude': '-73.93732919292381',
'location': {'latitude': '40.601831352418294',
'longitude': '-73.93732919292381',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785062',
'created_date': '2025-01-16T23:08:31.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11433',
'incident_address': '174-07 POLHEMAS AVENUE',
'street_name': 'POLHEMAS AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 QUEENS',
'bbl': '4102430093',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1044522',
'y_coordinate_state_plane': '194742',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70099331241355',
'longitude': '-73.78262846256477',
'location': {'latitude': '40.70099331241355',
'longitude': '-73.78262846256477',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782621',
'created_date': '2025-01-16T23:08:28.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11358',
'incident_address': '36-14 165 STREET',
'street_name': '165 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 QUEENS',
'bbl': '4052870020',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039421',
'y_coordinate_state_plane': '217230',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'location': {'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790665',
'created_date': '2025-01-16T23:08:25.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11201',
'incident_address': '86 SCHERMERHORN STREET',
'street_name': 'SCHERMERHORN STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '02 BROOKLYN',
'bbl': '3002710043',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986894',
'y_coordinate_state_plane': '190874',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'location': {'latitude': '40.69058141534944',
'longitude': '-73.9904658878085',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792317',
'created_date': '2025-01-16T23:08:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Equipment (NC1)',
'incident_zip': '11436',
'incident_address': '119-01 145 STREET',
'street_name': '145 STREET',
'cross_street_1': '119 AVE',
'cross_street_2': '120 AVE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '12 QUEENS',
'bbl': '4120250055',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1040939',
'y_coordinate_state_plane': '186363',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.67801862636822',
'longitude': '-73.79562104322997',
'location': {'latitude': '40.67801862636822',
'longitude': '-73.79562104322997',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788218',
'created_date': '2025-01-16T23:08:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Water System',
'descriptor': 'Hydrant Leaking (WC1)',
'incident_zip': '11216',
'incident_address': '111 ROGERS AVENUE',
'street_name': 'ROGERS AVENUE',
'cross_street_1': 'PROSPECT PL',
'cross_street_2': 'PARK PL',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'community_board': '08 BROOKLYN',
'bbl': '3012330003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997315',
'y_coordinate_state_plane': '184775',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.673831802266086',
'longitude': '-73.95290018963524',
'location': {'latitude': '40.673831802266086',
'longitude': '-73.95290018963524',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786739',
'created_date': '2025-01-16T23:07:48.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Street',
'incident_zip': '10461',
'incident_address': '1031 SACKET AVENUE',
'street_name': 'SACKET AVENUE',
'cross_street_1': 'PAULDING AVENUE',
'cross_street_2': 'HONE AVENUE',
'intersection_street_1': 'PAULDING AVENUE',
'intersection_street_2': 'HONE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SACKET AVENUE',
'status': 'In Progress',
'community_board': '11 BRONX',
'bbl': '2040640027',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025283',
'y_coordinate_state_plane': '246877',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84420013954321',
'longitude': '-73.85169560295463',
'location': {'latitude': '40.84420013954321',
'longitude': '-73.85169560295463',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784686',
'created_date': '2025-01-16T23:07:28.000',
'closed_date': '2025-01-17T00:57:19.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '439 62 STREET',
'street_name': '62 STREET',
'cross_street_1': '4 AVENUE',
'cross_street_2': '5 AVENUE',
'intersection_street_1': '4 AVENUE',
'intersection_street_2': '5 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '62 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T00:57:23.000',
'community_board': '07 BROOKLYN',
'bbl': '3057910062',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '979087',
'y_coordinate_state_plane': '172123',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63911297134767',
'longitude': '-74.01860312187411',
'location': {'latitude': '40.63911297134767',
'longitude': '-74.01860312187411',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786286',
'created_date': '2025-01-16T23:07:19.000',
'closed_date': '2025-01-17T00:20:48.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10467',
'incident_address': '2819 BARKER AVENUE',
'street_name': 'BARKER AVENUE',
'cross_street_1': 'BRITTON STREET',
'cross_street_2': 'ARNOW AVENUE',
'intersection_street_1': 'BRITTON STREET',
'intersection_street_2': 'ARNOW AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BARKER AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:20:52.000',
'community_board': '11 BRONX',
'bbl': '2045060040',
'borough': 'BRONX',
'x_coordinate_state_plane': '1020431',
'y_coordinate_state_plane': '255129',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86687060417738',
'longitude': '-73.86918748101428',
'location': {'latitude': '40.86687060417738',
'longitude': '-73.86918748101428',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783096',
'created_date': '2025-01-16T23:07:03.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Condition Attracting Rodents',
'location_type': '3+ Family Apt. Building',
'incident_zip': '10025',
'incident_address': '10 MANHATTAN AVENUE',
'street_name': 'MANHATTAN AVENUE',
'cross_street_1': 'WEST 100 STREET',
'cross_street_2': 'WEST 101 STREET',
'intersection_street_1': 'WEST 100 STREET',
'intersection_street_2': 'WEST 101 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'MANHATTAN AVENUE',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'bbl': '1018360047',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994205',
'y_coordinate_state_plane': '228963',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.795120989166264',
'longitude': '-73.96404647066187',
'location': {'latitude': '40.795120989166264',
'longitude': '-73.96404647066187',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791480',
'created_date': '2025-01-16T23:06:59.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11368',
'incident_address': '58-27 VAN CLEEF STREET',
'street_name': 'VAN CLEEF STREET',
'cross_street_1': 'SAULTELL AVENUE',
'cross_street_2': 'HORACE HARDING EXPRESSWAY',
'intersection_street_1': 'SAULTELL AVENUE',
'intersection_street_2': 'HORACE HARDING EXPRESSWAY',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': 'VAN CLEEF STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4019720108',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025948',
'y_coordinate_state_plane': '208811',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73971628493727',
'longitude': '-73.84952844868472',
'location': {'latitude': '40.73971628493727',
'longitude': '-73.84952844868472',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785387',
'created_date': '2025-01-16T23:06:43.000',
'closed_date': '2025-01-17T01:27:26.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11212',
'incident_address': '47 EAST 91 STREET',
'street_name': 'EAST 91 STREET',
'cross_street_1': 'EAST NEW YORK AVENUE',
'cross_street_2': 'RUTLAND ROAD',
'intersection_street_1': 'EAST NEW YORK AVENUE',
'intersection_street_2': 'RUTLAND ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 91 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T01:27:30.000',
'community_board': '17 BROOKLYN',
'bbl': '3045940098',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003749',
'y_coordinate_state_plane': '180745',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66275852068256',
'longitude': '-73.92971704559113',
'location': {'latitude': '40.66275852068256',
'longitude': '-73.92971704559113',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786781',
'created_date': '2025-01-16T23:06:27.000',
'closed_date': '2025-01-17T01:13:42.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '10065',
'incident_address': '139 EAST 63 STREET',
'street_name': 'EAST 63 STREET',
'cross_street_1': 'LEXINGTON AVENUE',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'LEXINGTON AVENUE',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 63 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:13:46.000',
'community_board': '08 MANHATTAN',
'bbl': '1013987502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '993637',
'y_coordinate_state_plane': '217857',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Truck',
'latitude': '40.764638580525926',
'longitude': '-73.966113378753',
'location': {'latitude': '40.764638580525926',
'longitude': '-73.966113378753',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63792187',
'created_date': '2025-01-16T23:06:17.000',
'closed_date': '2025-01-17T00:27:52.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '60-11 WOODBINE STREET',
'street_name': 'WOODBINE STREET',
'cross_street_1': '60 PLACE',
'cross_street_2': 'FRESH POND ROAD',
'intersection_street_1': '60 PLACE',
'intersection_street_2': 'FRESH POND ROAD',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'WOODBINE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2025-01-17T00:27:54.000',
'community_board': '05 QUEENS',
'bbl': '4035280131',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1011971',
'y_coordinate_state_plane': '196936',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.707177162091504',
'longitude': '-73.90001475809278',
'location': {'latitude': '40.707177162091504',
'longitude': '-73.90001475809278',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791427',
'created_date': '2025-01-16T23:06:10.000',
'closed_date': '2025-01-17T01:17:05.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '92-12 91 AVENUE',
'street_name': '91 AVENUE',
'cross_street_1': '92 STREET',
'cross_street_2': 'WOODHAVEN BOULEVARD',
'intersection_street_1': '92 STREET',
'intersection_street_2': 'WOODHAVEN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '91 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:17:08.000',
'community_board': '09 QUEENS',
'bbl': '4089860006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025529',
'y_coordinate_state_plane': '190524',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.689524878582745',
'longitude': '-73.85115258331557',
'location': {'latitude': '40.689524878582745',
'longitude': '-73.85115258331557',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791668',
'created_date': '2025-01-16T23:05:48.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Mixed Use Building',
'incident_zip': '10024',
'incident_address': '50 WEST 77 STREET',
'street_name': 'WEST 77 STREET',
'cross_street_1': 'CENTRAL PARK ENTRANCE W 77 ST',
'cross_street_2': 'COLUMBUS AVENUE',
'intersection_street_1': 'CENTRAL PARK ENTRANCE W 77 ST',
'intersection_street_2': 'COLUMBUS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 77 STREET',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'bbl': '1011290059',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990915',
'y_coordinate_state_plane': '223614',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78044251109907',
'longitude': '-73.97593395834785',
'location': {'latitude': '40.78044251109907',
'longitude': '-73.97593395834785',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787885',
'created_date': '2025-01-16T23:05:34.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11428',
'incident_address': '221-35 90 AVENUE',
'street_name': '90 AVENUE',
'address_type': 'ADDRESS',
'city': 'QUEENS VILLAGE',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '13 QUEENS',
'bbl': '4106680001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1056618',
'y_coordinate_state_plane': '204771',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.728429744602614',
'longitude': '-73.73889654934462',
'location': {'latitude': '40.728429744602614',
'longitude': '-73.73889654934462',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789358',
'created_date': '2025-01-16T23:05:34.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11358',
'incident_address': '36-14 165 STREET',
'street_name': '165 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '07 QUEENS',
'bbl': '4052870020',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039421',
'y_coordinate_state_plane': '217230',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'location': {'latitude': '40.76275046640397',
'longitude': '-73.8008408068392',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782828',
'created_date': '2025-01-16T23:05:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10028',
'incident_address': '1601 YORK AVENUE',
'street_name': 'YORK AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 MANHATTAN',
'bbl': '1015640026',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998701',
'y_coordinate_state_plane': '221629',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77498490962737',
'longitude': '-73.94782447387132',
'location': {'latitude': '40.77498490962737',
'longitude': '-73.94782447387132',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783447',
'created_date': '2025-01-16T23:05:21.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'For Hire Vehicle Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'location_type': 'Street',
'incident_zip': '10128',
'incident_address': '160 EAST 87 STREET',
'street_name': 'EAST 87 STREET',
'cross_street_1': 'LEXINGTON AVENUE',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'LEXINGTON AVENUE',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 87 STREET',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1015150046',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996836',
'y_coordinate_state_plane': '223432',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '160 EAST 87 STREET, MANHATTAN (NEW YORK), NY, 10128',
'latitude': '40.779936521203915',
'longitude': '-73.95455470242565',
'location': {'latitude': '40.779936521203915',
'longitude': '-73.95455470242565',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784433',
'created_date': '2025-01-16T23:05:20.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10461',
'incident_address': 'DUDLEY AVENUE',
'street_name': 'DUDLEY AVENUE',
'cross_street_1': 'DUDLEY AVENUE',
'cross_street_2': 'GILLESPIE AVENUE',
'intersection_street_1': 'DUDLEY AVENUE',
'intersection_street_2': 'GILLESPIE AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '10 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1031032',
'y_coordinate_state_plane': '245981',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.841712299986156',
'longitude': '-73.83092345589031',
'location': {'latitude': '40.841712299986156',
'longitude': '-73.83092345589031',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783425',
'created_date': '2025-01-16T23:05:16.000',
'closed_date': '2025-01-16T23:47:30.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11218',
'incident_address': '415 STRATFORD ROAD',
'street_name': 'STRATFORD ROAD',
'cross_street_1': 'CORTELYOU ROAD',
'cross_street_2': 'DORCHESTER ROAD',
'intersection_street_1': 'CORTELYOU ROAD',
'intersection_street_2': 'DORCHESTER ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'STRATFORD ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-16T23:47:34.000',
'community_board': '14 BROOKLYN',
'bbl': '3051540047',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993220',
'y_coordinate_state_plane': '171881',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63844569579248',
'longitude': '-73.96767996569872',
'location': {'latitude': '40.63844569579248',
'longitude': '-73.96767996569872',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785795',
'created_date': '2025-01-16T23:05:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '47-23 UNION STREET',
'street_name': 'UNION STREET',
'cross_street_1': 'LABURNUM AVENUE',
'cross_street_2': 'NEGUNDO AVENUE',
'intersection_street_1': 'LABURNUM AVENUE',
'intersection_street_2': 'NEGUNDO AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': 'UNION STREET',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4052170030',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035129',
'y_coordinate_state_plane': '212544',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.749914360772856',
'longitude': '-73.8163697085996',
'location': {'latitude': '40.749914360772856',
'longitude': '-73.8163697085996',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788165',
'created_date': '2025-01-16T23:04:39.000',
'closed_date': '2025-01-16T23:14:39.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '61-40 WETHEROLE STREET',
'street_name': 'WETHEROLE STREET',
'cross_street_1': 'ELIOT AVENUE',
'cross_street_2': '62 AVENUE',
'intersection_street_1': 'ELIOT AVENUE',
'intersection_street_2': '62 AVENUE',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': 'WETHEROLE STREET',
'status': 'Closed',
'resolution_description': 'Your request can not be processed at this time because of insufficient contact information. Please create a new Service Request on NYC.gov and provide more detailed contact information.',
'resolution_action_updated_date': '2025-01-16T23:14:42.000',
'community_board': '06 QUEENS',
'bbl': '4030900031',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1020604',
'y_coordinate_state_plane': '205291',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.730078344906076',
'longitude': '-73.86883181556875',
'location': {'latitude': '40.730078344906076',
'longitude': '-73.86883181556875',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63781680',
'created_date': '2025-01-16T23:04:29.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '10466',
'incident_address': '4005A DE REIMER AVENUE',
'street_name': 'DE REIMER AVENUE',
'cross_street_1': 'STRANG AVENUE',
'cross_street_2': 'EDENWALD AVENUE',
'intersection_street_1': 'STRANG AVENUE',
'intersection_street_2': 'EDENWALD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'DE REIMER AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049820089',
'borough': 'BRONX',
'x_coordinate_state_plane': '1027985',
'y_coordinate_state_plane': '263761',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.890528536017975',
'longitude': '-73.8418196683311',
'location': {'latitude': '40.890528536017975',
'longitude': '-73.8418196683311',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787565',
'created_date': '2025-01-16T23:04:25.000',
'closed_date': '2025-01-16T23:29:16.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11224',
'incident_address': '205 SEA BREEZE AVENUE',
'street_name': 'SEA BREEZE AVENUE',
'cross_street_1': 'WEST 2 STREET',
'cross_street_2': 'WEST 5 STREET',
'intersection_street_1': 'WEST 2 STREET',
'intersection_street_2': 'WEST 5 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SEA BREEZE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-16T23:29:19.000',
'community_board': '13 BROOKLYN',
'bbl': '3072800188',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992261',
'y_coordinate_state_plane': '149072',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.5758405825131',
'longitude': '-73.97116241804183',
'location': {'latitude': '40.5758405825131',
'longitude': '-73.97116241804183',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783495',
'created_date': '2025-01-16T23:04:21.000',
'closed_date': '2025-01-16T23:28:36.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '202 YORK STREET',
'street_name': 'YORK STREET',
'cross_street_1': 'GOLD STREET',
'cross_street_2': 'NAVY STREET',
'intersection_street_1': 'GOLD STREET',
'intersection_street_2': 'NAVY STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'YORK STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-16T23:28:39.000',
'community_board': '02 BROOKLYN',
'bbl': '3000710001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989043',
'y_coordinate_state_plane': '194796',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70134549131544',
'longitude': '-73.9827139265285',
'location': {'latitude': '40.70134549131544',
'longitude': '-73.9827139265285',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788767',
'created_date': '2025-01-16T23:03:53.000',
'closed_date': '2025-01-16T23:47:50.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11210',
'incident_address': '1 KENILWORTH PLACE',
'street_name': 'KENILWORTH PLACE',
'cross_street_1': 'FARRAGUT ROAD',
'cross_street_2': 'GLENWOOD ROAD',
'intersection_street_1': 'FARRAGUT ROAD',
'intersection_street_2': 'GLENWOOD ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KENILWORTH PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-16T23:47:53.000',
'community_board': '14 BROOKLYN',
'bbl': '3052490035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997588',
'y_coordinate_state_plane': '170869',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63566247131567',
'longitude': '-73.95194351727496',
'location': {'latitude': '40.63566247131567',
'longitude': '-73.95194351727496',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787642',
'created_date': '2025-01-16T23:03:20.000',
'closed_date': '2025-01-17T00:22:57.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11435',
'incident_address': '147-01 HILLSIDE AVENUE',
'street_name': 'HILLSIDE AVENUE',
'cross_street_1': 'SUTPHIN BOULEVARD',
'cross_street_2': '148 STREET',
'intersection_street_1': 'SUTPHIN BOULEVARD',
'intersection_street_2': '148 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': 'HILLSIDE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2025-01-17T00:23:02.000',
'community_board': '08 QUEENS',
'bbl': '4097020062',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037043',
'y_coordinate_state_plane': '196470',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.705784035042434',
'longitude': '-73.8095879090224',
'location': {'latitude': '40.705784035042434',
'longitude': '-73.8095879090224',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789027',
'created_date': '2025-01-16T23:03:07.000',
'closed_date': '2025-01-17T01:51:15.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11206',
'incident_address': '247 VARET STREET',
'street_name': 'VARET STREET',
'cross_street_1': 'WHITE STREET',
'cross_street_2': 'BOGART STREET',
'intersection_street_1': 'WHITE STREET',
'intersection_street_2': 'BOGART STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'VARET STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T01:51:20.000',
'community_board': '01 BROOKLYN',
'bbl': '3031100032',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002480',
'y_coordinate_state_plane': '195787',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'location': {'latitude': '40.70404807317634',
'longitude': '-73.93425038133091',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787551',
'created_date': '2025-01-16T23:03:00.000',
'closed_date': '2025-01-17T00:01:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11385',
'incident_address': 'BLEECKER STREET',
'street_name': 'BLEECKER STREET',
'cross_street_1': 'BLEECKER STREET',
'cross_street_2': 'GRANDVIEW AVENUE',
'intersection_street_1': 'BLEECKER STREET',
'intersection_street_2': 'GRANDVIEW AVENUE',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:01:48.000',
'community_board': '05 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010034',
'y_coordinate_state_plane': '197709',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70930471946634',
'longitude': '-73.90699824373559',
'location': {'latitude': '40.70930471946634',
'longitude': '-73.90699824373559',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787881',
'created_date': '2025-01-16T23:02:46.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10032',
'incident_address': '516 WEST 156 STREET',
'street_name': 'WEST 156 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant. The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment. If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1021140028',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999952',
'y_coordinate_state_plane': '242603',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.832550629853074',
'longitude': '-73.94325867079286',
'location': {'latitude': '40.832550629853074',
'longitude': '-73.94325867079286',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790205',
'created_date': '2025-01-16T23:02:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10314',
'incident_address': '63 LATOURETTE LANE',
'street_name': 'LATOURETTE LANE',
'cross_street_1': 'ROCKLAND AVENUE',
'cross_street_2': 'ASHWORTH AVENUE',
'intersection_street_1': 'ROCKLAND AVENUE',
'intersection_street_2': 'ASHWORTH AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'LATOURETTE LANE',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2025-01-17T02:16:00.000',
'community_board': '02 STATEN ISLAND',
'bbl': '5019900065',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '943671',
'y_coordinate_state_plane': '154253',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.58997213268663',
'longitude': '-74.14610515480756',
'location': {'latitude': '40.58997213268663',
'longitude': '-74.14610515480756',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783147',
'created_date': '2025-01-16T23:02:19.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '91-44 90 STREET',
'street_name': '90 STREET',
'cross_street_1': '91 AVENUE',
'cross_street_2': 'ATLANTIC AVENUE',
'intersection_street_1': '91 AVENUE',
'intersection_street_2': 'ATLANTIC AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '90 STREET',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4089830027',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1025068',
'y_coordinate_state_plane': '190022',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.6881491439726',
'longitude': '-73.8528179356017',
'location': {'latitude': '40.6881491439726',
'longitude': '-73.8528179356017',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789279',
'created_date': '2025-01-16T23:02:10.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10034',
'incident_address': '97 COOPER STREET',
'street_name': 'COOPER STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '12 MANHATTAN',
'bbl': '1022420037',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1006042',
'y_coordinate_state_plane': '255768',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86867171358541',
'longitude': '-73.92120884027167',
'location': {'latitude': '40.86867171358541',
'longitude': '-73.92120884027167',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785412',
'created_date': '2025-01-16T23:02:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11231',
'incident_address': '212 KANE STREET',
'street_name': 'KANE STREET',
'cross_street_1': 'CLINTON ST',
'cross_street_2': 'TOMPKINS PL',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '06 BROOKLYN',
'bbl': '3003250039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985419',
'y_coordinate_state_plane': '189168',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68589915476732',
'longitude': '-73.99578494911883',
'location': {'latitude': '40.68589915476732',
'longitude': '-73.99578494911883',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789076',
'created_date': '2025-01-16T23:01:53.000',
'closed_date': '2025-01-17T01:19:38.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10034',
'incident_address': '618 ACADEMY STREET',
'street_name': 'ACADEMY STREET',
'cross_street_1': 'SHERMAN AVENUE',
'cross_street_2': 'VERMILYEA AVENUE',
'intersection_street_1': 'SHERMAN AVENUE',
'intersection_street_2': 'VERMILYEA AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'ACADEMY STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T01:19:41.000',
'community_board': '12 MANHATTAN',
'bbl': '1022240022',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1005218',
'y_coordinate_state_plane': '254447',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86504796739113',
'longitude': '-73.92419222671695',
'location': {'latitude': '40.86504796739113',
'longitude': '-73.92419222671695',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782140',
'created_date': '2025-01-16T23:01:33.000',
'closed_date': '2025-01-17T00:15:36.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11222',
'incident_address': '1117 MANHATTAN AVENUE',
'street_name': 'MANHATTAN AVENUE',
'cross_street_1': 'CLAY STREET',
'cross_street_2': 'BOX STREET',
'intersection_street_1': 'CLAY STREET',
'intersection_street_2': 'BOX STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MANHATTAN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2025-01-17T00:15:39.000',
'community_board': '01 BROOKLYN',
'bbl': '3024820039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996626',
'y_coordinate_state_plane': '207690',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.736729058522776',
'longitude': '-73.95534194457652',
'location': {'latitude': '40.736729058522776',
'longitude': '-73.95534194457652',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790233',
'created_date': '2025-01-16T23:01:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11368',
'incident_address': '35-05 JUNCTION BOULEVARD',
'street_name': 'JUNCTION BOULEVARD',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': 'JUNCTION BOULEVARD',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:12:56.000',
'community_board': '03 QUEENS',
'bbl': '4017370060',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019814',
'y_coordinate_state_plane': '213662',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753057842083756',
'longitude': '-73.8716379368014',
'location': {'latitude': '40.753057842083756',
'longitude': '-73.8716379368014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63786013',
'created_date': '2025-01-16T23:01:08.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11368',
'incident_address': '108-06 37 AVENUE',
'street_name': '37 AVENUE',
'cross_street_1': '108 STREET',
'cross_street_2': '109 STREET',
'intersection_street_1': '108 STREET',
'intersection_street_2': '109 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '37 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:24:05.000',
'community_board': '03 QUEENS',
'bbl': '4017770006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023050',
'y_coordinate_state_plane': '213984',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753928041742626',
'longitude': '-73.85995631950479',
'location': {'latitude': '40.753928041742626',
'longitude': '-73.85995631950479',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63791387',
'created_date': '2025-01-16T23:00:56.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '11231',
'incident_address': '230 PRESIDENT STREET',
'street_name': 'PRESIDENT STREET',
'cross_street_1': 'CLINTON STREET',
'cross_street_2': 'COURT STREET',
'intersection_street_1': 'CLINTON STREET',
'intersection_street_2': 'COURT STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'PRESIDENT STREET',
'status': 'In Progress',
'community_board': '06 BROOKLYN',
'bbl': '3003510007',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984883',
'y_coordinate_state_plane': '187800',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68214436144292',
'longitude': '-73.99771772713774',
'location': {'latitude': '40.68214436144292',
'longitude': '-73.99771772713774',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63787177',
'created_date': '2025-01-16T23:00:25.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11358',
'incident_address': '46-12 161 STREET',
'street_name': '161 STREET',
'cross_street_1': '46 AVENUE',
'cross_street_2': 'LABURNUM AVENUE',
'intersection_street_1': '46 AVENUE',
'intersection_street_2': 'LABURNUM AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '161 STREET',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4054597501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1038027',
'y_coordinate_state_plane': '213798',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75333911567251',
'longitude': '-73.80590037683702',
'location': {'latitude': '40.75333911567251',
'longitude': '-73.80590037683702',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63783467',
'created_date': '2025-01-16T23:00:23.000',
'closed_date': '2025-01-16T23:27:27.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11205',
'incident_address': '125 NORTH PORTLAND AVENUE',
'street_name': 'NORTH PORTLAND AVENUE',
'cross_street_1': 'AUBURN PLACE',
'cross_street_2': 'NORTH OXFORD WALK',
'intersection_street_1': 'AUBURN PLACE',
'intersection_street_2': 'NORTH OXFORD WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NORTH PORTLAND AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-16T23:27:31.000',
'community_board': '02 BROOKLYN',
'bbl': '3020410001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '990897',
'y_coordinate_state_plane': '192249',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69435337139692',
'longitude': '-73.97602994339809',
'location': {'latitude': '40.69435337139692',
'longitude': '-73.97602994339809',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788672',
'created_date': '2025-01-16T22:59:55.000',
'closed_date': '2025-01-17T01:36:46.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11372',
'incident_address': '35-28 80 STREET',
'street_name': '80 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '80 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2025-01-17T01:36:50.000',
'community_board': '03 QUEENS',
'bbl': '4012790018',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015700',
'y_coordinate_state_plane': '212997',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.751248176673506',
'longitude': '-73.88648979571101',
'location': {'latitude': '40.751248176673506',
'longitude': '-73.88648979571101',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788782',
'created_date': '2025-01-16T22:59:45.000',
'closed_date': '2025-01-17T00:30:37.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11358',
'incident_address': '47-31 187 STREET',
'street_name': '187 STREET',
'cross_street_1': 'EFFINGTON AVENUE',
'cross_street_2': '48 AVENUE',
'intersection_street_1': 'EFFINGTON AVENUE',
'intersection_street_2': '48 AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '187 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2025-01-17T00:30:39.000',
'community_board': '11 QUEENS',
'bbl': '4056050015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1041921',
'y_coordinate_state_plane': '212443',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.749595453663396',
'longitude': '-73.79185726826422',
'location': {'latitude': '40.749595453663396',
'longitude': '-73.79185726826422',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784563',
'created_date': '2025-01-16T22:59:45.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11385',
'incident_address': '77-04 85 STREET',
'street_name': '85 STREET',
'cross_street_1': '77 AVENUE',
'cross_street_2': '78 AVENUE',
'intersection_street_1': '77 AVENUE',
'intersection_street_2': '78 AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '85 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2025-01-17T02:45:12.000',
'community_board': '05 QUEENS',
'bbl': '4038400007',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1021886',
'y_coordinate_state_plane': '196707',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70651199377634',
'longitude': '-73.86425425834392',
'location': {'latitude': '40.70651199377634',
'longitude': '-73.86425425834392',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63789067',
'created_date': '2025-01-16T22:59:36.000',
'closed_date': '2025-01-17T00:06:29.000',
'agency': 'NYC311-PRD',
'agency_name': 'Service Organization',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11105',
'incident_address': '21-47 33 STREET',
'street_name': '33 STREET',
'cross_street_1': '21 AVENUE',
'cross_street_2': 'DITMARS BOULEVARD',
'intersection_street_1': '21 AVENUE',
'intersection_street_2': 'DITMARS BOULEVARD',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '33 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2025-01-17T00:06:33.000',
'community_board': '01 QUEENS',
'bbl': '4008307501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009608',
'y_coordinate_state_plane': '222123',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.776316248692595',
'longitude': '-73.90844276478124',
'location': {'latitude': '40.776316248692595',
'longitude': '-73.90844276478124',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782967',
'created_date': '2025-01-16T22:59:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'PESTS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63782267',
'created_date': '2025-01-16T22:59:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'DOOR/WINDOW',
'descriptor': 'DOOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788468',
'created_date': '2025-01-16T22:59:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PLUMBING',
'descriptor': 'RADIATOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785744',
'created_date': '2025-01-16T22:59:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'APPLIANCE',
'descriptor': 'REFRIGERATOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63785615',
'created_date': '2025-01-16T22:59:27.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'WALL',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63784209',
'created_date': '2025-01-16T22:59:26.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PLUMBING',
'descriptor': 'BASIN/SINK',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63788252',
'created_date': '2025-01-16T22:59:26.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'DOOR/FRAME',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010876',
'y_coordinate_state_plane': '260892',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'location': {'latitude': '40.88272224707125',
'longitude': '-73.90371067700804',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '63790734',
'created_date': '2025-01-16T22:59:26.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'CEILING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10463',
'incident_address': '3424 KINGSBRIDGE AVENUE',
'street_name': 'KINGSBRIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair. HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
'resolution_action_updated_date': '2025-01-16T00:00:00.000',
'community_board': '08 BRONX',
'bbl': '2057600112',
'borough': 'BRONX',