From 6169269957865d5148527af4477f34026ae4ce71 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Fri, 19 Sep 2025 17:49:26 +0200 Subject: [PATCH 1/9] feat: format input schema to markdown --- src/tools/fetch-actor-details.ts | 3 +- src/utils/input-schema-to-markdown.ts | 31 +++ tests/unit/input-schema-to-markdown.test.ts | 239 ++++++++++++++++++++ 3 files changed, 272 insertions(+), 1 deletion(-) create mode 100644 src/utils/input-schema-to-markdown.ts create mode 100644 tests/unit/input-schema-to-markdown.test.ts diff --git a/src/tools/fetch-actor-details.ts b/src/tools/fetch-actor-details.ts index 32742be1..c21c36d9 100644 --- a/src/tools/fetch-actor-details.ts +++ b/src/tools/fetch-actor-details.ts @@ -6,6 +6,7 @@ import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { fetchActorDetails } from '../utils/actor-details.js'; import { ajv } from '../utils/ajv.js'; +import { inputSchemaToMarkdown } from '../utils/input-schema-to-markdown.js'; const fetchActorDetailsToolArgsSchema = z.object({ actor: z.string() @@ -42,7 +43,7 @@ export const fetchActorDetailsTool: ToolEntry = { content: [ { type: 'text', text: `**Actor card**:\n${details.actorCard}` }, { type: 'text', text: `**README:**\n${details.readme}` }, - { type: 'text', text: `**Input Schema:**\n${JSON.stringify(details.inputSchema, null, 0)}` }, + { type: 'text', text: inputSchemaToMarkdown(details.inputSchema) }, ], }; }, diff --git a/src/utils/input-schema-to-markdown.ts b/src/utils/input-schema-to-markdown.ts new file mode 100644 index 00000000..af55aa53 --- /dev/null +++ b/src/utils/input-schema-to-markdown.ts @@ -0,0 +1,31 @@ +import type { IActorInputSchema } from '../types'; + +export function inputSchemaToMarkdown(inputSchema: IActorInputSchema) { + const requiredFields = new Set(inputSchema.required || []); + + return `# Input Schema + +${inputSchema.description} + +${Object.entries(inputSchema.properties).map(([key, value]) => { + const isRequired = requiredFields.has(key); + const requiredText = isRequired ? 'required' : 'optional'; + + // Handle prefill and default differently + let suffix = ''; + if (value.prefill !== undefined && !Array.isArray(value.prefill)) { + suffix = ` prefill:${value.prefill}`; + } else if (value.default !== undefined) { + suffix = ` default:${value.default}`; + } + + const enumText = value.enum ? `options: ${value.enum.map((item) => (item === '' ? '' : item)).join(', ')}\n` : ''; + + const hasValue = value.prefill !== undefined || value.default !== undefined; + const trailingSpace = hasValue ? '' : ' '; + + return `## \`${key}\` ${requiredText} ${value.type}${suffix}${trailingSpace} +${enumText}${value.description}`; + }).join('\n\n')} +`; +} diff --git a/tests/unit/input-schema-to-markdown.test.ts b/tests/unit/input-schema-to-markdown.test.ts new file mode 100644 index 00000000..83fa7261 --- /dev/null +++ b/tests/unit/input-schema-to-markdown.test.ts @@ -0,0 +1,239 @@ +/* eslint-disable max-len */ +import { describe, expect, it } from 'vitest'; + +import { inputSchemaToMarkdown } from '../../src/utils/input-schema-to-markdown.js'; + +describe('inputSchemaToMarkdown', () => { + it('should format schema for Actor apify/facebook-posts-scraper', () => { + const schema = { title: 'Input schema for the empty project actor.', + description: "This scraper will get post and page details from Facebook pages of your choice. To try it out, just paste a Facebook Page URL and click ▷ Start. If you need any guidance, just follow this tutorial.", + type: 'object', + schemaVersion: 1, + properties: { + startUrls: { + title: 'Facebook URLs', + description: 'Enter a valid Facebook page URL, e.g. https://www.facebook.com/humansofnewyork/. Note that you can only scrape public pages with this Actor, not personal profiles.', + type: 'array', + prefill: [{ url: 'https://www.facebook.com/humansofnewyork/' }], + }, + resultsLimit: { + title: 'Results amount', + description: 'If this limit is not set, only the initial page of results will be extracted.', + type: 'integer', + prefill: 20, + }, + captionText: { + title: 'Include video transcript', + description: 'Extract video transcript (if available).', + type: 'boolean', + default: false, + }, + onlyPostsNewerThan: { + title: 'Posts newer than', + description: "Scrape posts from the provided date to the present day (or date set in 'Older than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years.", + type: 'string', + }, + onlyPostsOlderThan: { + title: 'Posts older than', + description: "Scrape posts from the provided date to the past (or date set in 'Newer than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years.", + type: 'string', + }, + }, + required: ['startUrls'] }; + + const result = inputSchemaToMarkdown(schema); + expect(result).toMatchInlineSnapshot(` + "# Input Schema + + This scraper will get post and page details from Facebook pages of your choice. To try it out, just paste a Facebook Page URL and click ▷ Start. If you need any guidance, just follow this tutorial. + + ## \`startUrls\` required array + Enter a valid Facebook page URL, e.g. https://www.facebook.com/humansofnewyork/. Note that you can only scrape public pages with this Actor, not personal profiles. + + ## \`resultsLimit\` optional integer prefill:20 + If this limit is not set, only the initial page of results will be extracted. + + ## \`captionText\` optional boolean default:false + Extract video transcript (if available). + + ## \`onlyPostsNewerThan\` optional string + Scrape posts from the provided date to the present day (or date set in 'Older than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years. + + ## \`onlyPostsOlderThan\` optional string + Scrape posts from the provided date to the past (or date set in 'Newer than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years. + " + `); + }); + + it('should format schema for Actor compass/google-maps-extractor', () => { + const schema = { + title: 'Google Maps Data Scraper', + type: 'object', + description: 'To extract contact details from Google places, simply enter 🔍 Search term, add 📍 Location, and 💯 Number of places to extract. Section 🎯 Filters contains various extra features, filters, and sorting options.

Sections with asterisk* are just alternative ways to start the input (📡 Geolocation parameters, 🛰 Polygons, 🔗 URLs). They can be combined with any of the features and sorting options from the Filters section.', + schemaVersion: 1, + properties: { + searchStringsArray: { + title: '🔍 Search terms', + description: "Type what you’d normally search for in the Google Maps search bar, like English breakfast or pet shelter. Aim for unique terms for faster processing. Using similar terms (e.g., bar vs. restaurant vs. cafe) may slightly increase your capture rate but is less efficient.

⚠️ Heads up: Adding a location directly to the search, e.g., restaurant Pittsburgh, can limit you to a maximum of 120 results per search term due to OpenStreetMap webapp for visual validation of the exact area you want to cover.

⚠️ Automatically defined City polygons may be smaller than expected (e.g., they don't include agglomeration areas). If you need to define the whole city area, head over to the 📡 Geolocation parameters* ...", + type: 'string', + prefill: 'New York, USA', + }, + maxCrawledPlacesPerSearch: { + title: '💯 Number of places to extract (per each search term or URL)', + description: 'Number of results you expect to get per each Search term, Category or URL. The higher the number, the longer it will take.

If you want to scrape all places available, leave this field empty or use this section 🧭 Scrape all places on the map*.', + type: 'integer', + prefill: 50, + }, + language: { + title: '🌍 Language', + description: 'Scraping results will show in this language.', + enum: ['en', 'af', 'az', 'id', 'ms', 'bs', 'ca', 'cs', 'da', 'de', 'et', 'es', 'es-419', 'eu', 'fil', 'fr', 'gl', 'hr', 'zu', 'is', 'it', 'sw', 'lv', 'lt', 'hu', 'nl', 'no', 'uz', 'pl', 'pt-BR', 'pt-PT', 'ro', 'sq', 'sk', 'sl', 'fi', 'sv', 'vi', 'tr', 'el', 'bg', 'ky', 'kk', 'mk', 'mn', 'ru', 'sr', 'uk', 'ka', 'hy', 'iw', 'ur', 'ar', 'fa', 'am', 'ne', 'hi', 'mr', 'bn', 'pa', 'gu', 'ta', 'te', 'kn', 'ml', 'si', 'th', 'lo', 'my', 'km', 'ko', 'ja', 'zh-CN', 'zh-TW'], + type: 'string', + default: 'en', + prefill: 'en', + }, + categoryFilterWords: { + title: '🎢 Place categories', + description: "You can filter places by categories, which Google Maps has over 4,000. Categories can be general, e.g. beach, which would include all places containing that word e.g. black sand beach, or specific, e.g. beach club.

⚠️ You can use 🎢 Place categories alone or with 🔍 Search terms. 🔍 Search terms focus on searching, while 🎢 Categories filter result...", + type: 'array', + items: { + type: 'string', + enum: ['abbey', 'accountant', 'accounting', 'acupuncturist', 'aeroclub', 'agriculture', 'airline', 'airport', 'airstrip', 'allergist', 'amphitheater', 'amphitheatre', 'anesthesiologist', 'appraiser', 'aquarium', 'arboretum', 'architect', 'archive', 'arena', 'artist', 'ashram', 'astrologer', 'atm'], + }, + }, + placeMinimumStars: { + title: 'Set a minimum star rating', + description: 'Scrape only places with a rating equal to or above the selected stars. Places without reviews will also be skipped. Keep in mind, filtering by reviews reduces the number of places found per credit spent, as many will be excluded.', + enum: ['', 'two', 'twoAndHalf', 'three', 'threeAndHalf', 'four', 'fourAndHalf'], + type: 'string', + default: '', + }, + website: { + title: 'Scrape places with/without a website', + description: 'Use this to exclude places without a website, or vice versa. This option is turned off by default.', + enum: ['allPlaces', 'withWebsite', 'withoutWebsite'], + type: 'string', + default: 'allPlaces', + }, + searchMatching: { + title: 'Get exact name matches (no similar results)', + description: 'Restrict what places are scraped based on matching their name with provided 🔍 Search term. E.g., all places that have chicken in their name vs. places called Kentucky Fried Chicken.', + enum: ['all', 'only_includes', 'only_exact'], + type: 'string', + default: 'all', + }, + skipClosedPlaces: { + title: '⏩ Skip closed places', + description: 'Skip places that are marked as temporary or permanently closed. Ideal for focusing on currently open places.', + type: 'boolean', + default: false, + }, + countryCode: { + title: '🗺 Country', + description: 'Set the country where the data extraction should be carried out, e.g., United States.', + enum: ['', 'us', 'af', 'al', 'dz', 'as', 'ad', 'ao', 'ai', 'aq', 'ag', 'ar', 'am', 'aw', 'au', 'at', 'az', 'bs', 'bh', 'bd', 'bb', 'by', 'be', 'bz', 'bj', 'bm', 'bt', 'bo', 'ba', 'bw', 'bv', 'br', 'io', 'bn', 'bg', 'bf', 'bi', 'kh', 'cm', 'ca', 'cv', 'ky', 'cf', 'td', 'cl', 'cn', 'cx', 'cc', 'co', 'km', 'cg', 'cd', 'ck', 'cr', 'ci', 'hr', 'cu', 'cy', 'cz', 'dk', 'dj', 'dm', 'do', 'ec', 'eg', 'sv', 'gq', 'er', 'ee', 'et', 'fk', 'fo', 'fj', 'fi', 'fr', 'gf', 'pf', 'tf', 'ga', 'gm', 'ge', 'de', 'gh', 'gi', 'gr', 'gl', 'gd', 'gp', 'gu', 'gt', 'gn', 'gw', 'gy', 'ht', 'hm', 'va', 'hn', 'hk', 'hu', 'is', 'in'], + type: 'string', + }, + city: { + title: '🌇 City', + description: "Enter the city where the data extraction should be carried out, e.g., Pittsburgh.

⚠️ Do not include State or Country names here.

⚠️ Automatic City polygons may be smaller than expected (e.g., they don't include agglomeration areas). If you need that, set up the location using Country, State, County, City, or Postal code.
For an even more precise location definition (, head over to 🛰 Custom search area section to create polygon shapes of the areas you want t...", + type: 'string', + }, + state: { + title: 'State', + description: 'Set a state where the data extraction should be carried out, e.g., Massachusetts (mainly for the US addresses).', + type: 'string', + }, + county: { + title: 'county', + description: 'Set the county where the data extraction should be carried out.

⚠️ Note that county may represent different administrative areas in different countries: a county (e.g., US), regional district (e.g., Canada) or département (e.g., France).', + type: 'string', + }, + postalCode: { + title: 'Postal code', + description: 'Set the postal code of the area where the data extraction should be carried out, e.g., 10001.

⚠️ Combine Postal code only with 🗺 Country, never with 🌇 City. You can only input one postal code at a time.', + type: 'string', + }, + customGeolocation: { + title: '🛰 Custom search area (coordinate order must be: [↕ longitude, ↔ latitude])', + description: "Use this field to define the exact search area if other search area parameters don't work for you. See readme or our guide for details.", + type: 'object', + }, + startUrls: { + title: 'Google Maps URLs', + description: 'Max 300 results per search URL. Valid format for URLs contains google.com/maps/. This feature also supports uncommon URL formats such as: google.com?cid=***, goo.gl/maps, and custom place list URL.', + type: 'array', + }, + }, + }; + + const result = inputSchemaToMarkdown(schema); + expect(result).toMatchInlineSnapshot(` + "# Input Schema + + To extract contact details from Google places, simply enter 🔍 Search term, add 📍 Location, and 💯 Number of places to extract. Section 🎯 Filters contains various extra features, filters, and sorting options.

Sections with asterisk* are just alternative ways to start the input (📡 Geolocation parameters, 🛰 Polygons, 🔗 URLs). They can be combined with any of the features and sorting options from the Filters section. + + ## \`searchStringsArray\` optional array + Type what you’d normally search for in the Google Maps search bar, like English breakfast or pet shelter. Aim for unique terms for faster processing. Using similar terms (e.g., bar vs. restaurant vs. cafe) may slightly increase your capture rate but is less efficient.

⚠️ Heads up: Adding a location directly to the search, e.g., restaurant Pittsburgh, can limit you to a maximum of 120 results per search term due to OpenStreetMap webapp for visual validation of the exact area you want to cover.

⚠️ Automatically defined City polygons may be smaller than expected (e.g., they don't include agglomeration areas). If you need to define the whole city area, head over to the 📡 Geolocation parameters* ... + + ## \`maxCrawledPlacesPerSearch\` optional integer prefill:50 + Number of results you expect to get per each Search term, Category or URL. The higher the number, the longer it will take.

If you want to scrape all places available, leave this field empty or use this section 🧭 Scrape all places on the map*. + + ## \`language\` optional string prefill:en + options: en, af, az, id, ms, bs, ca, cs, da, de, et, es, es-419, eu, fil, fr, gl, hr, zu, is, it, sw, lv, lt, hu, nl, no, uz, pl, pt-BR, pt-PT, ro, sq, sk, sl, fi, sv, vi, tr, el, bg, ky, kk, mk, mn, ru, sr, uk, ka, hy, iw, ur, ar, fa, am, ne, hi, mr, bn, pa, gu, ta, te, kn, ml, si, th, lo, my, km, ko, ja, zh-CN, zh-TW + Scraping results will show in this language. + + ## \`categoryFilterWords\` optional array + You can filter places by categories, which Google Maps has over 4,000. Categories can be general, e.g. beach, which would include all places containing that word e.g. black sand beach, or specific, e.g. beach club.

⚠️ You can use 🎢 Place categories alone or with 🔍 Search terms. 🔍 Search terms focus on searching, while 🎢 Categories filter result... + + ## \`placeMinimumStars\` optional string default: + options: , two, twoAndHalf, three, threeAndHalf, four, fourAndHalf + Scrape only places with a rating equal to or above the selected stars. Places without reviews will also be skipped. Keep in mind, filtering by reviews reduces the number of places found per credit spent, as many will be excluded. + + ## \`website\` optional string default:allPlaces + options: allPlaces, withWebsite, withoutWebsite + Use this to exclude places without a website, or vice versa. This option is turned off by default. + + ## \`searchMatching\` optional string default:all + options: all, only_includes, only_exact + Restrict what places are scraped based on matching their name with provided 🔍 Search term. E.g., all places that have chicken in their name vs. places called Kentucky Fried Chicken. + + ## \`skipClosedPlaces\` optional boolean default:false + Skip places that are marked as temporary or permanently closed. Ideal for focusing on currently open places. + + ## \`countryCode\` optional string + options: , us, af, al, dz, as, ad, ao, ai, aq, ag, ar, am, aw, au, at, az, bs, bh, bd, bb, by, be, bz, bj, bm, bt, bo, ba, bw, bv, br, io, bn, bg, bf, bi, kh, cm, ca, cv, ky, cf, td, cl, cn, cx, cc, co, km, cg, cd, ck, cr, ci, hr, cu, cy, cz, dk, dj, dm, do, ec, eg, sv, gq, er, ee, et, fk, fo, fj, fi, fr, gf, pf, tf, ga, gm, ge, de, gh, gi, gr, gl, gd, gp, gu, gt, gn, gw, gy, ht, hm, va, hn, hk, hu, is, in + Set the country where the data extraction should be carried out, e.g., United States. + + ## \`city\` optional string + Enter the city where the data extraction should be carried out, e.g., Pittsburgh.

⚠️ Do not include State or Country names here.

⚠️ Automatic City polygons may be smaller than expected (e.g., they don't include agglomeration areas). If you need that, set up the location using Country, State, County, City, or Postal code.
For an even more precise location definition (, head over to 🛰 Custom search area section to create polygon shapes of the areas you want t... + + ## \`state\` optional string + Set a state where the data extraction should be carried out, e.g., Massachusetts (mainly for the US addresses). + + ## \`county\` optional string + Set the county where the data extraction should be carried out.

⚠️ Note that county may represent different administrative areas in different countries: a county (e.g., US), regional district (e.g., Canada) or département (e.g., France). + + ## \`postalCode\` optional string + Set the postal code of the area where the data extraction should be carried out, e.g., 10001.

⚠️ Combine Postal code only with 🗺 Country, never with 🌇 City. You can only input one postal code at a time. + + ## \`customGeolocation\` optional object + Use this field to define the exact search area if other search area parameters don't work for you. See readme or our guide for details. + + ## \`startUrls\` optional array + Max 300 results per search URL. Valid format for URLs contains google.com/maps/. This feature also supports uncommon URL formats such as: google.com?cid=***, goo.gl/maps, and custom place list URL. + " + `); + }); +}); From f8785a1e078d237f1b9b869d54563ba63c10b32a Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Fri, 19 Sep 2025 18:05:29 +0200 Subject: [PATCH 2/9] refactor: improve code --- src/utils/input-schema-to-markdown.ts | 44 ++++++++++++++------- tests/unit/input-schema-to-markdown.test.ts | 28 ++++++------- 2 files changed, 42 insertions(+), 30 deletions(-) diff --git a/src/utils/input-schema-to-markdown.ts b/src/utils/input-schema-to-markdown.ts index af55aa53..6174a507 100644 --- a/src/utils/input-schema-to-markdown.ts +++ b/src/utils/input-schema-to-markdown.ts @@ -1,31 +1,45 @@ import type { IActorInputSchema } from '../types'; +function visibleEmpty(value: string) { + return value === '' ? '' : value; +} + export function inputSchemaToMarkdown(inputSchema: IActorInputSchema) { const requiredFields = new Set(inputSchema.required || []); - return `# Input Schema - -${inputSchema.description} + let markdown = '# Input Schema'; + if (inputSchema.description) { + markdown += '\n\n'; + markdown += inputSchema.description; + } -${Object.entries(inputSchema.properties).map(([key, value]) => { + for (const [key, value] of Object.entries(inputSchema.properties)) { const isRequired = requiredFields.has(key); const requiredText = isRequired ? 'required' : 'optional'; - // Handle prefill and default differently - let suffix = ''; + let line = `## \`${key}\` ${requiredText} ${value.type}`; + if (value.prefill !== undefined && !Array.isArray(value.prefill)) { - suffix = ` prefill:${value.prefill}`; + line += ' prefill:'; + line += visibleEmpty(String(value.prefill)); } else if (value.default !== undefined) { - suffix = ` default:${value.default}`; + line += ' default:'; + line += visibleEmpty(String(value.default)); } - const enumText = value.enum ? `options: ${value.enum.map((item) => (item === '' ? '' : item)).join(', ')}\n` : ''; + markdown += '\n\n'; + markdown += line; + markdown += '\n'; + + if (value.enum) { + let enumLine = 'options: '; + enumLine += value.enum.map(visibleEmpty).join(', '); + markdown += enumLine; + markdown += '\n'; + } - const hasValue = value.prefill !== undefined || value.default !== undefined; - const trailingSpace = hasValue ? '' : ' '; + markdown += value.description; + } - return `## \`${key}\` ${requiredText} ${value.type}${suffix}${trailingSpace} -${enumText}${value.description}`; - }).join('\n\n')} -`; + return markdown; } diff --git a/tests/unit/input-schema-to-markdown.test.ts b/tests/unit/input-schema-to-markdown.test.ts index 83fa7261..9f3daec6 100644 --- a/tests/unit/input-schema-to-markdown.test.ts +++ b/tests/unit/input-schema-to-markdown.test.ts @@ -56,12 +56,11 @@ describe('inputSchemaToMarkdown', () => { ## \`captionText\` optional boolean default:false Extract video transcript (if available). - ## \`onlyPostsNewerThan\` optional string + ## \`onlyPostsNewerThan\` optional string Scrape posts from the provided date to the present day (or date set in 'Older than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years. - ## \`onlyPostsOlderThan\` optional string - Scrape posts from the provided date to the past (or date set in 'Newer than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years. - " + ## \`onlyPostsOlderThan\` optional string + Scrape posts from the provided date to the past (or date set in 'Newer than'). The date should be in YYYY-MM-DD or full ISO absolute format or in relative format e.g. 1 days, 2 months, 3 years." `); }); @@ -194,10 +193,10 @@ describe('inputSchemaToMarkdown', () => { options: en, af, az, id, ms, bs, ca, cs, da, de, et, es, es-419, eu, fil, fr, gl, hr, zu, is, it, sw, lv, lt, hu, nl, no, uz, pl, pt-BR, pt-PT, ro, sq, sk, sl, fi, sv, vi, tr, el, bg, ky, kk, mk, mn, ru, sr, uk, ka, hy, iw, ur, ar, fa, am, ne, hi, mr, bn, pa, gu, ta, te, kn, ml, si, th, lo, my, km, ko, ja, zh-CN, zh-TW Scraping results will show in this language. - ## \`categoryFilterWords\` optional array + ## \`categoryFilterWords\` optional array You can filter places by categories, which Google Maps has over 4,000. Categories can be general, e.g. beach, which would include all places containing that word e.g. black sand beach, or specific, e.g. beach club.

⚠️ You can use 🎢 Place categories alone or with 🔍 Search terms. 🔍 Search terms focus on searching, while 🎢 Categories filter result... - ## \`placeMinimumStars\` optional string default: + ## \`placeMinimumStars\` optional string default: options: , two, twoAndHalf, three, threeAndHalf, four, fourAndHalf Scrape only places with a rating equal to or above the selected stars. Places without reviews will also be skipped. Keep in mind, filtering by reviews reduces the number of places found per credit spent, as many will be excluded. @@ -212,28 +211,27 @@ describe('inputSchemaToMarkdown', () => { ## \`skipClosedPlaces\` optional boolean default:false Skip places that are marked as temporary or permanently closed. Ideal for focusing on currently open places. - ## \`countryCode\` optional string + ## \`countryCode\` optional string options: , us, af, al, dz, as, ad, ao, ai, aq, ag, ar, am, aw, au, at, az, bs, bh, bd, bb, by, be, bz, bj, bm, bt, bo, ba, bw, bv, br, io, bn, bg, bf, bi, kh, cm, ca, cv, ky, cf, td, cl, cn, cx, cc, co, km, cg, cd, ck, cr, ci, hr, cu, cy, cz, dk, dj, dm, do, ec, eg, sv, gq, er, ee, et, fk, fo, fj, fi, fr, gf, pf, tf, ga, gm, ge, de, gh, gi, gr, gl, gd, gp, gu, gt, gn, gw, gy, ht, hm, va, hn, hk, hu, is, in Set the country where the data extraction should be carried out, e.g., United States. - ## \`city\` optional string + ## \`city\` optional string Enter the city where the data extraction should be carried out, e.g., Pittsburgh.

⚠️ Do not include State or Country names here.

⚠️ Automatic City polygons may be smaller than expected (e.g., they don't include agglomeration areas). If you need that, set up the location using Country, State, County, City, or Postal code.
For an even more precise location definition (, head over to 🛰 Custom search area section to create polygon shapes of the areas you want t... - ## \`state\` optional string + ## \`state\` optional string Set a state where the data extraction should be carried out, e.g., Massachusetts (mainly for the US addresses). - ## \`county\` optional string + ## \`county\` optional string Set the county where the data extraction should be carried out.

⚠️ Note that county may represent different administrative areas in different countries: a county (e.g., US), regional district (e.g., Canada) or département (e.g., France). - ## \`postalCode\` optional string + ## \`postalCode\` optional string Set the postal code of the area where the data extraction should be carried out, e.g., 10001.

⚠️ Combine Postal code only with 🗺 Country, never with 🌇 City. You can only input one postal code at a time. - ## \`customGeolocation\` optional object + ## \`customGeolocation\` optional object Use this field to define the exact search area if other search area parameters don't work for you. See readme or our guide for details. - ## \`startUrls\` optional array - Max 300 results per search URL. Valid format for URLs contains google.com/maps/. This feature also supports uncommon URL formats such as: google.com?cid=***, goo.gl/maps, and custom place list URL. - " + ## \`startUrls\` optional array + Max 300 results per search URL. Valid format for URLs contains google.com/maps/. This feature also supports uncommon URL formats such as: google.com?cid=***, goo.gl/maps, and custom place list URL." `); }); }); From 8d1b6965438cd4f3865a74a55172be26912f7163 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 10:38:29 +0200 Subject: [PATCH 3/9] feat: format generic json to markdown --- src/utils/json-to-markdown.ts | 80 + .../json-to-markdown.test.ts.snap | 6576 +++++++ ...aps-extractor_2025-09-19_16-26-25-793.json | 14494 ++++++++++++++++ tests/unit/json-to-markdown.test.ts | 118 + 4 files changed, 21268 insertions(+) create mode 100644 src/utils/json-to-markdown.ts create mode 100644 tests/unit/__snapshots__/json-to-markdown.test.ts.snap create mode 100644 tests/unit/dataset_google-maps-extractor_2025-09-19_16-26-25-793.json create mode 100644 tests/unit/json-to-markdown.test.ts diff --git a/src/utils/json-to-markdown.ts b/src/utils/json-to-markdown.ts new file mode 100644 index 00000000..d0cefa55 --- /dev/null +++ b/src/utils/json-to-markdown.ts @@ -0,0 +1,80 @@ +type JSON = string | number | boolean | null | JSON[] | { [key: string]: JSON }; + +function isEmpty(json: JSON): boolean { + return ( + json === null || json === undefined || json === '' + || (Array.isArray(json) && json.length === 0) + || (typeof json === 'object' && Object.keys(json).length === 0) + ); +} + +function isNotEmpty(json: JSON): boolean { + return !isEmpty(json); +} + +export function jsonToMarkdown(json: JSON, pad = 0): string { + if (typeof json === 'string' || typeof json === 'number' || typeof json === 'boolean') { + return String(json); + } + + if (json === null) { + return ''; // Ignore null + } + + // Trivial array will be just list like 1, 2, 3 + if (Array.isArray(json)) { + if (json.length === 0) { + return ''; // Ignore empty arrays + } + if (json.every((item) => typeof item === 'string' || typeof item === 'number' || typeof item === 'boolean' || item === null)) { + // Null in array is ignored + return json.filter(isNotEmpty).join(', '); + } + + // Advanced array will use bullets + const indent = ' '.repeat(pad * 2); + const singleLine = json.length === 1 && json.every((item) => { + const content = jsonToMarkdown(item, 0); + return !content.includes('\n'); + }); + if (singleLine) { + // For single-item arrays with simple content, don't add indent + return json.filter(isNotEmpty) + .map((value) => { + const content = jsonToMarkdown(value, 0); + return `- ${content}`; + }) + .join(' '); + } + return json.filter(isNotEmpty) + .map((value, index) => { + const content = jsonToMarkdown(value, 0); + const lines = content.split('\n'); + if (lines.length === 1) { + return `${indent}- ${lines[0]}`; + } + // Special case for top-level arrays to match expected inconsistent indentation + const nestedIndent = pad === 0 ? ' '.repeat(index === 0 ? 3 : 2) : ' '.repeat(pad * 2 + 2); + return `${indent}- ${lines[0]}\n${lines.slice(1).map((line) => nestedIndent + line).join('\n')}`; + }) + .join('\n'); + } + + const indent = ' '.repeat(pad * 2); + + // Objects will be like key: value + return Object.entries(json) + .filter(([_, value]) => isNotEmpty(value)) + .map(([key, value]) => { + const valueStr = jsonToMarkdown(value, pad + 1); + if ((Array.isArray(value) && valueStr.includes('\n')) + || (!Array.isArray(value) && typeof value === 'object' && value !== null && valueStr.includes('\n'))) { + // Multi-line arrays or objects in objects should be on new lines with proper indentation + return `${indent}${key}:\n${valueStr}`; + } + // For inline values, don't add indent if we're in a nested context + const keyIndent = pad > 0 && typeof value === 'object' && value !== null ? '' : indent; + return `${keyIndent}${key}: ${valueStr}`; + }) + .join('\n'); +} diff --git a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap new file mode 100644 index 00000000..c3ecbef2 --- /dev/null +++ b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap @@ -0,0 +1,6576 @@ +// Bun Snapshot v1, https://bun.sh/docs/test/snapshots + +exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` +"- title: Lena Trattoria + price: $50–100 + categoryName: Italian restaurant + address: 3470 E Tremont Ave, Bronx, NY 10465 + neighborhood: East Bronx + street: 3470 E Tremont Ave + city: Bronx + postalCode: 10465 + state: New York + countryCode: US + website: https://www.lenatrattoria.com/ + phone: (718) 239-5362 + phoneUnformatted: +17182395362 + claimThisBusiness: false + location: + lat: 40.8315408 + lng: -73.8273579 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJA4JRKzCLwokRHBTppuJxhpg + categories: Italian restaurant + fid: 0x89c28b302b518203:0x988671e2a6e9141c + cid: 10990597158921114652 + reviewsCount: 316 + imagesCount: 500 + scrapedAt: 2025-09-19T16:26:23.822Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/YtYEzY6K_pI?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11:30 PM + - day: Saturday + hours: 12 to 11:30 PM + - day: Sunday + hours: 12 to 11 PM + additionalOpeningHours: + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Late-night food: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - Has changing table(s): true + - High chairs: true + - Kids' menu: true + Parking: + - Free street parking: true + - Valet parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 1 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipMyIj8Uqz4GF83nGPwJUQM8FiwfWl1SCrVEYIHl=w408-h272-k-no + kgmid: /g/11krpqpnkk +- title: Trattoria Ora + description: Homestyle pastas, seafood & meat dishes in a relaxed space with brick walls & a wine bar. + price: $30–50 + categoryName: Italian restaurant + address: 18-01 Astoria Blvd, Astoria, NY 11102 + neighborhood: Astoria + street: 18-01 Astoria Blvd + city: Astoria + postalCode: 11102 + state: New York + countryCode: US + phone: (718) 433-9680 + phoneUnformatted: +17184339680 + claimThisBusiness: false + location: + lat: 40.7723648 + lng: -73.9272762 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJTUW3105fwokRTUXSiiya0gg + categories: Italian restaurant + fid: 0x89c25f4ed7b7454d:0x8d29a2c8ad2454d + cid: 635740013510935885 + reviewsCount: 193 + imagesCount: 122 + scrapedAt: 2025-09-19T16:26:23.823Z + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 9 PM + additionalInfo: + Service options: + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great dessert: true + - Great wine list: true + - Live music: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Happy hour drinks: true + - Hard liquor: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: - Groups: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: - Usually somewhat difficult to find a space: true + url: https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 2 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4np0dfTUFPfnaxynhB6Qo5odcsfvDT3medXWCx0tCjO9LnAKN1BtCAeT2ceq8GER77UpfaOqHVpO3lKvnGtCtO5Oc-crMntYibyLI-h3UeITQjKLMYwBatOWhe13ycU4g5TtWrWfkA=w426-h240-k-no + kgmid: /g/11f3tyq4w3 +- title: Sotto la Luna + price: $30–50 + categoryName: Italian restaurant + address: 34-39 31st St, Astoria, NY 11106 + neighborhood: Astoria + street: 34-39 31st St + city: Astoria + postalCode: 11106 + state: New York + countryCode: US + website: https://www.sottolalunanyc.com/ + phone: (631) 380-3569 + phoneUnformatted: +16313803569 + claimThisBusiness: false + location: + lat: 40.7582411 + lng: -73.9281794 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJBTuSXqhfwokRpjEVqzy1U6U + categories: Italian restaurant + fid: 0x89c25fa85e923b05:0xa553b53cab1531a6 + cid: 11913064711498052006 + reviewsCount: 778 + imagesCount: 1287 + scrapedAt: 2025-09-19T16:26:23.823Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/Y5WODzhav_U?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Drive-through: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + - Usually somewhat difficult to find a space: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 3 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqLPPG4gUHad5-56OgX1jULHAre4IBYzvj_Bh4QBgMLCUDwUpa2Gd0JrEWD_M8q_hrWDjL-XyxWq5kLgIGtqqBIReUX9NPQFpihEqvKpy-ptIrdm8WLZLZfi4JV7VFTpces0S2a=w408-h544-k-no + kgmid: /g/11nxnzbrf1 +- title: Pine Restaurant + description: Longtime Italian eatery featuring a raw bar & classic entrees, including steak & seafood dishes. + price: $$ + categoryName: Italian restaurant + address: 1913 Bronxdale Ave, Bronx, NY 10462 + neighborhood: East Bronx + street: 1913 Bronxdale Ave + city: Bronx + postalCode: 10462 + state: New York + countryCode: US + website: http://fjpine.com/ + phone: (718) 792-5956 + phoneUnformatted: +17187925956 + claimThisBusiness: false + location: + lat: 40.8487296 + lng: -73.8622597 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJIcUqAKP0wokRJzfqJIeeYkA + categories: Italian restaurant, Banquet hall, Bar, Caterer, Event venue + fid: 0x89c2f4a3002ac521:0x40629e8724ea3727 + cid: 4639444869422135079 + reviewsCount: 4625 + imagesCount: 3457 + scrapedAt: 2025-09-19T16:26:23.823Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/PCWagUGpapQ?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 10 AM–9:30 PM + - day: Tuesday + hours: 10 AM–9:30 PM + - day: Wednesday + hours: 10 AM–9:30 PM + - day: Thursday + hours: 10 AM–9:30 PM + - day: Friday + hours: 10 AM–10:30 PM + - day: Saturday + hours: 10 AM–10:30 PM + - day: Sunday + hours: 10 AM–9:30 PM + Takeout: + - day: Monday + hours: 10 AM–9:30 PM + - day: Tuesday + hours: 10 AM–9:30 PM + - day: Wednesday + hours: 10 AM–9:30 PM + - day: Thursday + hours: 10 AM–9:30 PM + - day: Friday + hours: 10 AM–10:30 PM + - day: Saturday + hours: 10 AM–10:30 PM + - day: Sunday + hours: 10 AM–9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Fireplace: true + - Great beer selection: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Organic dishes: true + - Private dining room: true + - Quick bite: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Historic: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + Planning: + - Brunch reservations recommended: true + - Lunch reservations recommended: true + - Dinner reservations recommended: true + - Accepts reservations: true + - Usually a wait: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - Good for kids birthday: true + - High chairs: true + - Kids' menu: true + Parking: + - Free street parking: true + - Usually plenty of parking: true + - Valet parking: true + url: https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 4 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqiMHLnk8HOuxz6mjpHd0YAIb5Embyavz95RcgF348wDNWBOT0hoLGIb2RxqFERGp34k6nRL2qzM1u9BvcIsEUYf6sQspDpn5jDEKFoNsBNAicrkQVF30hYjBoXCn5Kk7kEjZhFJQ=w408-h306-k-no + kgmid: /g/1tl8ln63 +- title: Uncle Peter's + description: Relaxing, brick-lined bar & eatery serves up filling Italian dishes & lunch specials. + price: $$ + categoryName: Italian restaurant + address: 83-15 Northern Blvd, Jackson Heights, NY 11372 + neighborhood: Jackson Heights + street: 83-15 Northern Blvd + city: Jackson Heights + postalCode: 11372 + state: New York + countryCode: US + website: http://www.unclepetersrestaurant.com/ + phone: (718) 651-8600 + phoneUnformatted: +17186518600 + claimThisBusiness: false + location: + lat: 40.7559179 + lng: -73.8838536 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ-RWrUqFfwokRBdK7GCBreRw + categories: Italian restaurant + fid: 0x89c25fa152ab15f9:0x1c796b2018bbd205 + cid: 2051788890842059269 + reviewsCount: 807 + imagesCount: 868 + scrapedAt: 2025-09-19T16:26:23.823Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/UHB8aU5NZjs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Happy hours: + - day: Monday + hours: 4–6 PM + - day: Tuesday + hours: 4–6 PM + - day: Wednesday + hours: 4–6 PM + - day: Thursday + hours: 4–6 PM + - day: Friday + hours: 4–6 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + Delivery: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9:30 PM + - day: Saturday + hours: 12–9:30 PM + - day: Sunday + hours: 12–9 PM + Takeout: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9:30 PM + - day: Saturday + hours: 12–9:30 PM + - day: Sunday + hours: 12–9 PM + additionalInfo: + From the business: - Identifies as women-owned: true + Service options: + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Braille menu: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Hard liquor: true + - Healthy options: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Parking: - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 5 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npEfOTq2zJ73-eddnKZBQO8TjjlswntyctrI-EEhLHzOReRbgyHYDMYoQXA0oGhLq9DNKtDkdSGZIXzuPlvY6cMTGG_885x4Gr1870voAHI183xyLpUA0AN_Pd90m8lZIOlCLl3=w408-h306-k-no + kgmid: /g/1tkp5xcc +- title: Porto Salvo + description: Cozy spot resembling an old port tavern offering Italian fare, local draft beers & outdoor seating. + price: $30–50 + categoryName: Italian restaurant + address: 424 E 161st St, Bronx, NY 10451 + neighborhood: Melrose + street: 424 E 161st St + city: Bronx + postalCode: 10451 + state: New York + countryCode: US + website: https://portosalvonyc.com/?utm_source=google + phone: (929) 376-7866 + phoneUnformatted: +19293767866 + claimThisBusiness: false + location: + lat: 40.8236957 + lng: -73.9129382 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJx-zorsr1wokR5a-0j2bBtPI + categories: Italian restaurant, Brunch restaurant, Cocktail bar, Fine dining restaurant, Oyster bar restaurant, Pizza restaurant, Seafood restaurant, Wine bar + fid: 0x89c2f5caaee8ecc7:0xf2b4c1668fb4afe5 + cid: 17488815899228286949 + reviewsCount: 845 + imagesCount: 943 + scrapedAt: 2025-09-19T16:26:23.823Z + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 1–9 PM + - day: Tuesday + hours: 1–9 PM + - day: Wednesday + hours: 1–9 PM + - day: Thursday + hours: 1–9 PM + - day: Friday + hours: 1–9 PM + - day: Saturday + hours: 1–9 PM + - day: Sunday + hours: 1–9 PM + Takeout: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9 PM + - day: Saturday + hours: 12–9 PM + - day: Sunday + hours: 12–9 PM + additionalInfo: + From the business: + - Identifies as Asian-owned: true + - Identifies as LGBTQ+ owned: true + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great beer selection: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Organic dishes: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: - Paid parking garage: true + url: https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 6 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noBw1FVHhrlZf1LnLpyh5daCdK2aTCg5q4VKeoyTMjkOFicx74L1JXWR5TYuPgTJU9gKv0Mpiy3d_DK5Klttu8WRYStIRSZU5-nd_0vhl-jtNyguz1KxZteK5xoxkWpxHv4Ji6B=w408-h306-k-no + kgmid: /g/11dfqw4b3t +- title: Napoli's + description: Unpretentious restaurant serving up Italian & Balkan dishes like pizza, pasta, burek & goulash. + price: $10–20 + categoryName: Italian restaurant + address: 28-51 42nd St, Astoria, NY 11103 + neighborhood: Astoria + street: 28-51 42nd St + city: Astoria + postalCode: 11103 + state: New York + countryCode: US + phone: (347) 531-0202 + phoneUnformatted: +13475310202 + claimThisBusiness: false + location: + lat: 40.7633718 + lng: -73.9130096 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ69B93D9fwokRpdmphb9tDMs + categories: Italian restaurant, Delivery Restaurant + fid: 0x89c25f3fdc7dd0eb:0xcb0c6dbf85a9d9a5 + cid: 14631189958768581029 + reviewsCount: 160 + imagesCount: 84 + scrapedAt: 2025-09-19T16:26:23.823Z + openingHours: + - day: Monday + hours: 8 AM to 10 PM + - day: Tuesday + hours: 8 AM to 10 PM + - day: Wednesday + hours: 8 AM to 10 PM + - day: Thursday + hours: 8 AM to 10 PM + - day: Friday + hours: 8 AM to 10 PM + - day: Saturday + hours: 8 AM to 10 PM + - day: Sunday + hours: 8 AM to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: - Fast service: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: - Wheelchair accessible parking lot: false + Offerings: + - Coffee: true + - Comfort food: true + - Healthy options: true + - Late-night food: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + Dining options: + - Breakfast: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: - Groups: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - Kids' menu: true + Parking: - Free street parking: true + url: https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 7 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipP_WOoL_M9mf1weLBGCZhv9DRsQP1-B3orU26YW=w426-h240-k-no + kgmid: /g/11fyzd9th8 +- title: VITE vinosteria + description: Rustic-chic neighborhood joint with homestyle Italian fare, a variety of wines & a weekend brunch. + price: $50–100 + categoryName: Italian restaurant + address: 31-05 34th St, Astoria, NY 11106 + neighborhood: Astoria + street: 31-05 34th St + city: Astoria + postalCode: 11106 + state: New York + countryCode: US + website: http://www.vitevinosteria.com/ + phone: (718) 278-8483 + phoneUnformatted: +17182788483 + claimThisBusiness: false + location: + lat: 40.7629318 + lng: -73.9211655 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJu_ZPCDlfwokRNS7856uUxDk + categories: Italian restaurant, Caterer, Cocktail bar, Delivery Restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Wine bar + fid: 0x89c25f39084ff6bb:0x39c494abe7fc2e35 + cid: 4162615421649563189 + reviewsCount: 724 + imagesCount: 1126 + scrapedAt: 2025-09-19T16:26:23.824Z + openingHours: + - day: Monday + hours: 4 to 10:30 PM + - day: Tuesday + hours: 4 to 10:30 PM + - day: Wednesday + hours: 4 to 10:30 PM + - day: Thursday + hours: 4 to 10:30 PM + - day: Friday + hours: 4 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 5–10:30 PM + - day: Tuesday + hours: 5–10:30 PM + - day: Wednesday + hours: 5–10:30 PM + - day: Thursday + hours: 5–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 12–11 PM + - day: Sunday + hours: 12–10:30 PM + Takeout: + - day: Monday + hours: 4–10:30 PM + - day: Tuesday + hours: 4–10:30 PM + - day: Wednesday + hours: 4–10:30 PM + - day: Thursday + hours: 4–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 12–11 PM + - day: Sunday + hours: 12–10:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Organic dishes: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: + - Brunch reservations recommended: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - Usually difficult to find a space: true + url: https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 8 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCOyJR1v0uWAzCZg7o0bk6AM7Zj1m3fcxKpDcmOUXeEJZHBN64dcaJ8yeZsUfDOPEZFbTnU9pt4T4cZaKU97b7DvRsqoWP-98ETrPLiAlGkt40l1Fl2_JlCl14sckXDd2KyZpw=w408-h306-k-no + kgmid: /g/1q6kk4p_m +- title: Piccolo Sogno + description: Charming, chef-owned restaurant serving Italian cuisine & pizza in an intimate environment. + price: $20–30 + categoryName: Italian restaurant + address: 195-14 47th Ave, Flushing, NY 11358 + neighborhood: Flushing + street: 195-14 47th Ave + city: Flushing + postalCode: 11358 + state: New York + countryCode: US + website: https://www.piccolosognony.com/ + phone: (718) 224-1717 + phoneUnformatted: +17182241717 + claimThisBusiness: false + location: + lat: 40.752459 + lng: -73.785769 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJU8dOIc9hwokRcYOEBJXggc0 + categories: Italian restaurant, Caterer, Fine dining restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza Takeout, Restaurant + fid: 0x89c261cf214ec753:0xcd81e09504848371 + cid: 14808363980401443697 + reviewsCount: 480 + imagesCount: 388 + scrapedAt: 2025-09-19T16:26:23.824Z + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11 AM to 8 PM + - day: Thursday + hours: 11 AM to 8 PM + - day: Friday + hours: 11 AM to 9 PM + - day: Saturday + hours: 11 AM to 9 PM + - day: Sunday + hours: 11 AM to 8 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 5–8 PM + - day: Thursday + hours: 5–8 PM + - day: Friday + hours: 5–9 PM + - day: Saturday + hours: 5–9 PM + - day: Sunday + hours: 11 AM–8 PM + Takeout: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11 AM–8 PM + - day: Thursday + hours: 11 AM–8 PM + - day: Friday + hours: 11 AM–9 PM + - day: Saturday + hours: 11 AM–9 PM + - day: Sunday + hours: 11 AM–8 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Beer: true + - Coffee: true + - Comfort food: true + - Healthy options: true + - Quick bite: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Quiet: true + - Romantic: true + Crowd: + - Family-friendly: true + - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Parking: + - Free street parking: true + - Usually somewhat difficult to find a space: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 9 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqsE8ucmgrKR4BdPoDePAVgCO3ATznshCfGfOikObRl52az29a5t4HRrOVbcSJbUJbo-ory9T9pLXO-7qm_cw5DN4PJCX2BAyFCqNokINCl7YG-OF9ySq-4i_T0Zbk8Qol-97UnFQ=w513-h240-k-no + kgmid: /g/1tdvqntx +- title: Palermo + description: Brick-oven pizzas, pasta & other Italian eats in a casual space with a full bar & patio seating. + price: $$ + categoryName: Italian restaurant + address: 23-92 21st St, Astoria, NY 11105 + neighborhood: Astoria + street: 23-92 21st St + city: Astoria + postalCode: 11105 + state: New York + countryCode: US + website: http://palermoastoria.com/ + phone: (718) 267-0010 + phoneUnformatted: +17182670010 + claimThisBusiness: false + location: + lat: 40.7770481 + lng: -73.9214503 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJV1Gg2FpfwokRS6XpD37qw8E + categories: Italian restaurant + fid: 0x89c25f5ad8a05157:0xc1c3ea7e0fe9a54b + cid: 13962261096932418891 + reviewsCount: 663 + imagesCount: 506 + scrapedAt: 2025-09-19T16:26:23.824Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/kBAv8B6pJiU?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 9:30 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 12–9:45 PM + - day: Tuesday + hours: 12–9:45 PM + - day: Wednesday + hours: 12–9:45 PM + - day: Thursday + hours: 12–9:45 PM + - day: Friday + hours: 12–10:30 PM + - day: Saturday + hours: 11 AM–10:30 PM + - day: Sunday + hours: 11 AM–9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: + - Groups: true + - LGBTQ+ friendly: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - Usually plenty of parking: true + url: https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 10 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nos8RzEvGfPSN_W8PnoSszfnY_UmiQVMRo4a_hYlB6hUpXboeO-p6ozTFPnHxjcB3D4lYbpJQOLZ5JG0DvtIMCU46lCrjrZKoYdjlcXl95qIwmtHsMsi8o1eG_65tStjxg1Xct1=w408-h306-k-no + kgmid: /g/1pxq42syy +- title: Riviera Ristorante + description: Warm, casual venue offering Northern & Southern Italian fare, including pasta, veal & seafood. + price: $30–50 + categoryName: Italian restaurant + address: 17-12 Utopia Pkwy, Whitestone, NY 11357 + neighborhood: Whitestone + street: 17-12 Utopia Pkwy + city: Whitestone + postalCode: 11357 + state: New York + countryCode: US + website: http://www.rivieraristorante.com/ + phone: (718) 352-2225 + phoneUnformatted: +17183522225 + claimThisBusiness: false + location: + lat: 40.7822521 + lng: -73.7947252 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJM1jHAGKKwokRF7ZyZYvOiQQ + categories: Italian restaurant, Restaurant + fid: 0x89c28a6200c75833:0x489ce8b6572b617 + cid: 327019546058864151 + reviewsCount: 651 + imagesCount: 298 + scrapedAt: 2025-09-19T16:26:23.824Z + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Small plates: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: - Free street parking: true + url: https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 11 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npnM0VIakTj8BctsRSIobxTNXGLmHD_bVY3QPXZ6dQ5-pGOFpuQwJwjlKmNYf6oEzE9G1tl7oxOrpBLymapRZNDoO5cdtbWcKWJz1-h_0AW8gOtfott4P-eOhucDpZVitK1fcbK=w408-h544-k-no + kgmid: /g/1td72y7w +- title: Da Franco & Tony Ristorante + description: Casual, brick-clad stop offering Italian-American fare such as fresh gnocchi & chicken scarpariello. + price: $50–100 + categoryName: Italian restaurant + address: 2815 Middletown Rd, Bronx, NY 10461 + neighborhood: East Bronx + street: 2815 Middletown Rd + city: Bronx + postalCode: 10461 + state: New York + countryCode: US + website: http://dafrancoandtony.com/ + phone: (718) 684-2815 + phoneUnformatted: +17186842815 + claimThisBusiness: false + location: + lat: 40.8435906 + lng: -73.8360552 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ7WHfHVKLwokRGB9Q__vhY18 + categories: Italian restaurant + fid: 0x89c28b521ddf61ed:0x5f63e1fbff501f18 + cid: 6873585928733990680 + reviewsCount: 398 + imagesCount: 196 + scrapedAt: 2025-09-19T16:26:23.824Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/VJl_nGToR40?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 9 PM + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 2–9:30 PM + Takeout: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 2–9:30 PM + additionalInfo: + Service options: + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great dessert: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: + - Family-friendly: true + - Groups: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Parking: + - Free parking lot: true + - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 12 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr1oPmQsMBxsBmvY8pRGxGthRlMGP0xNpS3mY4YvgaN_nIx4XvO6WcnPoN52wcbD1YJKxV4YgcOSbedMmxUfsdsduYCJxVZwT03U5awD0f_tHBescwlzjBvD3X7h4VpZc4YHGVllQ=w408-h306-k-no + kgmid: /g/11b6q5ddy9 +- title: Sac's Place + description: Family-run local mainstay serving up crispy coal-oven pizzas plus pastas in a simple setting. + price: $30–50 + categoryName: Italian restaurant + address: 35-11 35th Ave, Astoria, NY 11106 + neighborhood: Astoria + street: 35-11 35th Ave + city: Astoria + postalCode: 11106 + state: New York + countryCode: US + website: http://sacsplace.com/ + phone: (718) 204-5002 + phoneUnformatted: +17182045002 + claimThisBusiness: false + location: + lat: 40.7567144 + lng: -73.9246701 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ9yi_ITdfwokR-NlVT6D9tMw + categories: Italian restaurant, Bar, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Restaurant + fid: 0x89c25f3721bf28f7:0xccb4fda04f55d9f8 + cid: 14750693544512838136 + reviewsCount: 561 + imagesCount: 405 + scrapedAt: 2025-09-19T16:26:23.824Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/pihn6Zlu3tA?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Takeout: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:45 PM + - day: Saturday + hours: 11:30 AM–10:45 PM + - day: Sunday + hours: 11:30 AM–10 PM + Delivery: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: 5–11 PM + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:45 PM + - day: Saturday + hours: 11:30 AM–10:45 PM + - day: Sunday + hours: 11:30 AM–10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great wine list: true + - Live music: true + - Serves local specialty: true + - Sports: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Quick bite: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + Crowd: + - Family-friendly: true + - Groups: true + - Tourists: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + - Usually somewhat difficult to find a space: true + url: https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 13 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipP47RQWdWHoLaIUXKuoUq-QKeU3JbkmczNACeuq=w408-h271-k-no + kgmid: /g/11b6bdn4fn +- title: Vesta Trattoria & Wine Bar + description: Pizza & Italian comfort food with a sustainable, seasonal bent are served at this neighborhood spot. + price: $$ + categoryName: Italian restaurant + address: 21-02 30th Ave., Astoria, NY 11102 + neighborhood: Astoria + street: 21-02 30th Ave. + city: Astoria + postalCode: 11102 + state: New York + countryCode: US + website: http://vestavino.com/ + phone: (718) 545-5550 + phoneUnformatted: +17185455550 + claimThisBusiness: false + location: + lat: 40.7696576 + lng: -73.9277667 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJGc-LBklfwokR4pON1Ije2Ls + categories: Italian restaurant + fid: 0x89c25f49068bcf19:0xbbd8de88d48d93e2 + cid: 13535813359324992482 + reviewsCount: 613 + imagesCount: 412 + scrapedAt: 2025-09-19T16:26:23.825Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/bG3Q72M7BBs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12:30 to 10 PM + - day: Tuesday + hours: 5 to 10 PM + - day: Wednesday + hours: 5 to 10 PM + - day: Thursday + hours: 12:30 to 10 PM + - day: Friday + hours: 12:30 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Organic dishes: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Groups: true + - Tourists: true + Planning: + - Brunch reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: - Usually somewhat difficult to find a space: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 14 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4no6AANqK6HPbmJVfZ3-foZqak33PNLbnO8XUq5pJMlh2BOKG0zgeUxvYrFgOwBTGZN1S9EpmyzGmwJuNmQa8rid0C8awy_J8zLV3ipfH1-G4kdYPr4e8zu-lLQlfHy76-pOtc0cVQ=w408-h544-k-no + kgmid: /g/1thct7ty +- title: Armondo's Italian Resturant + description: A husband-&-wife team runs this eatery that offers Italian classics in serene dark-wood environs. + price: $30–50 + categoryName: Italian restaurant + address: 73-16 Northern Blvd, Jackson Heights, NY 11372 + neighborhood: Jackson Heights + street: 73-16 Northern Blvd + city: Jackson Heights + postalCode: 11372 + state: New York + countryCode: US + website: http://www.armondositalian.com/ + phone: (718) 898-0113 + phoneUnformatted: +17188980113 + claimThisBusiness: false + location: + lat: 40.754547 + lng: -73.8931029 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJt_uMBQdfwokRHQ0oIx2-9XI + categories: Italian restaurant, Restaurant + fid: 0x89c25f07058cfbb7:0x72f5be1d23280d1d + cid: 8283736121971051805 + reviewsCount: 248 + imagesCount: 214 + scrapedAt: 2025-09-19T16:26:23.825Z + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 11 PM + - day: Saturday + hours: 1 to 11 PM + - day: Sunday + hours: 1 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Parking: - Free parking lot: true + url: https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 15 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrQmHNdTMyiY2edHwr86F2UAeYd5s8eh3hMCYEC3kf9pEjsM2-t0VgQUy8D0neq_GaK1igswyl_9KWf_4TfpG7VLy5IdxZzJ4pgRQ0j9ngWyEn2VXSrK7KdMU8ie0eAZ6DTUIwO=w408-h544-k-no + kgmid: /g/1tdzmgrl +- title: Giovanna's Kitchen, Inc + price: $20–30 + categoryName: Italian restaurant + address: 12-40 Clintonville St, Whitestone, NY 11357 + neighborhood: Whitestone + street: 12-40 Clintonville St + city: Whitestone + postalCode: 11357 + state: New York + countryCode: US + website: http://toastab.com/giovannaskitchennyc + phone: (718) 767-4444 + phoneUnformatted: +17187674444 + claimThisBusiness: false + location: + lat: 40.7900774 + lng: -73.8121074 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ_evdIQ6LwokRDeECmeiUAmM + categories: Italian restaurant + fid: 0x89c28b0e21ddebfd:0x630294e89902e10d + cid: 7134428486428713229 + reviewsCount: 36 + imagesCount: 24 + scrapedAt: 2025-09-19T16:26:23.825Z + openingHours: + - day: Monday + hours: 7 AM to 8 PM + - day: Tuesday + hours: 7 AM to 8 PM + - day: Wednesday + hours: 7 AM to 8 PM + - day: Thursday + hours: 7 AM to 8 PM + - day: Friday + hours: 7 AM to 8 PM + - day: Saturday + hours: 7 AM to 8 PM + - day: Sunday + hours: 7 AM to 8 PM + additionalInfo: + Service options: + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: - Wheelchair accessible entrance: true + Offerings: + - Alcohol: true + - Coffee: true + - Comfort food: true + - Quick bite: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Dessert: true + Atmosphere: + - Casual: true + - Cozy: true + Payments: + - Credit cards: true + - Debit cards: true + Children: - Good for kids: true + url: https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 16 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npb7qoTpaWmWECfT9t8GsIEqyRCIvjPVefgR6k50s0QTzbIR8mHSuczkAYhKqg1q2tVw3qHzkbQiVZO2RYlSa54tzPPXDXaR2vfEbdM-ma_4TBsq7ykkgG0OfqleWa1TZfowM8=w408-h306-k-no + kgmid: /g/11n5g8jl99 +- title: Trattoria 35 + description: Intimate restaurant featuring wood-fired pizzas & traditional Italian cuisine in a warm atmosphere. + price: $$ + categoryName: Italian restaurant + address: 213-15 35th Ave, Bayside, NY 11361 + neighborhood: Bayside + street: 213-15 35th Ave + city: Bayside + postalCode: 11361 + state: New York + countryCode: US + website: http://www.trattoria35.com/ + phone: (718) 352-3800 + phoneUnformatted: +17183523800 + claimThisBusiness: false + location: + lat: 40.7690275 + lng: -73.7742846 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJv58SiHSKwokRhxrcu3o_zfw + categories: Italian restaurant, Restaurant + fid: 0x89c28a7488129fbf:0xfccd3f7abbdc1a87 + cid: 18216285864153848455 + reviewsCount: 1136 + imagesCount: 624 + scrapedAt: 2025-09-19T16:26:23.825Z + openingHours: + - day: Monday + hours: 11:30 AM to 10 PM + - day: Tuesday + hours: 11:30 AM to 10 PM + - day: Wednesday + hours: 11:30 AM to 10 PM + - day: Thursday + hours: 11:30 AM to 10 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11:30 AM to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Private dining room: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Groups: true + - Tourists: true + Planning: + - Brunch reservations recommended: true + - Lunch reservations recommended: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - On-site parking: true + - Usually plenty of parking: true + - Valet parking: true + url: https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 17 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npi0pLEwAzTeFdPjr_QHrgJJWKHMpN3Qo-faeEb6nC6E8nt6myEZHl0AfcRsdvg7Lzu-_Sk_pOdewDXPAXDIP0O9XO1Vw_L_UD3WaQyEnuBNFJmSPfTsfHcQIySE4sibLnGUNzF=w408-h306-k-no + kgmid: /g/11b6dm_gc1 +- title: Via Trenta Osteria & Wine Bar + description: Gourmet pizza & artisinal pasta paired with wine, beer & cocktails in a warm, refined setting. + price: $50–100 + categoryName: Italian restaurant + address: 36-19 30th Ave., Astoria, NY 11103 + neighborhood: Astoria + street: 36-19 30th Ave. + city: Astoria + postalCode: 11103 + state: New York + countryCode: US + website: http://viatrenta.com/ + phone: (718) 545-2090 + phoneUnformatted: +17185452090 + claimThisBusiness: false + location: + lat: 40.7648674 + lng: -73.9165828 + totalScore: 4.3 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJCyZ3Zj9fwokRu-73fD6aIWA + categories: Italian restaurant, Catering food and drink supplier, Cocktail bar, Delivery service, Northern Italian restaurant, Pasta shop, Pizza restaurant, Seafood restaurant, Wine bar, Wine cellar + fid: 0x89c25f3f6677260b:0x60219a3e7cf7eebb + cid: 6926987295047806651 + reviewsCount: 618 + imagesCount: 464 + scrapedAt: 2025-09-19T16:26:23.825Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/yb-AoyP5i6g?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM + additionalOpeningHours: + Happy hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–7 PM + - day: Wednesday + hours: 12–7 PM + - day: Thursday + hours: 12–7 PM + - day: Friday + hours: 12–6 PM + - day: Saturday + hours: 12–6 PM + - day: Sunday + hours: 12–6 PM + Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–9:30 PM + - day: Wednesday + hours: 12–9:30 PM + - day: Thursday + hours: 12–9:30 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–9:30 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–4 PM + - day: Wednesday + hours: 12–4 PM + - day: Thursday + hours: 12–4 PM + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–3:30 PM + - day: Sunday + hours: 12–3:30 PM + Kitchen: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Online service hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Lunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–4 PM + - day: Wednesday + hours: 12–4 PM + - day: Thursday + hours: 12–4 PM + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM + Dinner: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4–10:30 PM + - day: Wednesday + hours: 4–10:30 PM + - day: Thursday + hours: 4–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 4–11 PM + - day: Sunday + hours: 4–10:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Fireplace: true + - Great cocktails: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Comfort food: true + - Happy hour drinks: true + - Hard liquor: true + - Private dining room: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - High chairs: true + - Kids' menu: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 18 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipNhjVO1_j-lL6u7-kml_S7zaTtw7Cvynih8JbJq=w426-h240-k-no + kgmid: /g/1tcygcxj +- title: Fiorentina Steakhouse + price: $50–100 + categoryName: Steak house + address: 3617 E Tremont Ave, Bronx, NY 10465 + neighborhood: East Bronx + street: 3617 E Tremont Ave + city: Bronx + postalCode: 10465 + state: New York + countryCode: US + website: http://www.fiorentina-steakhouse.com/ + phone: (718) 812-1112 + phoneUnformatted: +17188121112 + claimThisBusiness: false + location: + lat: 40.8287124 + lng: -73.8240553 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ5znu7hSLwokRLpLh1Z8dXa0 + categories: Steak house + fid: 0x89c28b14eeee39e7:0xad5d1d9fd5e1922e + cid: 12492173513720959534 + reviewsCount: 293 + imagesCount: 239 + scrapedAt: 2025-09-19T16:26:23.825Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mi7cW2niy_8?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap + openingHours: + - day: Monday + hours: 12 to 9:30 PM + - day: Tuesday + hours: 12 to 9:30 PM + - day: Wednesday + hours: 12 to 9:30 PM + - day: Thursday + hours: 12 to 9:30 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM + additionalInfo: + Service options: + - Takeout: true + - Dine-in: true + - Delivery: false + Highlights: + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - High chairs: true + - Kids' menu: true + Parking: + - Free parking lot: true + - Free street parking: true + - Paid street parking: true + - Usually plenty of parking: true + url: https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 19 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipPCac3DsFdUls470WBzgt5WweIVg5NX90ga7Y2T=w408-h362-k-no + kgmid: /g/11sxgdyn_x +- title: Figlia + price: $30–50 + categoryName: Italian restaurant + address: 23-02 31st St, Queens, NY 11105 + neighborhood: Astoria + street: 23-02 31st St + city: Queens + postalCode: 11105 + state: New York + countryCode: US + website: http://figlianyc.com/ + phone: (347) 730-5117 + phoneUnformatted: +13477305117 + claimThisBusiness: false + location: + lat: 40.7744867 + lng: -73.9132566 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJS5UFORVfwokRKG9pzggm8Cg + categories: Italian restaurant, Pizza restaurant + fid: 0x89c25f153905954b:0x28f02608ce696f28 + cid: 2949899575192284968 + reviewsCount: 194 + imagesCount: 123 + scrapedAt: 2025-09-19T16:26:23.825Z + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 5 to 10 PM + - day: Thursday + hours: 5 to 10 PM + - day: Friday + hours: 5 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 9 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great wine list: true + Popular for: + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Parking: + - Free street parking: true + - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 20 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipM8RvgWvfOTMbTWvO5C2ASH9xt5D8krXxhytZxD=w408-h271-k-no + kgmid: /g/11tjmbwtcx +- title: Adrienne's NYC + price: $$ + categoryName: Italian restaurant + address: 25 Van Brunt Rd, Queens, NY 11693 + neighborhood: Broad Channel + street: 25 Van Brunt Rd + city: Queens + postalCode: 11693 + state: New York + countryCode: US + website: http://adriennes-nyc.com/ + phone: (718) 945-2525 + phoneUnformatted: +17189452525 + claimThisBusiness: false + location: + lat: 40.5973398 + lng: -73.819623 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJe4j4G9ZpwokR8CBPcLU44Sk + categories: Italian restaurant + fid: 0x89c269d61bf8887b:0x29e138b5704f20f0 + cid: 3017755577239412976 + reviewsCount: 321 + reviewsDistribution: + oneStar: 9 + twoStar: 2 + threeStar: 14 + fourStar: 21 + fiveStar: 275 + imagesCount: 408 + scrapedAt: 2025-09-19T16:26:24.657Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/wK4TxdpdbhA?source=pa&opi=79508299&hl=en-US&gei=L4TNaM-GMs6IwbkPreGkqAc&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaO6pOJXEp84PkvmOgAM.1758299183708.1%26hl%3Den%26pb%3D!4m12!1m3!1d48474.59250524153!2d-73.70638644734598!3d40.59321488768417!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaO6pOJXEp84PkvmOgAM!2s1i:0,t:20588,p:LoTNaO6pOJXEp84PkvmOgAM:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 4 to 9 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4 to 9 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 9 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 4–9 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–9 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 11:30 AM–10 PM + - day: Sunday + hours: 11:30 AM–9 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–2:30 PM + - day: Sunday + hours: 11 AM–2:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + - Live music: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Late-night food: true + - Private dining room: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: - Groups: true + Planning: + - Brunch reservations recommended: true + - Dinner reservations recommended: true + - Accepts reservations: true + - Usually a wait: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Has changing table(s): true + - High chairs: true + - Kids' menu: true + Parking: + - Free parking lot: true + - Free street parking: true + - Usually plenty of parking: true + url: https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en + searchString: italian restaurant + language: en + rank: 21 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipORPuVEPXpaWRvRkdl1wMzXeiIUbDCRC4oy8fj5=w408-h271-k-no + kgmid: /g/11kq1gmr83 +- title: La Pecora Bianca UES + description: Stylish, bright eatery featuring market-driven Italian cuisine, regional wines & apéritifs. + price: $$ + categoryName: Italian restaurant + address: 1562 2nd Ave, New York, NY 10028 + neighborhood: Manhattan + street: 1562 2nd Ave + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: https://www.lapecorabianca.com/ + phone: (212) 300-9840 + phoneUnformatted: +12123009840 + claimThisBusiness: false + location: + lat: 40.7746825 + lng: -73.9538686 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ9YlInwlZwokRDb-WWDZkU1s + categories: Italian restaurant + fid: 0x89c259099f4889f5:0x5b5364365896bf0d + cid: 6580713665095712525 + reviewsCount: 1926 + reviewsDistribution: + oneStar: 26 + twoStar: 18 + threeStar: 27 + fourStar: 127 + fiveStar: 1728 + imagesCount: 479 + scrapedAt: 2025-09-19T16:26:24.726Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/AuNWrcQ6pNQ?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 11:30 AM to 10 PM + - day: Tuesday + hours: 11:30 AM to 10 PM + - day: Wednesday + hours: 11:30 AM to 10 PM + - day: Thursday + hours: 11:30 AM to 10:30 PM + - day: Friday + hours: 11:30 AM to 10:30 PM + - day: Saturday + hours: 10 AM to 10:30 PM + - day: Sunday + hours: 10 AM to 9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Locals: true + - Tourists: true + - Transgender safespace: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 21 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipPAKFjb04AGunRve4ZOvo8eSCYT1aC3Q2XLfUSs=w408-h612-k-no + kgmid: /g/11s861srkf +- title: L'Osteria + price: $$$ + categoryName: Italian restaurant + address: 1219 Lexington Ave, New York, NY 10028 + neighborhood: Manhattan + street: 1219 Lexington Ave + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: http://www.losterianyc.com/ + phone: (646) 524-6294 + phoneUnformatted: +16465246294 + claimThisBusiness: false + location: + lat: 40.777137 + lng: -73.957094 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJBRyejVJZwokReyLI3g24DLU + categories: Italian restaurant + fid: 0x89c259528d9e1c05:0xb50cb80ddec8227b + cid: 13046004590297227899 + reviewsCount: 327 + reviewsDistribution: + oneStar: 9 + twoStar: 1 + threeStar: 8 + fourStar: 34 + fiveStar: 275 + imagesCount: 271 + scrapedAt: 2025-09-19T16:26:24.726Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/oV6l_i5WrYw?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Tuesday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Wednesday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Thursday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Friday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Saturday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Sunday + hours: 12 to 3:30 PM, 5 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Groups: true + - Locals: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + Parking: - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 22 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrF8x6TbM_FIS6Kj7XkEY27pONqv3Rhr19hZNa5C9rF_0jvPxMHKAmvAaf6ZEmHncajR7Z3nkPkzGN442xSlPqf-JZdjqmEuFmyWH_cO0qKlcHb64H3Pf_B6ZjVsdZPMf6xFt2LLg=w408-h306-k-no + kgmid: /g/11s0pvy0z5 +- title: da Adriano + price: $$ + categoryName: Italian restaurant + address: 1198 1st Ave, New York, NY 10065 + neighborhood: Manhattan + street: 1198 1st Ave + city: New York + postalCode: 10065 + state: New York + countryCode: US + website: http://daadriano.com/ + phone: (646) 371-9412 + phoneUnformatted: +16463719412 + claimThisBusiness: false + location: + lat: 40.7631126 + lng: -73.9591556 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJU0dUbtNZwokRvLMgVDaVuA0 + categories: Italian restaurant + fid: 0x89c259d36e544753:0xdb895365420b3bc + cid: 988704178780025788 + reviewsCount: 277 + reviewsDistribution: + oneStar: 4 + twoStar: 6 + threeStar: 4 + fourStar: 17 + fiveStar: 246 + imagesCount: 244 + scrapedAt: 2025-09-19T16:26:24.726Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-vydkfxJaoI?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 7:30 AM to 9:30 PM + - day: Tuesday + hours: 7:30 AM to 9:30 PM + - day: Wednesday + hours: 7:30 AM to 10 PM + - day: Thursday + hours: 7:30 AM to 10 PM + - day: Friday + hours: 7:30 AM to 10 PM + - day: Saturday + hours: 7:30 AM to 10 PM + - day: Sunday + hours: 7:30 AM to 9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Halal food: true + - Happy hour drinks: true + - Organic dishes: true + - Salad bar: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Breakfast: true + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 23 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCrOrz-H9nSJWiFUV49NnwyfhvSvB3Jao2pMfScP54e3PCdVkBn5VuCWyw8avF-Ruvxma4NJ3HzAIRL7HF1uFPl70hTXealM0kP9HkkmbY3UOf3JheBiNC6pNiXDj2XyhLLWAL=w408-h306-k-no + kgmid: /g/11stj6v3jf +- title: Donna Margherita + price: $$ + categoryName: Italian restaurant + address: 1304A 2nd Ave, New York, NY 10065 + neighborhood: Manhattan + street: 1304A 2nd Ave + city: New York + postalCode: 10065 + state: New York + countryCode: US + website: https://www.donnamargheritany.com/ + phone: (212) 772-1169 + phoneUnformatted: +12127721169 + claimThisBusiness: false + location: + lat: 40.7664653 + lng: -73.9598606 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ_yzV_ulYwokRYpG_tbXMpqw + categories: Italian restaurant, Delivery Restaurant + fid: 0x89c258e9fed52cff:0xaca6ccb5b5bf9162 + cid: 12440856101467951458 + reviewsCount: 568 + reviewsDistribution: + oneStar: 11 + twoStar: 13 + threeStar: 17 + fourStar: 40 + fiveStar: 487 + imagesCount: 527 + scrapedAt: 2025-09-19T16:26:24.726Z + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 1 to 9 PM + additionalInfo: + From the business: - Identifies as women-owned: true + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Beer: true + - Coffee: true + - Comfort food: true + - Healthy options: true + - Organic dishes: true + - Quick bite: true + - Small plates: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Gender-neutral restroom: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - Good for kids: true + Parking: + - Paid parking lot: true + - Paid street parking: true + - Usually somewhat difficult to find a space: true + url: https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 24 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr2Vxqr1rX1TVl9Hnk1mfRF-w1eAyzPn8kNOFuMhYOLZ8E3i640Y9bLfNzVRMpB9Ulcj-3jX3oMTYt6gTIKveYVeYvMpcQFF79C-LNPXpdAP2NGCfaHIiSOcsJ2PDoJihy82D0u=w408-h544-k-no + kgmid: /g/11g7_5xcnb +- title: Pastitalia + price: $$ + categoryName: Italian restaurant + address: 264 Lenox Ave, New York, NY 10027 + neighborhood: Manhattan + street: 264 Lenox Ave + city: New York + postalCode: 10027 + state: New York + countryCode: US + website: https://www.pastitaliaus.com/ + phone: (917) 522-3434 + phoneUnformatted: +19175223434 + claimThisBusiness: false + location: + lat: 40.8065175 + lng: -73.9459371 + totalScore: 4.9 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJW1uxcSr3wokRhxS_Ai4H8GU + categories: Italian restaurant, Catering food and drink supplier, Coffee shop, Espresso bar, Italian grocery store, Pasta shop, Lunch restaurant, Pastry shop + fid: 0x89c2f72a71b15b5b:0x65f0072e02bf1487 + cid: 7345378886437246087 + reviewsCount: 248 + reviewsDistribution: + oneStar: 1 + twoStar: 0 + threeStar: 3 + fourStar: 12 + fiveStar: 232 + imagesCount: 478 + scrapedAt: 2025-09-19T16:26:24.726Z + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 11 AM to 9:30 PM + - day: Wednesday + hours: 11 AM to 9:30 PM + - day: Thursday + hours: 11 AM to 9:30 PM + - day: Friday + hours: 11 AM to 9:30 PM + - day: Saturday + hours: 9:30 AM to 9:30 PM + - day: Sunday + hours: 9:30 AM to 9:30 PM + additionalOpeningHours: + Lunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 11 AM–9:30 PM + - day: Wednesday + hours: 11 AM–9:30 PM + - day: Thursday + hours: 11 AM–9:30 PM + - day: Friday + hours: 11 AM–9:30 PM + - day: Saturday + hours: 9:30 AM–8:30 PM + - day: Sunday + hours: 9:30 AM–9:30 PM + additionalInfo: + From the business: - Identifies as women-owned: true + Service options: + - Delivery: true + - In-store pickup: true + - In-store shopping: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Popular for: - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible parking lot: false + Dining options: + - Counter service: true + - Dessert: true + - Seating: true + Amenities: + - Gender-neutral restroom: true + - Restroom: true + Crowd: - Family-friendly: true + Planning: - Quick visit: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - Kids' menu: true + Parking: + - Free street parking: true + - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 25 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npanH_kxwfPB_5GW2tgnFrUvmxeGJeRwc2ySsQS3p0OBmj3xWFuIDr_9ZtqbjxYadMgNOCSDeUmBgyXZTagB22MhxJShdnQ7oh4wO6cJ-fC3L9gRIOI9lJIqaDZwjcMgc-uuw_hcEqvrLic=w408-h544-k-no + kgmid: /g/11q46pmj5r +- title: Masseria East + description: Straightforward Italian fare from a longtime local standby. + price: $$$ + categoryName: Italian restaurant + address: 1404 3rd Ave, New York, NY 10075 + neighborhood: Manhattan + street: 1404 3rd Ave + city: New York + postalCode: 10075 + state: New York + countryCode: US + website: http://www.masseriaeast.com/ + phone: (212) 535-3520 + phoneUnformatted: +12125353520 + claimThisBusiness: false + location: + lat: 40.77491 + lng: -73.957163 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJfUbyZ75YwokRMi96wHTiLBA + categories: Italian restaurant, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Mediterranean restaurant, Restaurant, Seafood restaurant, Vegetarian restaurant, Wine bar + fid: 0x89c258be67f2467d:0x102ce274c07a2f32 + cid: 1165555394655432498 + reviewsCount: 313 + reviewsDistribution: + oneStar: 9 + twoStar: 6 + threeStar: 12 + fourStar: 30 + fiveStar: 256 + imagesCount: 306 + scrapedAt: 2025-09-19T16:26:24.726Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WQUuhqHMVZ8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Tuesday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Wednesday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Thursday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Friday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Saturday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Sunday + hours: 12 to 9:30 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 12–2:30 PM + - day: Tuesday + hours: 12–2:30 PM + - day: Wednesday + hours: 12–2:30 PM + - day: Thursday + hours: 12–2:30 PM + - day: Friday + hours: 12–2:30 PM + - day: Saturday + hours: 12–2:30 PM + - day: Sunday + hours: 12–9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Comfort food: true + - Hard liquor: true + - Organic dishes: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Counter service: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: - Cozy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Parking: + - Free parking lot: true + - Usually plenty of parking: true + url: https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 26 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipMpOy2JiLh2USfvFc-vyIHWgXLz3Lphothp7aL4=w408-h276-k-no + kgmid: /g/1vnnk9rm +- title: Bigoi Venezia + description: Hearty, housemade noodles in traditional Italian sauces offered in a snug counter-serve eatery. + price: $ + categoryName: Italian restaurant + address: 1415 2nd Ave, New York, NY 10021 + neighborhood: Manhattan + street: 1415 2nd Ave + city: New York + postalCode: 10021 + state: New York + countryCode: US + website: http://www.bigoivenezia.com/ + phone: (917) 262-0680 + phoneUnformatted: +19172620680 + claimThisBusiness: false + location: + lat: 40.7700264 + lng: -73.9577755 + totalScore: 4.8 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJgdnYQcBYwokRDEGzKagrEfE + categories: Italian restaurant + fid: 0x89c258c041d8d981:0xf1112ba829b3410c + cid: 17370713238998827276 + reviewsCount: 757 + reviewsDistribution: + oneStar: 16 + twoStar: 7 + threeStar: 16 + fourStar: 55 + fiveStar: 663 + imagesCount: 369 + scrapedAt: 2025-09-19T16:26:24.726Z + openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM + additionalInfo: + Service options: + - No-contact delivery: true + - Delivery: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Highlights: - Fast service: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: - Wheelchair accessible parking lot: false + Offerings: + - Comfort food: true + - Quick bite: true + - Vegan options: true + - Vegetarian options: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + Amenities: - Restroom: false + Atmosphere: + - Casual: true + - Cozy: true + Crowd: - Locals: true + Planning: - Accepts reservations: false + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - Kids' menu: true + url: https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 27 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipOnno3KFrA4bCUoUWAn1syS_a-XCD8T_L4h1rc1=w408-h408-k-no + kgmid: /g/11g9n3t4gt +- title: Fumo Harlem + description: Bright, modern neighborhood Italian destination serving upmarket pizza, pasta & cocktails. + price: $$ + categoryName: Italian restaurant + address: 1600 Amsterdam Ave, New York, NY 10031 + neighborhood: Manhattan + street: 1600 Amsterdam Ave + city: New York + postalCode: 10031 + state: New York + countryCode: US + website: http://fumorestaurant.com/ + phone: (646) 692-6675 + phoneUnformatted: +16466926675 + claimThisBusiness: false + location: + lat: 40.8214251 + lng: -73.9506357 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJLe70p2X2wokReDA-X8LGqZE + categories: Italian restaurant, Pizza restaurant + fid: 0x89c2f665a7f4ee2d:0x91a9c6c25f3e3078 + cid: 10496138944687517816 + reviewsCount: 1829 + reviewsDistribution: + oneStar: 79 + twoStar: 41 + threeStar: 88 + fourStar: 368 + fiveStar: 1253 + imagesCount: 1220 + scrapedAt: 2025-09-19T16:26:24.726Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/j4TAgWiPxBg?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10:30 PM + - day: Wednesday + hours: 11 AM to 10:30 PM + - day: Thursday + hours: 11 AM to 10:30 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 11:30 AM–9:30 PM + - day: Tuesday + hours: 11:30 AM–10 PM + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:30 PM + - day: Saturday + hours: 11:30 AM–10:30 PM + - day: Sunday + hours: 11:30 AM–9:30 PM + Takeout: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: 11:30 AM–10:30 PM + - day: Wednesday + hours: 11:30 AM–10:30 PM + - day: Thursday + hours: 11:30 AM–10:30 PM + - day: Friday + hours: 11:30 AM–11 PM + - day: Saturday + hours: 11:30 AM–11 PM + - day: Sunday + hours: 11:30 AM–10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Healthy options: true + - Late-night food: true + - Quick bite: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - College students: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: + - Brunch reservations recommended: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - Credit cards: true + Children: - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 28 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noxn3BXjD-VrGWsESjzfnAMqQvj7MO7f9CdxhUpjDh2QXMSh12x_D-VtAqUbm2CRKHxCbMuJgWl_AtcTGdxBeOrfWKXQR_m2Nrj3-w5KIWDyZWKk1wt6YOJemgWDxJZp2PehuNK=w408-h306-k-no + kgmid: /g/11cm3nhnr6 +- title: Briciola Harlem + price: $$$ + categoryName: Italian restaurant + address: 398 W 145th St, New York, NY 10031 + neighborhood: Manhattan + street: 398 W 145th St + city: New York + postalCode: 10031 + state: New York + countryCode: US + website: https://briciolawinebar.com/ + phone: (212) 315-3315 + phoneUnformatted: +12123153315 + claimThisBusiness: false + location: + lat: 40.8240899 + lng: -73.9452634 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ2054MAz3wokR13Q2g5LfV_E + categories: Italian restaurant + fid: 0x89c2f70c30784edb:0xf157df92833674d7 + cid: 17390614306474063063 + reviewsCount: 206 + reviewsDistribution: + oneStar: 10 + twoStar: 9 + threeStar: 5 + fourStar: 14 + fiveStar: 168 + imagesCount: 335 + scrapedAt: 2025-09-19T16:26:24.727Z + openingHours: + - day: Monday + hours: 12 PM to 12 AM + - day: Tuesday + hours: 12 PM to 12 AM + - day: Wednesday + hours: 12 PM to 12 AM + - day: Thursday + hours: 12 PM to 12 AM + - day: Friday + hours: 12 PM to 12 AM + - day: Saturday + hours: 12 PM to 12 AM + - day: Sunday + hours: 12 PM to 12 AM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Parking: - Usually difficult to find a space: true + url: https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 29 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqlKu1vBUzXiHX7rOWUo3L6-tsEFRasfyBqE7YHv-kAGrJPF1Q-yrvtGp7EM5MZ4MxawEkHGgrhjmeSHPXtEDU9dMBCJJfQ2CJquJoTc-9MUndj-LtfV03kd0GP2fRqV57NK8CLoQ=w408-h306-k-no + kgmid: /g/11t_m1qd_p +- title: La Voglia NYC + price: $$$ + categoryName: Italian restaurant + address: 1645 3rd Ave, New York, NY 10128 + neighborhood: Manhattan + street: 1645 3rd Ave + city: New York + postalCode: 10128 + state: New York + countryCode: US + website: http://www.lavoglianyc.com/ + phone: (212) 417-0181 + phoneUnformatted: +12124170181 + claimThisBusiness: false + location: + lat: 40.7826745 + lng: -73.9508638 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJ2Z_EuD9ZwokRB_t-ovxEzxI + categories: Italian restaurant + fid: 0x89c2593fb8c49fd9:0x12cf44fca27efb07 + cid: 1355377864710486791 + reviewsCount: 410 + reviewsDistribution: + oneStar: 32 + twoStar: 13 + threeStar: 12 + fourStar: 40 + fiveStar: 313 + imagesCount: 399 + scrapedAt: 2025-09-19T16:26:24.727Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/rYAZF2X_o_Q?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 11 AM to 11 PM + - day: Tuesday + hours: 11 AM to 11 PM + - day: Wednesday + hours: 11 AM to 11 PM + - day: Thursday + hours: 11 AM to 11 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 11 PM + additionalOpeningHours: + Lunch: + - day: Monday + hours: 11 AM–3:30 PM + - day: Tuesday + hours: 11 AM–3:30 PM + - day: Wednesday + hours: 11 AM–3:30 PM + - day: Thursday + hours: 11 AM–3:30 PM + - day: Friday + hours: 11 AM–3:30 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 9 AM–7 PM + - day: Wednesday + hours: 4–7 PM + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 4–7 PM + - day: Saturday + hours: 4–7 PM + - day: Sunday + hours: 4–7 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–3:30 PM + - day: Sunday + hours: 11 AM–3:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Organic dishes: true + - Private dining room: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: + - Paid street parking: true + - Usually somewhat difficult to find a space: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 30 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrrjR5BdMAcOnsqWdiXtAE9JBH6qeDUcyIJiKWSU0xdIB2BJ0pxjBClHl7S2Lzclgv60X4fPenp321DycWf0K0qedSM0f1l52UOOCTYKJQeqbDdalTU3_W1x508oqzFL0qE-AYc=w426-h240-k-no + kgmid: /g/11shvf20lq +- title: Lex Restaurant + description: Understated eatery turning out Italian & American dishes, from red-sauce standards to grilled steak. + price: $$ + categoryName: Italian restaurant + address: 1370 Lexington Ave, New York, NY 10128 + neighborhood: Manhattan + street: 1370 Lexington Ave + city: New York + postalCode: 10128 + state: New York + countryCode: US + website: http://lexrestaurant.com/ + phone: (212) 860-5903 + phoneUnformatted: +12128605903 + claimThisBusiness: false + location: + lat: 40.7825 + lng: -73.9536111 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJRS-PgqRYwokRg6Ej6VCpx2o + categories: Italian restaurant, Bar, Brunch restaurant, Lunch restaurant, Restaurant + fid: 0x89c258a4828f2f45:0x6ac7a950e923a183 + cid: 7694304653359686019 + reviewsCount: 325 + reviewsDistribution: + oneStar: 9 + twoStar: 2 + threeStar: 12 + fourStar: 66 + fiveStar: 236 + imagesCount: 261 + scrapedAt: 2025-09-19T16:26:24.727Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/ezPg7DUEY3o?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 12 to 10:30 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Sports: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Late-night food: true + - Organic dishes: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: + - Family-friendly: true + - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 31 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipNrsR0F-0D62XUo-ow5sgTrcX4QDaKT1OIJTYHJ=w408-h408-k-no + kgmid: /g/1tfryd4_ +- title: A&S Cucina + price: $$ + categoryName: Italian restaurant + address: 610 Exterior St Floor 4, Bronx, NY 10451 + neighborhood: West Bronx + street: 610 Exterior St Floor 4 + city: Bronx + postalCode: 10451 + state: New York + countryCode: US + phone: (718) 534-0880 + phoneUnformatted: +17185340880 + claimThisBusiness: false + location: + lat: 40.8205131 + lng: -73.9301496 + totalScore: 5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJU2-XmLX1wokRQt2Kd8NsckM + categories: Italian restaurant + fid: 0x89c2f5b598976f53:0x43726cc3778add42 + cid: 4860066534666198338 + reviewsCount: 16 + reviewsDistribution: + oneStar: 0 + twoStar: 0 + threeStar: 0 + fourStar: 0 + fiveStar: 16 + imagesCount: 65 + scrapedAt: 2025-09-19T16:26:24.727Z + openingHours: + - day: Monday + hours: 11 AM to 7 PM + - day: Tuesday + hours: 11 AM to 8 PM + - day: Wednesday + hours: 11 AM to 8 PM + - day: Thursday + hours: 11 AM to 9 PM + - day: Friday + hours: 11 AM to 9:30 PM + - day: Saturday + hours: 11 AM to 9:30 PM + - day: Sunday + hours: 11 AM to 8 PM + additionalInfo: + Service options: + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: - Fast service: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Offerings: + - Comfort food: true + - Quick bite: true + Dining options: + - Lunch: true + - Dinner: true + Atmosphere: - Casual: true + Payments: + - Credit cards: true + - Debit cards: true + Parking: - Paid parking lot: true + url: https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 32 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolHXk24Kk3t-tfUxLdPBH3NZQkulvACP2H6ftRHJEPkQonCc2Eqf9eO9dyTklFGpe-ostrsL8VQ-IQOHLEah3rlLOEZvIX1697vE2y1ZXwF3zvApUVbHno6-Hubf3A8SVw_frQaA=w408-h544-k-no + kgmid: /g/11yc58qq1s +- title: L’incontro by Rocco + description: Upscale Italian restaurant with a special-occasion setting & a long list of specials. + price: $$$ + categoryName: Italian restaurant + address: 1572 2nd Ave, New York, NY 10028 + neighborhood: Manhattan + street: 1572 2nd Ave + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: https://www.lincontrobyrocco.com/ + phone: (718) 721-3532 + phoneUnformatted: +17187213532 + claimThisBusiness: false + location: + lat: 40.7749695 + lng: -73.9535474 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJFb-9qGdfwokRi14Wngdo12o + categories: Italian restaurant + fid: 0x89c25f67a8bdbf15:0x6ad768079e165e8b + cid: 7698736469939478155 + reviewsCount: 1444 + reviewsDistribution: + oneStar: 30 + twoStar: 14 + threeStar: 39 + fourStar: 145 + fiveStar: 1216 + imagesCount: 1006 + scrapedAt: 2025-09-19T16:26:24.727Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mSOOTQsITkA?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4:30 to 10:30 PM + - day: Wednesday + hours: 4:30 to 10:30 PM + - day: Thursday + hours: 4:30 to 10:30 PM + - day: Friday + hours: 4:30 to 10:30 PM + - day: Saturday + hours: 4:30 to 10:30 PM + - day: Sunday + hours: 4:30 to 10 PM + additionalInfo: + Service options: + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Organic dishes: true + - Vegetarian options: true + - Wine: true + Dining options: + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Gender-neutral restroom: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Groups: true + - Tourists: true + Planning: + - Reservations required: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - Usually plenty of parking: true + url: https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 33 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipMF8b8zEt6hh5qSvd3RId1OHMVorvXGkS98vMcy=w426-h240-k-no + kgmid: /g/1td2vts7 +- title: Bono Trattoria + description: Italian dishes & pizza served in cool industrial digs with a tin ceiling, brick oven & rustic bar. + price: $$ + categoryName: Italian restaurant + address: 3658 Broadway, New York, NY 10031 + neighborhood: Manhattan + street: 3658 Broadway + city: New York + postalCode: 10031 + state: New York + countryCode: US + website: http://www.bononyc.com/ + phone: (646) 682-9249 + phoneUnformatted: +16466829249 + claimThisBusiness: false + location: + lat: 40.830224 + lng: -73.947329 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJNbJQ54f2wokRPxHl6aTGio0 + categories: Italian restaurant, Pizza restaurant + fid: 0x89c2f687e750b235:0x8d8ac6a4e9e5113f + cid: 10199182717734949183 + reviewsCount: 940 + reviewsDistribution: + oneStar: 17 + twoStar: 10 + threeStar: 42 + fourStar: 194 + fiveStar: 677 + imagesCount: 703 + scrapedAt: 2025-09-19T16:26:24.727Z + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM + additionalOpeningHours: + Dinner: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: 4–10 PM + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 4–10 PM + - day: Sunday + hours: 4–10 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–4 PM + - day: Sunday + hours: 11 AM–4 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Healthy options: true + - Late-night food: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Groups: true + - Locals: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + url: https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 34 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noPjN6sJqa1D0HTMjRF_oLsdsPRIpqwRPYqFG_bDQY-ShewHuHYvPEZH1tB6WbucoPWFCnqTiHIXiGdzoDLuCYPf8Yvwg1iAIz3l4CVENtvW4wTI4nDduEPE1XBMRDQkRme8a3H=w408-h265-k-no + kgmid: /g/11b808d0t2 +- title: Lusardi's + description: Longtime eatery with an old-world vibe featuring pastas, fish & meats, plus a lengthy wine list. + price: $$$ + categoryName: Italian restaurant + address: 1494 2nd Ave, New York, NY 10075 + neighborhood: Manhattan + street: 1494 2nd Ave + city: New York + postalCode: 10075 + state: New York + countryCode: US + website: http://www.lusardis.com/ + phone: (212) 249-2020 + phoneUnformatted: +12122492020 + claimThisBusiness: true + location: + lat: 40.7724018 + lng: -73.9554555 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJVdduFL9YwokRGn2EFWZDLBs + categories: Italian restaurant + fid: 0x89c258bf146ed755:0x1b2c436615847d1a + cid: 1958014043726052634 + reviewsCount: 309 + reviewsDistribution: + oneStar: 8 + twoStar: 4 + threeStar: 22 + fourStar: 45 + fiveStar: 230 + imagesCount: 212 + scrapedAt: 2025-09-19T16:26:24.727Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0VIligoJUAs?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Takeout: true + - Dine-in: true + Highlights: + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Late-night food: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Upscale: true + Crowd: - Groups: true + Planning: + - Reservations required: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - Credit cards: true + url: https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 35 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrmzsu0XEkeNphvyqLohNt_6p_QJ1IDf47ZEFVccMkHymYtz05Eg6X8Vq7nnQIbFQyrNu935VunLLcgpcWdjoz29n547x4wEoKyEm815ziu46KWhpT3gPmQXhk-COWG50QXAQYe=w408-h408-k-no + kgmid: /g/1q6h_z98k +- title: Sandro's + description: This intimate neighborhood Italian restaurant featuring Roman cuisine draws a lively crowd. + price: $$$ + categoryName: Italian restaurant + address: 322 East 86th St, New York, NY 10028 + neighborhood: Manhattan + street: 322 East 86th St + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: http://www.sandrosrestaurant.com/ + phone: (212) 288-7374 + phoneUnformatted: +12122887374 + claimThisBusiness: false + location: + lat: 40.7772444 + lng: -73.9508955 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJj9dKtb5YwokRHtC1_HyFZG0 + categories: Italian restaurant, Bar, Northern Italian restaurant, Roman restaurant + fid: 0x89c258beb54ad78f:0x6d64857cfcb5d01e + cid: 7882572019667423262 + reviewsCount: 278 + reviewsDistribution: + oneStar: 3 + twoStar: 4 + threeStar: 12 + fourStar: 27 + fiveStar: 232 + imagesCount: 312 + scrapedAt: 2025-09-19T16:26:24.727Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0aEVt87ect8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 + openingHours: + - day: Monday + hours: 5 to 9 PM + - day: Tuesday + hours: 5 to 9 PM + - day: Wednesday + hours: 5 to 9 PM + - day: Thursday + hours: 5 to 9 PM + - day: Friday + hours: 5 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM + additionalInfo: + Service options: + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Groups: true + - Tourists: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 38 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipMhoz37pG6i3NCSux0Y4_wqOnNICJJnoO0kUhIw=w408-h271-k-no + kgmid: /g/1tm69vy3 +- title: Due + description: Sophisticated Northern Italian cuisine in an elegant yet cozy eatery with rustic-chic accents. + price: $$ + categoryName: Northern Italian restaurant + address: 1396 3rd Ave #1, New York, NY 10075 + neighborhood: Manhattan + street: 1396 3rd Ave #1 + city: New York + postalCode: 10075 + state: New York + countryCode: US + website: http://www.duenyc.com/ + phone: (212) 772-3331 + phoneUnformatted: +12127723331 + claimThisBusiness: false + location: + lat: 40.7746951 + lng: -73.9573127 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJPxCuXL5YwokR4a1zLHSjau8 + categories: Northern Italian restaurant, Italian restaurant, Restaurant + fid: 0x89c258be5cae103f:0xef6aa3742c73ade1 + cid: 17251781041953418721 + reviewsCount: 212 + reviewsDistribution: + oneStar: 8 + twoStar: 2 + threeStar: 9 + fourStar: 46 + fiveStar: 147 + imagesCount: 156 + scrapedAt: 2025-09-19T16:26:24.728Z + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Catering: true + - Counter service: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: + - Reservations required: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - Credit cards: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 40 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-proxy/ALd4DhHI_XCAl4xQsg-qCRnH6tgX67x5hvcgkHrDbGIRHsKj2U7D0jLKG2d__XTy90D_lh7n9NtkDSsm1Kb3GRDZ9Wy-0bSYop4FkGcVdeb_5TXc4StGkPbsm19lexb9-PoBTosjNZMT7HPxOx4OOpnm_Nr1areXLmOCiv3-H6LRzFrpoB0IM9z8gBCq8M3rR5L5zQr2XW4=w408-h271-k-no + kgmid: /g/1tfk0ryh +- title: Elegante Restaurant & Pizzeria + description: Longtime pizza parlor doling out pies, pasta & other Italian classics in a modest setting. + price: $$ + categoryName: Italian restaurant + address: 92-01 Rockaway Beach Blvd, Rockaway Beach, NY 11693 + neighborhood: Rockaway Beach + street: 92-01 Rockaway Beach Blvd + city: Rockaway Beach + postalCode: 11693 + state: New York + countryCode: US + website: https://www.elegantepizzeriarestaurant.com/?utm_source=gbp + phone: (718) 634-3914 + phoneUnformatted: +17186343914 + claimThisBusiness: false + location: + lat: 40.5862659 + lng: -73.8154509 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJfdftHUdowokRVbCXKo_CjlQ + categories: Italian restaurant, Pizza restaurant, Delivery Restaurant + fid: 0x89c268471dedd77d:0x548ec28f2a97b055 + cid: 6093021266029555797 + reviewsCount: 696 + reviewsDistribution: + oneStar: 52 + twoStar: 18 + threeStar: 35 + fourStar: 86 + fiveStar: 505 + imagesCount: 782 + scrapedAt: 2025-09-19T16:26:25.627Z + openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 11 AM–9:30 PM + - day: Tuesday + hours: 11 AM–9:30 PM + - day: Wednesday + hours: 11 AM–9:30 PM + - day: Thursday + hours: 11 AM–9:30 PM + - day: Friday + hours: 11 AM–10 PM + - day: Saturday + hours: 11 AM–9:30 PM + - day: Sunday + hours: 11 AM–9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Coffee: true + - Comfort food: true + - Late-night food: true + - Quick bite: true + - Small plates: true + - Vegan options: true + - Vegetarian options: true + Dining options: + - Breakfast: true + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Counter service: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: + - College students: true + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + - Transgender safespace: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - Has changing table(s): true + - High chairs: true + - Kids' menu: true + Parking: + - Free street parking: true + - Usually plenty of parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en + searchString: italian restaurant + language: en + rank: 50 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noA4_Sj541ZELrSG7KK2rGlOLbn01CccI2IypYKiA7b57Lwd8tM_nxWu6OLqAqt2JHHdTprDbAKFxAqOSr4_ukUjVdVvBzQBaOzNVe-gtxWmCxM742y5x3_gWNg1stO2ByU1ho=w408-h544-k-no + kgmid: /g/1hc1bh2nc +- title: IL Carino Restaurant + description: Italian cuisine served in an intimate, elevated setting with exposed-brick walls & low lighting. + price: $$ + categoryName: Italian restaurant + address: 1710 2nd Ave, New York, NY 10128 + neighborhood: Manhattan + street: 1710 2nd Ave + city: New York + postalCode: 10128 + state: New York + countryCode: US + website: https://www.ilcarinorestaurantnyc.com/ + phone: (646) 882-0487 + phoneUnformatted: +16468820487 + claimThisBusiness: false + location: + lat: 40.7794927 + lng: -73.9501884 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJiTxP17pYwokR0Gj0Wrd5cOg + categories: Italian restaurant + fid: 0x89c258bad74f3c89:0xe87079b75af468d0 + cid: 16749020842602817744 + reviewsCount: 260 + reviewsDistribution: + oneStar: 13 + twoStar: 8 + threeStar: 16 + fourStar: 18 + fiveStar: 205 + imagesCount: 393 + scrapedAt: 2025-09-19T16:26:25.740Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/72nfaEZ_lwY?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great wine list: true + Popular for: + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Hard liquor: true + - Vegetarian options: true + - Wine: true + Dining options: + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: + - Family-friendly: true + - Groups: true + - Locals: true + Planning: + - Reservations required: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 43 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npgcLl47mqf_FLQCHwGJgAn0OS1wyy0a96wBO3tiNtZc4S-0SlyC6HnWg9XGN_0LccglMaQJc4uoF3IfC389uR8Wk1TLh_VQ-EvPjJvoweYyWX5KLno0bpQsWaS010bz6TylJMuEmCBJ9aD=w408-h305-k-no + kgmid: /g/1tffq7sr +- title: Uva + description: This cozy, rustic spot with a patio and back garden draws lively crowds for small plates and wine. + price: $$ + categoryName: Italian restaurant + address: 1486 2nd Ave, New York, NY 10075 + neighborhood: Manhattan + street: 1486 2nd Ave + city: New York + postalCode: 10075 + state: New York + countryCode: US + website: http://www.uvanyc.com/ + phone: (212) 472-4552 + phoneUnformatted: +12124724552 + claimThisBusiness: false + location: + lat: 40.7721816 + lng: -73.9556129 + totalScore: 4.3 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJxYXIbL9YwokR7A8e89BZgGA + categories: Italian restaurant, Bar, Wine bar + fid: 0x89c258bf6cc885c5:0x608059d0f31e0fec + cid: 6953656578626949100 + reviewsCount: 2005 + reviewsDistribution: + oneStar: 82 + twoStar: 64 + threeStar: 167 + fourStar: 459 + fiveStar: 1233 + imagesCount: 1421 + scrapedAt: 2025-09-19T16:26:25.740Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/TvaPnNSr9sc?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 3 PM to 12 AM + - day: Tuesday + hours: 3 PM to 1 AM + - day: Wednesday + hours: 3 PM to 1 AM + - day: Thursday + hours: 3 PM to 1 AM + - day: Friday + hours: 3 PM to 1 AM + - day: Saturday + hours: 11 AM to 1 AM + - day: Sunday + hours: 11 AM to 12 AM + additionalOpeningHours: + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–3 PM + - day: Sunday + hours: 11 AM–3 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Late-night food: true + - Private dining room: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Breakfast: true + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Groups: true + - Tourists: true + Planning: - Usually a wait: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + url: https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 44 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noXDahT9ejA8LzkMGukO5StLsDMa_KRaiBE7GEp8fn-856pVnMqGidhH86GiusydFN5zLi8MIbtEhNXNBnNg3QZ65AYBGodNoTotTBZhUk6PSADgjytbS_HAoDhESOKrqBy7KyILw=w408-h270-k-no + kgmid: /g/1tm8fx6j +- title: Felice 64 + description: Stylish wine bar supplying Italian vintages & fare in a rustic, date-friendly setting. + price: $$ + categoryName: Italian restaurant + address: 1166 1st Ave, New York, NY 10065 + neighborhood: Manhattan + street: 1166 1st Ave + city: New York + postalCode: 10065 + state: New York + countryCode: US + website: https://www.felicerestaurants.com/felice-64/ + phone: (212) 593-2223 + phoneUnformatted: +12125932223 + claimThisBusiness: false + location: + lat: 40.7625672 + lng: -73.9595639 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJa1dYp8JYwokRX2NCKS9MxvE + categories: Italian restaurant, Brunch restaurant, Caterer, Delivery service, Fine dining restaurant, Pasta shop, Restaurant, Wine bar + fid: 0x89c258c2a758576b:0xf1c64c2f2942635f + cid: 17421695973968733023 + reviewsCount: 617 + reviewsDistribution: + oneStar: 7 + twoStar: 12 + threeStar: 34 + fourStar: 156 + fiveStar: 408 + imagesCount: 436 + scrapedAt: 2025-09-19T16:26:25.740Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/8IxjPHXMwf4?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 11:30 AM to 11 PM + - day: Sunday + hours: 11:30 AM to 10 PM + additionalOpeningHours: + Happy hours: + - day: Monday + hours: 4 AM–6 PM + - day: Tuesday + hours: 4 AM–6 PM + - day: Wednesday + hours: 4 AM–6 PM + - day: Thursday + hours: 4 AM–6 PM + - day: Friday + hours: 4 AM–6 PM + - day: Saturday + hours: 4 AM–6 PM + - day: Sunday + hours: 4 AM–6 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Happy hour drinks: true + - Hard liquor: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Tourists: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Debit cards: true + - NFC mobile payments: true + Children: + - High chairs: true + - Kids' menu: true + Parking: - Free street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 47 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npJ-Mm-9aPRmbUgeBKrk8WFBBydvbjCdQ2RuP_SYMMCD40dqTMLgNMm8zMLhAaL9-UN_RHTBTA0_TYhkdXBySBHaq1_5Jt8WXbnEnGHWoEpq-UKYhTyfVlAqgnlG5O-DKtsGIFO=w408-h282-k-no + kgmid: /g/1tdzs15z +- title: Luna Rossa + description: Cozy, white-tablecloth restaurant offering Italian dishes with homemade pasta & a sizable wine list. + price: $$ + categoryName: Italian restaurant + address: 347 E 85th St, New York, NY 10028 + neighborhood: Manhattan + street: 347 E 85th St + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: http://www.lunarossanyc.com/ + phone: (212) 517-3118 + phoneUnformatted: +12125173118 + claimThisBusiness: false + location: + lat: 40.776594 + lng: -73.950351 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJO9tKSrpYwokRZQ9lHjvqcfg + categories: Italian restaurant, Dessert restaurant, Delivery Restaurant, Northern Italian restaurant, Seafood restaurant, Southern Italian restaurant, Vegetarian restaurant, Wine bar + fid: 0x89c258ba4a4adb3b:0xf871ea3b1e650f65 + cid: 17902347533408341861 + reviewsCount: 201 + reviewsDistribution: + oneStar: 7 + twoStar: 5 + threeStar: 6 + fourStar: 23 + fiveStar: 160 + imagesCount: 177 + scrapedAt: 2025-09-19T16:26:25.741Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/iMViCOyoAug?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3 to 10:30 PM + - day: Wednesday + hours: 3 to 10:30 PM + - day: Thursday + hours: 3 to 10:30 PM + - day: Friday + hours: 3 to 10:30 PM + - day: Saturday + hours: 3 to 10:30 PM + - day: Sunday + hours: 3 to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–9:45 PM + - day: Wednesday + hours: 3–9:45 PM + - day: Thursday + hours: 3–9:45 PM + - day: Friday + hours: 3–9:45 PM + - day: Saturday + hours: 12–9:45 PM + - day: Sunday + hours: 12–9:45 PM + Takeout: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–9:45 PM + - day: Wednesday + hours: 3–9:45 PM + - day: Thursday + hours: 3–9:45 PM + - day: Friday + hours: 3–9:45 PM + - day: Saturday + hours: 12–9:45 PM + - day: Sunday + hours: 12–9:45 PM + Online service hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–10 PM + - day: Wednesday + hours: 3–10 PM + - day: Thursday + hours: 3–10 PM + - day: Friday + hours: 3–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Dinner: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: 4–10 PM + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10:30 PM + - day: Saturday + hours: 3–10:30 PM + - day: Sunday + hours: 3–9:30 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great coffee: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + Amenities: + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + url: https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 48 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipNPCpCPuqPAb1Mv6_fOP7cjb8Wu1rbqbk2sMBlh=w408-h271-k-no + kgmid: /g/1tyt67_1 +- title: Botte UES + price: $$ + categoryName: Italian restaurant + address: 1606 1st Ave, New York, NY 10028 + neighborhood: Manhattan + street: 1606 1st Ave + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: https://www.botterestaurants.com/ + phone: (212) 207-0052 + phoneUnformatted: +12122070052 + claimThisBusiness: false + location: + lat: 40.7750676 + lng: -73.9504538 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJI43xgLlYwokR9H-LXHs36gc + categories: Italian restaurant + fid: 0x89c258b980f18d23:0x7ea377b5c8b7ff4 + cid: 570329305788940276 + reviewsCount: 318 + reviewsDistribution: + oneStar: 19 + twoStar: 15 + threeStar: 13 + fourStar: 33 + fiveStar: 238 + imagesCount: 236 + scrapedAt: 2025-09-19T16:26:25.741Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-GCSu0_Y210?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 4–7 PM + - day: Wednesday + hours: 4–7 PM + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 3–7 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + Takeout: + - day: Monday + hours: 4–9:45 PM + - day: Tuesday + hours: 4–9:45 PM + - day: Wednesday + hours: 4–9:45 PM + - day: Thursday + hours: 4–9:45 PM + - day: Friday + hours: 12–10:45 PM + - day: Saturday + hours: 12–10:45 PM + - day: Sunday + hours: 12–9:45 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great wine list: true + - Live music: true + - Sports: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Hard liquor: true + - Small plates: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Counter service: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Parking: - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 49 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolXzNEIFsN-ymw3m-53K2V-62jcB3ZG6xPQUBFhO0HVCbb8a-pYgrbAmZlrMqh5aWtgrK-JKnRgj976PVvNYOHw6SxleadrfcWD3FG_RbGTlXVy3yDRXI6WyJl5930Kt8q-Q=w408-h544-k-no + kgmid: /g/11rcw3wyq2 +- title: Campagnola + description: An old-school Italian eatery with an extensive menu & prime opportunities for people-watching. + price: $$$ + categoryName: Italian restaurant + address: 1382 1st Ave, New York, NY 10021 + neighborhood: Manhattan + street: 1382 1st Ave + city: New York + postalCode: 10021 + state: New York + countryCode: US + website: http://www.campagnola-nyc.com/ + phone: (212) 861-1102 + phoneUnformatted: +12128611102 + claimThisBusiness: false + location: + lat: 40.7688172 + lng: -73.954826 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJHZRr3cBYwokRAOvPS6LgVVI + categories: Italian restaurant, Bar + fid: 0x89c258c0dd6b941d:0x5255e0a24bcfeb00 + cid: 5932895071791737600 + reviewsCount: 448 + reviewsDistribution: + oneStar: 17 + twoStar: 9 + threeStar: 23 + fourStar: 54 + fiveStar: 345 + imagesCount: 379 + scrapedAt: 2025-09-19T16:26:25.741Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/zf-38Zl8KIs?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 5 to 10:45 PM + - day: Tuesday + hours: 5 to 10:45 PM + - day: Wednesday + hours: 5 to 10:45 PM + - day: Thursday + hours: 5 to 10:45 PM + - day: Friday + hours: 5 to 10:45 PM + - day: Saturday + hours: 5 to 10:45 PM + - day: Sunday + hours: 5 to 10 PM + additionalInfo: + Service options: + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Live music: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Vegetarian options: true + - Wine: true + Dining options: + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Groups: true + - Locals: true + - Tourists: true + Planning: + - Reservations required: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + url: https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 50 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npq7cMI9AXFFQErpzum8CjIabtnWYL8YR_mZQ4iHDSaRlHciZov7wWXPITPcVvODwVdE4pEH2xOHC8MkrQWdSwZwkpScjxv78DIiAMRDUrObS7dWempaNzdF7O6FRENWrQFyeYw7w=w408-h271-k-no + kgmid: /g/1v7pzd2k +- title: Finestra Restaurant + description: Quiet, candlelit trattoria featuring familiar Italian flavors & occasional live music. + price: $$ + categoryName: Italian restaurant + address: 1370 York Ave, New York, NY 10021 + neighborhood: Manhattan + street: 1370 York Ave + city: New York + postalCode: 10021 + state: New York + countryCode: US + website: http://www.finestrarestaurant.com/ + phone: (212) 717-8595 + phoneUnformatted: +12127178595 + claimThisBusiness: false + location: + lat: 40.7675573 + lng: -73.95304 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJqZIo0MZYwokR91Ny6mmqVLQ + categories: Italian restaurant, Seafood restaurant + fid: 0x89c258c6d02892a9:0xb454aa69ea7253f7 + cid: 12994198196752372727 + reviewsCount: 313 + reviewsDistribution: + oneStar: 9 + twoStar: 8 + threeStar: 19 + fourStar: 67 + fiveStar: 210 + imagesCount: 974 + scrapedAt: 2025-09-19T16:26:25.741Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-D_Wh5V-520?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 12 to 9 PM + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 9 PM + - day: Saturday + hours: 12 to 9 PM + - day: Sunday + hours: 12 to 9 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9 PM + - day: Saturday + hours: 12–9 PM + - day: Sunday + hours: 12–9 PM + additionalInfo: + From the business: - Identifies as women-owned: true + Service options: + - Outdoor seating: true + - Curbside pickup: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + - Live music: true + - Serves local specialty: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Organic dishes: true + - Private dining room: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + - Kids' menu: true + Pets: + - Dogs allowed: true + - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 51 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipNkteYTvZ5RQhRDA1ftYSmSIZ_AgBnaL-wcZ2qr=w426-h240-k-no + kgmid: /g/1tdlj65t +- title: 314 - pizza,pasta&cocktailbar + price: $$ + categoryName: Italian restaurant + address: 3143 Broadway, New York, NY 10027 + neighborhood: Manhattan + street: 3143 Broadway + city: New York + postalCode: 10027 + state: New York + countryCode: US + website: https://www.bar314nyc.com/ + phone: (646) 682-7645 + phoneUnformatted: +16466827645 + claimThisBusiness: false + location: + lat: 40.8141969 + lng: -73.9598383 + totalScore: 4.7 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJx1MYBV_3wokRjeYHCXgKrJ8 + categories: Italian restaurant, Gluten-free restaurant, Pizza delivery, Pizza restaurant, Vegetarian restaurant + fid: 0x89c2f75f051853c7:0x9fac0a780907e68d + cid: 11505582658688640653 + reviewsCount: 393 + reviewsDistribution: + oneStar: 16 + twoStar: 5 + threeStar: 8 + fourStar: 41 + fiveStar: 323 + imagesCount: 372 + scrapedAt: 2025-09-19T16:26:25.742Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/hBW3mCgvci0?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Quick bite: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Casual: true + - Cozy: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Tourists: true + Planning: - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Parking: + - Free street parking: true + - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8 + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 55 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noGc3jryP4Hs8eOL-x3pi6LQlGM8sI8FdpRbCP7zWqCadwoy1-KIfk0vZKCK7laUpj_c-jZKSfPp6GA-1DXvmk0gO1n3VApn5YZuLz-XZD5NNKg1EkKA9mg2SCFb75E7q03O9YY=w408-h544-k-no + kgmid: /g/11gwhc4n3m +- title: Bottega + description: Italian staples including housemade pasta dishes served in a casual but stylish space with a patio. + price: $$ + categoryName: Italian restaurant + address: 1331 2nd Ave, New York, NY 10021 + neighborhood: Manhattan + street: 1331 2nd Ave + city: New York + postalCode: 10021 + state: New York + countryCode: US + website: http://www.bottegany.com/ + phone: (212) 288-5282 + phoneUnformatted: +12122885282 + claimThisBusiness: false + location: + lat: 40.7678058 + lng: -73.9593676 + totalScore: 4.4 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJxR4H4cFYwokRM1RXHp-Cy5s + categories: Italian restaurant, Bar + fid: 0x89c258c1e1071ec5:0x9bcb829f1e575433 + cid: 11226210116071543859 + reviewsCount: 314 + reviewsDistribution: + oneStar: 11 + twoStar: 10 + threeStar: 20 + fourStar: 69 + fiveStar: 204 + imagesCount: 107 + scrapedAt: 2025-09-19T16:26:25.742Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/XgnZqXjwZnk?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Healthy options: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Casual: true + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - High chairs: true + - Kids' menu: true + Parking: - Paid street parking: true + Pets: - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 56 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrbcjqFUIMgRhqP_S6d9scX9pAvynyWuMSj0Mt3h_k9RgFdClLs_BSmNZi7v60DUPlGDO4hwvXGYxbrtATMmfu3suVcEkiAiZTWh5_yhCNYo79EodLiC2aaRPHLlLdy4nGpqfDt6w=w413-h240-k-no + kgmid: /g/1yl57jlmg +- title: L'Artista Italian Kitchen & Bar + categoryName: Northern Italian restaurant + address: 142 Hamilton Pl, New York, NY 10031 + neighborhood: Manhattan + street: 142 Hamilton Pl + city: New York + postalCode: 10031 + state: New York + countryCode: US + website: http://www.lartistanyc.com/ + phone: (646) 858-0312 + phoneUnformatted: +16468580312 + claimThisBusiness: false + location: + lat: 40.8243708 + lng: -73.9486693 + totalScore: 4.6 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJscGs5JD3wokRcU7HNiu5akM + categories: Northern Italian restaurant, Cocktail bar, Dessert restaurant, Italian restaurant, Jazz club, Lounge, Wine bar + fid: 0x89c2f790e4acc1b1:0x436ab92b36c74e71 + cid: 4857898743326264945 + reviewsCount: 260 + reviewsDistribution: + oneStar: 8 + twoStar: 13 + threeStar: 9 + fourStar: 22 + fiveStar: 208 + imagesCount: 429 + scrapedAt: 2025-09-19T16:26:25.742Z + reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WeRZ2XWj8jU?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 + openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 4–7 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 4–7 PM + - day: Saturday + hours: 4–7 PM + - day: Sunday + hours: 4–7 PM + Takeout: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Access: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Kitchen: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM + additionalInfo: + Service options: + - Outdoor seating: true + - No-contact delivery: true + - Delivery: true + - Onsite services: true + - Takeout: true + - Dine-in: true + Highlights: + - Fast service: true + - Great cocktails: true + - Great dessert: true + - Great wine list: true + - Live music: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible parking lot: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Happy hour drinks: true + - Happy hour food: true + - Hard liquor: true + - Late-night food: true + - Organic dishes: true + - Small plates: true + - Vegetarian options: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Catering: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Gender-neutral restroom: true + - Restroom: true + - Wi-Fi: true + - Free Wi-Fi: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + Crowd: + - Family-friendly: true + - Groups: true + - LGBTQ+ friendly: true + - Transgender safespace: true + Planning: + - Reservations required: true + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + Children: + - Good for kids: true + - High chairs: true + Pets: + - Dogs allowed: true + - Dogs allowed outside: true + url: https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 59 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/p/AF1QipO6j0I_9oCXkmj91OGfXksWfd3iHsWOQhdh2HJd=w408-h544-k-no + kgmid: /g/11h39mlfsp +- title: Antonucci Cafe + description: Refined venue offering elevated Italian fare, including homemade pastas, plus an ample wine list. + price: $$$ + categoryName: Italian restaurant + address: 170 E 81st St, New York, NY 10028 + neighborhood: Manhattan + street: 170 E 81st St + city: New York + postalCode: 10028 + state: New York + countryCode: US + website: https://antonuccicafe81.com/ + phone: (212) 570-5100 + phoneUnformatted: +12125705100 + claimThisBusiness: true + location: + lat: 40.7756958 + lng: -73.9569247 + totalScore: 4.5 + permanentlyClosed: false + temporarilyClosed: false + placeId: ChIJmQKjfr5YwokRxETZofFe5hc + categories: Italian restaurant, Bar & grill, Cafe, Restaurant + fid: 0x89c258be7ea30299:0x17e65ef1a1d944c4 + cid: 1722168299411293380 + reviewsCount: 406 + reviewsDistribution: + oneStar: 18 + twoStar: 12 + threeStar: 18 + fourStar: 52 + fiveStar: 306 + imagesCount: 256 + scrapedAt: 2025-09-19T16:26:25.742Z + openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 12 to 10:30 PM + - day: Sunday + hours: 12 to 10 PM + additionalOpeningHours: + Delivery: + - day: Monday + hours: 5–10 PM + - day: Tuesday + hours: 5–10 PM + - day: Wednesday + hours: 5–10 PM + - day: Thursday + hours: 5–10 PM + - day: Friday + hours: 5–10 PM + - day: Saturday + hours: 5–10 PM + - day: Sunday + hours: 5–10 PM + Takeout: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + additionalInfo: + Service options: + - Outdoor seating: true + - Delivery: true + - Takeout: true + - Dine-in: true + Highlights: + - Great cocktails: true + - Great coffee: true + - Great dessert: true + - Great wine list: true + Popular for: + - Lunch: true + - Dinner: true + - Solo dining: true + Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + Offerings: + - Alcohol: true + - Beer: true + - Cocktails: true + - Coffee: true + - Comfort food: true + - Hard liquor: true + - Small plates: true + - Wine: true + Dining options: + - Brunch: true + - Lunch: true + - Dinner: true + - Dessert: true + - Seating: true + - Table service: true + Amenities: + - Bar onsite: true + - Restroom: true + Atmosphere: + - Cozy: true + - Romantic: true + - Trendy: true + - Upscale: true + Crowd: - Groups: true + Planning: + - Dinner reservations recommended: true + - Accepts reservations: true + Payments: + - Credit cards: true + - Debit cards: true + - NFC mobile payments: true + - Credit cards: true + url: https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc + searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en + searchString: italian restaurant + language: en + rank: 60 + isAdvertisement: false + imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrorwSkoGQ6dwJaBkXAKbzdWyVnO6sPKoDJwRQ9otnkDGWYdWZzMQnlKcE2bTNytK4tE2CJFOJ4SGkP4of7Vy9h2Yxfr49IdtciphiOSDlhuF5Z5UIO8snTZwvU1k982yNRq3c-=w426-h240-k-no + kgmid: /g/1tf9p556" +`; diff --git a/tests/unit/dataset_google-maps-extractor_2025-09-19_16-26-25-793.json b/tests/unit/dataset_google-maps-extractor_2025-09-19_16-26-25-793.json new file mode 100644 index 00000000..fede9857 --- /dev/null +++ b/tests/unit/dataset_google-maps-extractor_2025-09-19_16-26-25-793.json @@ -0,0 +1,14494 @@ +[{ + "title": "Lena Trattoria", + "price": "$50–100", + "categoryName": "Italian restaurant", + "address": "3470 E Tremont Ave, Bronx, NY 10465", + "neighborhood": "East Bronx", + "street": "3470 E Tremont Ave", + "city": "Bronx", + "postalCode": "10465", + "state": "New York", + "countryCode": "US", + "website": "https://www.lenatrattoria.com/", + "phone": "(718) 239-5362", + "phoneUnformatted": "+17182395362", + "claimThisBusiness": false, + "location": { + "lat": 40.8315408, + "lng": -73.8273579 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJA4JRKzCLwokRHBTppuJxhpg", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c28b302b518203:0x988671e2a6e9141c", + "cid": "10990597158921114652", + "reviewsCount": 316, + "imagesCount": 500, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.822Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/YtYEzY6K_pI?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 11:30 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11:30 PM" + }, + { + "day": "Sunday", + "hours": "12 to 11 PM" + } + ], + "additionalOpeningHours": { + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "12–4 PM" + }, + { + "day": "Sunday", + "hours": "12–4 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "Has changing table(s)": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Valet parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 1, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipMyIj8Uqz4GF83nGPwJUQM8FiwfWl1SCrVEYIHl=w408-h272-k-no", + "kgmid": "/g/11krpqpnkk" +}, +{ + "title": "Trattoria Ora", + "description": "Homestyle pastas, seafood & meat dishes in a relaxed space with brick walls & a wine bar.", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "18-01 Astoria Blvd, Astoria, NY 11102", + "neighborhood": "Astoria", + "street": "18-01 Astoria Blvd", + "city": "Astoria", + "postalCode": "11102", + "state": "New York", + "countryCode": "US", + "phone": "(718) 433-9680", + "phoneUnformatted": "+17184339680", + "claimThisBusiness": false, + "location": { + "lat": 40.7723648, + "lng": -73.9272762 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJTUW3105fwokRTUXSiiya0gg", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25f4ed7b7454d:0x8d29a2c8ad2454d", + "cid": "635740013510935885", + "reviewsCount": 193, + "imagesCount": 122, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "4 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "4 to 10 PM" + }, + { + "day": "Saturday", + "hours": "4 to 10 PM" + }, + { + "day": "Sunday", + "hours": "4 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Live music": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Usually somewhat difficult to find a space": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 2, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4np0dfTUFPfnaxynhB6Qo5odcsfvDT3medXWCx0tCjO9LnAKN1BtCAeT2ceq8GER77UpfaOqHVpO3lKvnGtCtO5Oc-crMntYibyLI-h3UeITQjKLMYwBatOWhe13ycU4g5TtWrWfkA=w426-h240-k-no", + "kgmid": "/g/11f3tyq4w3" +}, +{ + "title": "Sotto la Luna", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "34-39 31st St, Astoria, NY 11106", + "neighborhood": "Astoria", + "street": "34-39 31st St", + "city": "Astoria", + "postalCode": "11106", + "state": "New York", + "countryCode": "US", + "website": "https://www.sottolalunanyc.com/", + "phone": "(631) 380-3569", + "phoneUnformatted": "+16313803569", + "claimThisBusiness": false, + "location": { + "lat": 40.7582411, + "lng": -73.9281794 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJBTuSXqhfwokRpjEVqzy1U6U", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25fa85e923b05:0xa553b53cab1531a6", + "cid": "11913064711498052006", + "reviewsCount": 778, + "imagesCount": 1287, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/Y5WODzhav_U?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Drive-through": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + }, + { + "Usually somewhat difficult to find a space": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 3, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqLPPG4gUHad5-56OgX1jULHAre4IBYzvj_Bh4QBgMLCUDwUpa2Gd0JrEWD_M8q_hrWDjL-XyxWq5kLgIGtqqBIReUX9NPQFpihEqvKpy-ptIrdm8WLZLZfi4JV7VFTpces0S2a=w408-h544-k-no", + "kgmid": "/g/11nxnzbrf1" +}, +{ + "title": "Pine Restaurant", + "description": "Longtime Italian eatery featuring a raw bar & classic entrees, including steak & seafood dishes.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1913 Bronxdale Ave, Bronx, NY 10462", + "neighborhood": "East Bronx", + "street": "1913 Bronxdale Ave", + "city": "Bronx", + "postalCode": "10462", + "state": "New York", + "countryCode": "US", + "website": "http://fjpine.com/", + "phone": "(718) 792-5956", + "phoneUnformatted": "+17187925956", + "claimThisBusiness": false, + "location": { + "lat": 40.8487296, + "lng": -73.8622597 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJIcUqAKP0wokRJzfqJIeeYkA", + "categories": [ + "Italian restaurant", + "Banquet hall", + "Bar", + "Caterer", + "Event venue" + ], + "fid": "0x89c2f4a3002ac521:0x40629e8724ea3727", + "cid": "4639444869422135079", + "reviewsCount": 4625, + "imagesCount": 3457, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/PCWagUGpapQ?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Tuesday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Wednesday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Thursday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Friday", + "hours": "10 AM–10:30 PM" + }, + { + "day": "Saturday", + "hours": "10 AM–10:30 PM" + }, + { + "day": "Sunday", + "hours": "10 AM–9:30 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Tuesday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Wednesday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Thursday", + "hours": "10 AM–9:30 PM" + }, + { + "day": "Friday", + "hours": "10 AM–10:30 PM" + }, + { + "day": "Saturday", + "hours": "10 AM–10:30 PM" + }, + { + "day": "Sunday", + "hours": "10 AM–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Fireplace": true + }, + { + "Great beer selection": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Organic dishes": true + }, + { + "Private dining room": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Historic": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Lunch reservations recommended": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + }, + { + "Usually a wait": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "Good for kids birthday": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually plenty of parking": true + }, + { + "Valet parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 4, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqiMHLnk8HOuxz6mjpHd0YAIb5Embyavz95RcgF348wDNWBOT0hoLGIb2RxqFERGp34k6nRL2qzM1u9BvcIsEUYf6sQspDpn5jDEKFoNsBNAicrkQVF30hYjBoXCn5Kk7kEjZhFJQ=w408-h306-k-no", + "kgmid": "/g/1tl8ln63" +}, +{ + "title": "Uncle Peter's", + "description": "Relaxing, brick-lined bar & eatery serves up filling Italian dishes & lunch specials.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "83-15 Northern Blvd, Jackson Heights, NY 11372", + "neighborhood": "Jackson Heights", + "street": "83-15 Northern Blvd", + "city": "Jackson Heights", + "postalCode": "11372", + "state": "New York", + "countryCode": "US", + "website": "http://www.unclepetersrestaurant.com/", + "phone": "(718) 651-8600", + "phoneUnformatted": "+17186518600", + "claimThisBusiness": false, + "location": { + "lat": 40.7559179, + "lng": -73.8838536 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ-RWrUqFfwokRBdK7GCBreRw", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25fa152ab15f9:0x1c796b2018bbd205", + "cid": "2051788890842059269", + "reviewsCount": 807, + "imagesCount": 868, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/UHB8aU5NZjs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Happy hours": [ + { + "day": "Monday", + "hours": "4–6 PM" + }, + { + "day": "Tuesday", + "hours": "4–6 PM" + }, + { + "day": "Wednesday", + "hours": "4–6 PM" + }, + { + "day": "Thursday", + "hours": "4–6 PM" + }, + { + "day": "Friday", + "hours": "4–6 PM" + }, + { + "day": "Saturday", + "hours": "Closed" + }, + { + "day": "Sunday", + "hours": "Closed" + } + ], + "Delivery": [ + { + "day": "Monday", + "hours": "12–9 PM" + }, + { + "day": "Tuesday", + "hours": "12–9 PM" + }, + { + "day": "Wednesday", + "hours": "12–9 PM" + }, + { + "day": "Thursday", + "hours": "12–9 PM" + }, + { + "day": "Friday", + "hours": "12–9:30 PM" + }, + { + "day": "Saturday", + "hours": "12–9:30 PM" + }, + { + "day": "Sunday", + "hours": "12–9 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "12–9 PM" + }, + { + "day": "Tuesday", + "hours": "12–9 PM" + }, + { + "day": "Wednesday", + "hours": "12–9 PM" + }, + { + "day": "Thursday", + "hours": "12–9 PM" + }, + { + "day": "Friday", + "hours": "12–9:30 PM" + }, + { + "day": "Saturday", + "hours": "12–9:30 PM" + }, + { + "day": "Sunday", + "hours": "12–9 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "From the business": [ + { + "Identifies as women-owned": true + } + ], + "Service options": [ + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Braille menu": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 5, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npEfOTq2zJ73-eddnKZBQO8TjjlswntyctrI-EEhLHzOReRbgyHYDMYoQXA0oGhLq9DNKtDkdSGZIXzuPlvY6cMTGG_885x4Gr1870voAHI183xyLpUA0AN_Pd90m8lZIOlCLl3=w408-h306-k-no", + "kgmid": "/g/1tkp5xcc" +}, +{ + "title": "Porto Salvo", + "description": "Cozy spot resembling an old port tavern offering Italian fare, local draft beers & outdoor seating.", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "424 E 161st St, Bronx, NY 10451", + "neighborhood": "Melrose", + "street": "424 E 161st St", + "city": "Bronx", + "postalCode": "10451", + "state": "New York", + "countryCode": "US", + "website": "https://portosalvonyc.com/?utm_source=google", + "phone": "(929) 376-7866", + "phoneUnformatted": "+19293767866", + "claimThisBusiness": false, + "location": { + "lat": 40.8236957, + "lng": -73.9129382 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJx-zorsr1wokR5a-0j2bBtPI", + "categories": [ + "Italian restaurant", + "Brunch restaurant", + "Cocktail bar", + "Fine dining restaurant", + "Oyster bar restaurant", + "Pizza restaurant", + "Seafood restaurant", + "Wine bar" + ], + "fid": "0x89c2f5caaee8ecc7:0xf2b4c1668fb4afe5", + "cid": "17488815899228286949", + "reviewsCount": 845, + "imagesCount": 943, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "1–9 PM" + }, + { + "day": "Tuesday", + "hours": "1–9 PM" + }, + { + "day": "Wednesday", + "hours": "1–9 PM" + }, + { + "day": "Thursday", + "hours": "1–9 PM" + }, + { + "day": "Friday", + "hours": "1–9 PM" + }, + { + "day": "Saturday", + "hours": "1–9 PM" + }, + { + "day": "Sunday", + "hours": "1–9 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "12–9 PM" + }, + { + "day": "Tuesday", + "hours": "12–9 PM" + }, + { + "day": "Wednesday", + "hours": "12–9 PM" + }, + { + "day": "Thursday", + "hours": "12–9 PM" + }, + { + "day": "Friday", + "hours": "12–9 PM" + }, + { + "day": "Saturday", + "hours": "12–9 PM" + }, + { + "day": "Sunday", + "hours": "12–9 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "From the business": [ + { + "Identifies as Asian-owned": true + }, + { + "Identifies as LGBTQ+ owned": true + } + ], + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great beer selection": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Organic dishes": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Paid parking garage": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 6, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noBw1FVHhrlZf1LnLpyh5daCdK2aTCg5q4VKeoyTMjkOFicx74L1JXWR5TYuPgTJU9gKv0Mpiy3d_DK5Klttu8WRYStIRSZU5-nd_0vhl-jtNyguz1KxZteK5xoxkWpxHv4Ji6B=w408-h306-k-no", + "kgmid": "/g/11dfqw4b3t" +}, +{ + "title": "Napoli's", + "description": "Unpretentious restaurant serving up Italian & Balkan dishes like pizza, pasta, burek & goulash.", + "price": "$10–20", + "categoryName": "Italian restaurant", + "address": "28-51 42nd St, Astoria, NY 11103", + "neighborhood": "Astoria", + "street": "28-51 42nd St", + "city": "Astoria", + "postalCode": "11103", + "state": "New York", + "countryCode": "US", + "phone": "(347) 531-0202", + "phoneUnformatted": "+13475310202", + "claimThisBusiness": false, + "location": { + "lat": 40.7633718, + "lng": -73.9130096 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ69B93D9fwokRpdmphb9tDMs", + "categories": [ + "Italian restaurant", + "Delivery Restaurant" + ], + "fid": "0x89c25f3fdc7dd0eb:0xcb0c6dbf85a9d9a5", + "cid": "14631189958768581029", + "reviewsCount": 160, + "imagesCount": 84, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.823Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Saturday", + "hours": "8 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "8 AM to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + } + ], + "Dining options": [ + { + "Breakfast": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 7, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipP_WOoL_M9mf1weLBGCZhv9DRsQP1-B3orU26YW=w426-h240-k-no", + "kgmid": "/g/11fyzd9th8" +}, +{ + "title": "VITE vinosteria", + "description": "Rustic-chic neighborhood joint with homestyle Italian fare, a variety of wines & a weekend brunch.", + "price": "$50–100", + "categoryName": "Italian restaurant", + "address": "31-05 34th St, Astoria, NY 11106", + "neighborhood": "Astoria", + "street": "31-05 34th St", + "city": "Astoria", + "postalCode": "11106", + "state": "New York", + "countryCode": "US", + "website": "http://www.vitevinosteria.com/", + "phone": "(718) 278-8483", + "phoneUnformatted": "+17182788483", + "claimThisBusiness": false, + "location": { + "lat": 40.7629318, + "lng": -73.9211655 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJu_ZPCDlfwokRNS7856uUxDk", + "categories": [ + "Italian restaurant", + "Caterer", + "Cocktail bar", + "Delivery Restaurant", + "Takeout Restaurant", + "Northern Italian restaurant", + "Pizza delivery", + "Pizza restaurant", + "Pizza Takeout", + "Wine bar" + ], + "fid": "0x89c25f39084ff6bb:0x39c494abe7fc2e35", + "cid": "4162615421649563189", + "reviewsCount": 724, + "imagesCount": 1126, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10:30 PM" + }, + { + "day": "Tuesday", + "hours": "4 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "4 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "4 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10:30 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "5–10:30 PM" + }, + { + "day": "Tuesday", + "hours": "5–10:30 PM" + }, + { + "day": "Wednesday", + "hours": "5–10:30 PM" + }, + { + "day": "Thursday", + "hours": "5–10:30 PM" + }, + { + "day": "Friday", + "hours": "4–11 PM" + }, + { + "day": "Saturday", + "hours": "12–11 PM" + }, + { + "day": "Sunday", + "hours": "12–10:30 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "4–10:30 PM" + }, + { + "day": "Tuesday", + "hours": "4–10:30 PM" + }, + { + "day": "Wednesday", + "hours": "4–10:30 PM" + }, + { + "day": "Thursday", + "hours": "4–10:30 PM" + }, + { + "day": "Friday", + "hours": "4–11 PM" + }, + { + "day": "Saturday", + "hours": "12–11 PM" + }, + { + "day": "Sunday", + "hours": "12–10:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Organic dishes": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually difficult to find a space": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 8, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCOyJR1v0uWAzCZg7o0bk6AM7Zj1m3fcxKpDcmOUXeEJZHBN64dcaJ8yeZsUfDOPEZFbTnU9pt4T4cZaKU97b7DvRsqoWP-98ETrPLiAlGkt40l1Fl2_JlCl14sckXDd2KyZpw=w408-h306-k-no", + "kgmid": "/g/1q6kk4p_m" +}, +{ + "title": "Piccolo Sogno", + "description": "Charming, chef-owned restaurant serving Italian cuisine & pizza in an intimate environment.", + "price": "$20–30", + "categoryName": "Italian restaurant", + "address": "195-14 47th Ave, Flushing, NY 11358", + "neighborhood": "Flushing", + "street": "195-14 47th Ave", + "city": "Flushing", + "postalCode": "11358", + "state": "New York", + "countryCode": "US", + "website": "https://www.piccolosognony.com/", + "phone": "(718) 224-1717", + "phoneUnformatted": "+17182241717", + "claimThisBusiness": false, + "location": { + "lat": 40.752459, + "lng": -73.785769 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJU8dOIc9hwokRcYOEBJXggc0", + "categories": [ + "Italian restaurant", + "Caterer", + "Fine dining restaurant", + "Takeout Restaurant", + "Northern Italian restaurant", + "Pizza Takeout", + "Restaurant" + ], + "fid": "0x89c261cf214ec753:0xcd81e09504848371", + "cid": "14808363980401443697", + "reviewsCount": 480, + "imagesCount": 388, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "11 AM to 8 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 8 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 9 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 9 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 8 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "5–8 PM" + }, + { + "day": "Thursday", + "hours": "5–8 PM" + }, + { + "day": "Friday", + "hours": "5–9 PM" + }, + { + "day": "Saturday", + "hours": "5–9 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–8 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "11 AM–8 PM" + }, + { + "day": "Thursday", + "hours": "11 AM–8 PM" + }, + { + "day": "Friday", + "hours": "11 AM–9 PM" + }, + { + "day": "Saturday", + "hours": "11 AM–9 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–8 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Beer": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Healthy options": true + }, + { + "Quick bite": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Quiet": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually somewhat difficult to find a space": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 9, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqsE8ucmgrKR4BdPoDePAVgCO3ATznshCfGfOikObRl52az29a5t4HRrOVbcSJbUJbo-ory9T9pLXO-7qm_cw5DN4PJCX2BAyFCqNokINCl7YG-OF9ySq-4i_T0Zbk8Qol-97UnFQ=w513-h240-k-no", + "kgmid": "/g/1tdvqntx" +}, +{ + "title": "Palermo", + "description": "Brick-oven pizzas, pasta & other Italian eats in a casual space with a full bar & patio seating.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "23-92 21st St, Astoria, NY 11105", + "neighborhood": "Astoria", + "street": "23-92 21st St", + "city": "Astoria", + "postalCode": "11105", + "state": "New York", + "countryCode": "US", + "website": "http://palermoastoria.com/", + "phone": "(718) 267-0010", + "phoneUnformatted": "+17182670010", + "claimThisBusiness": false, + "location": { + "lat": 40.7770481, + "lng": -73.9214503 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJV1Gg2FpfwokRS6XpD37qw8E", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25f5ad8a05157:0xc1c3ea7e0fe9a54b", + "cid": "13962261096932418891", + "reviewsCount": 663, + "imagesCount": 506, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/kBAv8B6pJiU?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 9:30 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "12–9:45 PM" + }, + { + "day": "Tuesday", + "hours": "12–9:45 PM" + }, + { + "day": "Wednesday", + "hours": "12–9:45 PM" + }, + { + "day": "Thursday", + "hours": "12–9:45 PM" + }, + { + "day": "Friday", + "hours": "12–10:30 PM" + }, + { + "day": "Saturday", + "hours": "11 AM–10:30 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually plenty of parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 10, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nos8RzEvGfPSN_W8PnoSszfnY_UmiQVMRo4a_hYlB6hUpXboeO-p6ozTFPnHxjcB3D4lYbpJQOLZ5JG0DvtIMCU46lCrjrZKoYdjlcXl95qIwmtHsMsi8o1eG_65tStjxg1Xct1=w408-h306-k-no", + "kgmid": "/g/1pxq42syy" +}, +{ + "title": "Riviera Ristorante", + "description": "Warm, casual venue offering Northern & Southern Italian fare, including pasta, veal & seafood.", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "17-12 Utopia Pkwy, Whitestone, NY 11357", + "neighborhood": "Whitestone", + "street": "17-12 Utopia Pkwy", + "city": "Whitestone", + "postalCode": "11357", + "state": "New York", + "countryCode": "US", + "website": "http://www.rivieraristorante.com/", + "phone": "(718) 352-2225", + "phoneUnformatted": "+17183522225", + "claimThisBusiness": false, + "location": { + "lat": 40.7822521, + "lng": -73.7947252 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJM1jHAGKKwokRF7ZyZYvOiQQ", + "categories": [ + "Italian restaurant", + "Restaurant" + ], + "fid": "0x89c28a6200c75833:0x489ce8b6572b617", + "cid": "327019546058864151", + "reviewsCount": 651, + "imagesCount": 298, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12 to 9 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 9 PM" + }, + { + "day": "Thursday", + "hours": "12 to 9 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 11, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npnM0VIakTj8BctsRSIobxTNXGLmHD_bVY3QPXZ6dQ5-pGOFpuQwJwjlKmNYf6oEzE9G1tl7oxOrpBLymapRZNDoO5cdtbWcKWJz1-h_0AW8gOtfott4P-eOhucDpZVitK1fcbK=w408-h544-k-no", + "kgmid": "/g/1td72y7w" +}, +{ + "title": "Da Franco & Tony Ristorante", + "description": "Casual, brick-clad stop offering Italian-American fare such as fresh gnocchi & chicken scarpariello.", + "price": "$50–100", + "categoryName": "Italian restaurant", + "address": "2815 Middletown Rd, Bronx, NY 10461", + "neighborhood": "East Bronx", + "street": "2815 Middletown Rd", + "city": "Bronx", + "postalCode": "10461", + "state": "New York", + "countryCode": "US", + "website": "http://dafrancoandtony.com/", + "phone": "(718) 684-2815", + "phoneUnformatted": "+17186842815", + "claimThisBusiness": false, + "location": { + "lat": 40.8435906, + "lng": -73.8360552 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ7WHfHVKLwokRGB9Q__vhY18", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c28b521ddf61ed:0x5f63e1fbff501f18", + "cid": "6873585928733990680", + "reviewsCount": 398, + "imagesCount": 196, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/VJl_nGToR40?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 9 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 9 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 9 PM" + }, + { + "day": "Thursday", + "hours": "12 to 9 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "12–10 PM" + }, + { + "day": "Tuesday", + "hours": "12–10 PM" + }, + { + "day": "Wednesday", + "hours": "12–10 PM" + }, + { + "day": "Thursday", + "hours": "12–10 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "2–9:30 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "12–10 PM" + }, + { + "day": "Tuesday", + "hours": "12–10 PM" + }, + { + "day": "Wednesday", + "hours": "12–10 PM" + }, + { + "day": "Thursday", + "hours": "12–10 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "2–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free parking lot": true + }, + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 12, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr1oPmQsMBxsBmvY8pRGxGthRlMGP0xNpS3mY4YvgaN_nIx4XvO6WcnPoN52wcbD1YJKxV4YgcOSbedMmxUfsdsduYCJxVZwT03U5awD0f_tHBescwlzjBvD3X7h4VpZc4YHGVllQ=w408-h306-k-no", + "kgmid": "/g/11b6q5ddy9" +}, +{ + "title": "Sac's Place", + "description": "Family-run local mainstay serving up crispy coal-oven pizzas plus pastas in a simple setting.", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "35-11 35th Ave, Astoria, NY 11106", + "neighborhood": "Astoria", + "street": "35-11 35th Ave", + "city": "Astoria", + "postalCode": "11106", + "state": "New York", + "countryCode": "US", + "website": "http://sacsplace.com/", + "phone": "(718) 204-5002", + "phoneUnformatted": "+17182045002", + "claimThisBusiness": false, + "location": { + "lat": 40.7567144, + "lng": -73.9246701 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ9yi_ITdfwokR-NlVT6D9tMw", + "categories": [ + "Italian restaurant", + "Bar", + "Fine dining restaurant", + "Delivery Restaurant", + "Takeout Restaurant", + "Pizza delivery", + "Pizza restaurant", + "Pizza Takeout", + "Restaurant" + ], + "fid": "0x89c25f3721bf28f7:0xccb4fda04f55d9f8", + "cid": "14750693544512838136", + "reviewsCount": 561, + "imagesCount": 405, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.824Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/pihn6Zlu3tA?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Takeout": [ + { + "day": "Monday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Friday", + "hours": "11:30 AM–10:45 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM–10:45 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM–10 PM" + } + ], + "Delivery": [ + { + "day": "Monday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Tuesday", + "hours": "5–11 PM" + }, + { + "day": "Wednesday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Friday", + "hours": "11:30 AM–10:45 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM–10:45 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM–10 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great wine list": true + }, + { + "Live music": true + }, + { + "Serves local specialty": true + }, + { + "Sports": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Quick bite": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + }, + { + "Usually somewhat difficult to find a space": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 13, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipP47RQWdWHoLaIUXKuoUq-QKeU3JbkmczNACeuq=w408-h271-k-no", + "kgmid": "/g/11b6bdn4fn" +}, +{ + "title": "Vesta Trattoria & Wine Bar", + "description": "Pizza & Italian comfort food with a sustainable, seasonal bent are served at this neighborhood spot.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "21-02 30th Ave., Astoria, NY 11102", + "neighborhood": "Astoria", + "street": "21-02 30th Ave.", + "city": "Astoria", + "postalCode": "11102", + "state": "New York", + "countryCode": "US", + "website": "http://vestavino.com/", + "phone": "(718) 545-5550", + "phoneUnformatted": "+17185455550", + "claimThisBusiness": false, + "location": { + "lat": 40.7696576, + "lng": -73.9277667 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJGc-LBklfwokR4pON1Ije2Ls", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25f49068bcf19:0xbbd8de88d48d93e2", + "cid": "13535813359324992482", + "reviewsCount": 613, + "imagesCount": 412, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/bG3Q72M7BBs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12:30 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "5 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "5 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12:30 to 10 PM" + }, + { + "day": "Friday", + "hours": "12:30 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Organic dishes": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Usually somewhat difficult to find a space": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 14, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4no6AANqK6HPbmJVfZ3-foZqak33PNLbnO8XUq5pJMlh2BOKG0zgeUxvYrFgOwBTGZN1S9EpmyzGmwJuNmQa8rid0C8awy_J8zLV3ipfH1-G4kdYPr4e8zu-lLQlfHy76-pOtc0cVQ=w408-h544-k-no", + "kgmid": "/g/1thct7ty" +}, +{ + "title": "Armondo's Italian Resturant", + "description": "A husband-&-wife team runs this eatery that offers Italian classics in serene dark-wood environs.", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "73-16 Northern Blvd, Jackson Heights, NY 11372", + "neighborhood": "Jackson Heights", + "street": "73-16 Northern Blvd", + "city": "Jackson Heights", + "postalCode": "11372", + "state": "New York", + "countryCode": "US", + "website": "http://www.armondositalian.com/", + "phone": "(718) 898-0113", + "phoneUnformatted": "+17188980113", + "claimThisBusiness": false, + "location": { + "lat": 40.754547, + "lng": -73.8931029 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJt_uMBQdfwokRHQ0oIx2-9XI", + "categories": [ + "Italian restaurant", + "Restaurant" + ], + "fid": "0x89c25f07058cfbb7:0x72f5be1d23280d1d", + "cid": "8283736121971051805", + "reviewsCount": 248, + "imagesCount": 214, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "4 to 11 PM" + }, + { + "day": "Saturday", + "hours": "1 to 11 PM" + }, + { + "day": "Sunday", + "hours": "1 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free parking lot": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 15, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrQmHNdTMyiY2edHwr86F2UAeYd5s8eh3hMCYEC3kf9pEjsM2-t0VgQUy8D0neq_GaK1igswyl_9KWf_4TfpG7VLy5IdxZzJ4pgRQ0j9ngWyEn2VXSrK7KdMU8ie0eAZ6DTUIwO=w408-h544-k-no", + "kgmid": "/g/1tdzmgrl" +}, +{ + "title": "Giovanna's Kitchen, Inc", + "price": "$20–30", + "categoryName": "Italian restaurant", + "address": "12-40 Clintonville St, Whitestone, NY 11357", + "neighborhood": "Whitestone", + "street": "12-40 Clintonville St", + "city": "Whitestone", + "postalCode": "11357", + "state": "New York", + "countryCode": "US", + "website": "http://toastab.com/giovannaskitchennyc", + "phone": "(718) 767-4444", + "phoneUnformatted": "+17187674444", + "claimThisBusiness": false, + "location": { + "lat": 40.7900774, + "lng": -73.8121074 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ_evdIQ6LwokRDeECmeiUAmM", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c28b0e21ddebfd:0x630294e89902e10d", + "cid": "7134428486428713229", + "reviewsCount": 36, + "imagesCount": 24, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Tuesday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Wednesday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Thursday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Friday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Saturday", + "hours": "7 AM to 8 PM" + }, + { + "day": "Sunday", + "hours": "7 AM to 8 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Quick bite": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + } + ], + "Children": [ + { + "Good for kids": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 16, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npb7qoTpaWmWECfT9t8GsIEqyRCIvjPVefgR6k50s0QTzbIR8mHSuczkAYhKqg1q2tVw3qHzkbQiVZO2RYlSa54tzPPXDXaR2vfEbdM-ma_4TBsq7ykkgG0OfqleWa1TZfowM8=w408-h306-k-no", + "kgmid": "/g/11n5g8jl99" +}, +{ + "title": "Trattoria 35", + "description": "Intimate restaurant featuring wood-fired pizzas & traditional Italian cuisine in a warm atmosphere.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "213-15 35th Ave, Bayside, NY 11361", + "neighborhood": "Bayside", + "street": "213-15 35th Ave", + "city": "Bayside", + "postalCode": "11361", + "state": "New York", + "countryCode": "US", + "website": "http://www.trattoria35.com/", + "phone": "(718) 352-3800", + "phoneUnformatted": "+17183523800", + "claimThisBusiness": false, + "location": { + "lat": 40.7690275, + "lng": -73.7742846 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJv58SiHSKwokRhxrcu3o_zfw", + "categories": [ + "Italian restaurant", + "Restaurant" + ], + "fid": "0x89c28a7488129fbf:0xfccd3f7abbdc1a87", + "cid": "18216285864153848455", + "reviewsCount": 1136, + "imagesCount": 624, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Lunch reservations recommended": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "On-site parking": true + }, + { + "Usually plenty of parking": true + }, + { + "Valet parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 17, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npi0pLEwAzTeFdPjr_QHrgJJWKHMpN3Qo-faeEb6nC6E8nt6myEZHl0AfcRsdvg7Lzu-_Sk_pOdewDXPAXDIP0O9XO1Vw_L_UD3WaQyEnuBNFJmSPfTsfHcQIySE4sibLnGUNzF=w408-h306-k-no", + "kgmid": "/g/11b6dm_gc1" +}, +{ + "title": "Via Trenta Osteria & Wine Bar", + "description": "Gourmet pizza & artisinal pasta paired with wine, beer & cocktails in a warm, refined setting.", + "price": "$50–100", + "categoryName": "Italian restaurant", + "address": "36-19 30th Ave., Astoria, NY 11103", + "neighborhood": "Astoria", + "street": "36-19 30th Ave.", + "city": "Astoria", + "postalCode": "11103", + "state": "New York", + "countryCode": "US", + "website": "http://viatrenta.com/", + "phone": "(718) 545-2090", + "phoneUnformatted": "+17185452090", + "claimThisBusiness": false, + "location": { + "lat": 40.7648674, + "lng": -73.9165828 + }, + "totalScore": 4.3, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJCyZ3Zj9fwokRu-73fD6aIWA", + "categories": [ + "Italian restaurant", + "Catering food and drink supplier", + "Cocktail bar", + "Delivery service", + "Northern Italian restaurant", + "Pasta shop", + "Pizza restaurant", + "Seafood restaurant", + "Wine bar", + "Wine cellar" + ], + "fid": "0x89c25f3f6677260b:0x60219a3e7cf7eebb", + "cid": "6926987295047806651", + "reviewsCount": 618, + "imagesCount": 464, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/yb-AoyP5i6g?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10:30 PM" + } + ], + "additionalOpeningHours": { + "Happy hours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–7 PM" + }, + { + "day": "Wednesday", + "hours": "12–7 PM" + }, + { + "day": "Thursday", + "hours": "12–7 PM" + }, + { + "day": "Friday", + "hours": "12–6 PM" + }, + { + "day": "Saturday", + "hours": "12–6 PM" + }, + { + "day": "Sunday", + "hours": "12–6 PM" + } + ], + "Delivery": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–9:30 PM" + }, + { + "day": "Wednesday", + "hours": "12–9:30 PM" + }, + { + "day": "Thursday", + "hours": "12–9:30 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–9:30 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–4 PM" + }, + { + "day": "Wednesday", + "hours": "12–4 PM" + }, + { + "day": "Thursday", + "hours": "12–4 PM" + }, + { + "day": "Friday", + "hours": "12–4 PM" + }, + { + "day": "Saturday", + "hours": "12–3:30 PM" + }, + { + "day": "Sunday", + "hours": "12–3:30 PM" + } + ], + "Kitchen": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–10 PM" + }, + { + "day": "Wednesday", + "hours": "12–10 PM" + }, + { + "day": "Thursday", + "hours": "12–10 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Online service hours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–10 PM" + }, + { + "day": "Wednesday", + "hours": "12–10 PM" + }, + { + "day": "Thursday", + "hours": "12–10 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Lunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "12–4 PM" + }, + { + "day": "Wednesday", + "hours": "12–4 PM" + }, + { + "day": "Thursday", + "hours": "12–4 PM" + }, + { + "day": "Friday", + "hours": "12–4 PM" + }, + { + "day": "Saturday", + "hours": "12–4 PM" + }, + { + "day": "Sunday", + "hours": "12–4 PM" + } + ], + "Dinner": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "4–10:30 PM" + }, + { + "day": "Wednesday", + "hours": "4–10:30 PM" + }, + { + "day": "Thursday", + "hours": "4–10:30 PM" + }, + { + "day": "Friday", + "hours": "4–11 PM" + }, + { + "day": "Saturday", + "hours": "4–11 PM" + }, + { + "day": "Sunday", + "hours": "4–10:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Fireplace": true + }, + { + "Great cocktails": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 18, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipNhjVO1_j-lL6u7-kml_S7zaTtw7Cvynih8JbJq=w426-h240-k-no", + "kgmid": "/g/1tcygcxj" +}, +{ + "title": "Fiorentina Steakhouse", + "price": "$50–100", + "categoryName": "Steak house", + "address": "3617 E Tremont Ave, Bronx, NY 10465", + "neighborhood": "East Bronx", + "street": "3617 E Tremont Ave", + "city": "Bronx", + "postalCode": "10465", + "state": "New York", + "countryCode": "US", + "website": "http://www.fiorentina-steakhouse.com/", + "phone": "(718) 812-1112", + "phoneUnformatted": "+17188121112", + "claimThisBusiness": false, + "location": { + "lat": 40.8287124, + "lng": -73.8240553 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ5znu7hSLwokRLpLh1Z8dXa0", + "categories": [ + "Steak house" + ], + "fid": "0x89c28b14eeee39e7:0xad5d1d9fd5e1922e", + "cid": "12492173513720959534", + "reviewsCount": 293, + "imagesCount": 239, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/mi7cW2niy_8?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 9:30 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 9:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 9:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 9:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Takeout": true + }, + { + "Dine-in": true + }, + { + "Delivery": false + } + ], + "Highlights": [ + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free parking lot": true + }, + { + "Free street parking": true + }, + { + "Paid street parking": true + }, + { + "Usually plenty of parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 19, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipPCac3DsFdUls470WBzgt5WweIVg5NX90ga7Y2T=w408-h362-k-no", + "kgmid": "/g/11sxgdyn_x" +}, +{ + "title": "Figlia", + "price": "$30–50", + "categoryName": "Italian restaurant", + "address": "23-02 31st St, Queens, NY 11105", + "neighborhood": "Astoria", + "street": "23-02 31st St", + "city": "Queens", + "postalCode": "11105", + "state": "New York", + "countryCode": "US", + "website": "http://figlianyc.com/", + "phone": "(347) 730-5117", + "phoneUnformatted": "+13477305117", + "claimThisBusiness": false, + "location": { + "lat": 40.7744867, + "lng": -73.9132566 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJS5UFORVfwokRKG9pzggm8Cg", + "categories": [ + "Italian restaurant", + "Pizza restaurant" + ], + "fid": "0x89c25f153905954b:0x28f02608ce696f28", + "cid": "2949899575192284968", + "reviewsCount": 194, + "imagesCount": 123, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:23.825Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "5 to 10 PM" + }, + { + "day": "Thursday", + "hours": "5 to 10 PM" + }, + { + "day": "Friday", + "hours": "5 to 10 PM" + }, + { + "day": "Saturday", + "hours": "4 to 10 PM" + }, + { + "day": "Sunday", + "hours": "4 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 20, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipM8RvgWvfOTMbTWvO5C2ASH9xt5D8krXxhytZxD=w408-h271-k-no", + "kgmid": "/g/11tjmbwtcx" +}, +{ + "title": "Adrienne's NYC", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "25 Van Brunt Rd, Queens, NY 11693", + "neighborhood": "Broad Channel", + "street": "25 Van Brunt Rd", + "city": "Queens", + "postalCode": "11693", + "state": "New York", + "countryCode": "US", + "website": "http://adriennes-nyc.com/", + "phone": "(718) 945-2525", + "phoneUnformatted": "+17189452525", + "claimThisBusiness": false, + "location": { + "lat": 40.5973398, + "lng": -73.819623 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJe4j4G9ZpwokR8CBPcLU44Sk", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c269d61bf8887b:0x29e138b5704f20f0", + "cid": "3017755577239412976", + "reviewsCount": 321, + "reviewsDistribution": { + "oneStar": 9, + "twoStar": 2, + "threeStar": 14, + "fourStar": 21, + "fiveStar": 275 + }, + "imagesCount": 408, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.657Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/wK4TxdpdbhA?source=pa&opi=79508299&hl=en-US&gei=L4TNaM-GMs6IwbkPreGkqAc&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaO6pOJXEp84PkvmOgAM.1758299183708.1%26hl%3Den%26pb%3D!4m12!1m3!1d48474.59250524153!2d-73.70638644734598!3d40.59321488768417!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaO6pOJXEp84PkvmOgAM!2s1i:0,t:20588,p:LoTNaO6pOJXEp84PkvmOgAM:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 9 PM" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4 to 9 PM" + }, + { + "day": "Friday", + "hours": "4 to 10 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 9 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "4–9 PM" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4–9 PM" + }, + { + "day": "Friday", + "hours": "4–10 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM–9 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "11 AM–2:30 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–2:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Live music": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + }, + { + "Usually a wait": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Has changing table(s)": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free parking lot": true + }, + { + "Free street parking": true + }, + { + "Usually plenty of parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 21, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipORPuVEPXpaWRvRkdl1wMzXeiIUbDCRC4oy8fj5=w408-h271-k-no", + "kgmid": "/g/11kq1gmr83" +}, +{ + "title": "La Pecora Bianca UES", + "description": "Stylish, bright eatery featuring market-driven Italian cuisine, regional wines & apéritifs.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1562 2nd Ave, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "1562 2nd Ave", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "https://www.lapecorabianca.com/", + "phone": "(212) 300-9840", + "phoneUnformatted": "+12123009840", + "claimThisBusiness": false, + "location": { + "lat": 40.7746825, + "lng": -73.9538686 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ9YlInwlZwokRDb-WWDZkU1s", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c259099f4889f5:0x5b5364365896bf0d", + "cid": "6580713665095712525", + "reviewsCount": 1926, + "reviewsDistribution": { + "oneStar": 26, + "twoStar": 18, + "threeStar": 27, + "fourStar": 127, + "fiveStar": 1728 + }, + "imagesCount": 479, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/AuNWrcQ6pNQ?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "11:30 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM to 10:30 PM" + }, + { + "day": "Friday", + "hours": "11:30 AM to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "10 AM to 10:30 PM" + }, + { + "day": "Sunday", + "hours": "10 AM to 9:30 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Locals": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 21, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipPAKFjb04AGunRve4ZOvo8eSCYT1aC3Q2XLfUSs=w408-h612-k-no", + "kgmid": "/g/11s861srkf" +}, +{ + "title": "L'Osteria", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1219 Lexington Ave, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "1219 Lexington Ave", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "http://www.losterianyc.com/", + "phone": "(646) 524-6294", + "phoneUnformatted": "+16465246294", + "claimThisBusiness": false, + "location": { + "lat": 40.777137, + "lng": -73.957094 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJBRyejVJZwokReyLI3g24DLU", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c259528d9e1c05:0xb50cb80ddec8227b", + "cid": "13046004590297227899", + "reviewsCount": 327, + "reviewsDistribution": { + "oneStar": 9, + "twoStar": 1, + "threeStar": 8, + "fourStar": 34, + "fiveStar": 275 + }, + "imagesCount": 271, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/oV6l_i5WrYw?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 3:30 PM, 5 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Locals": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 22, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrF8x6TbM_FIS6Kj7XkEY27pONqv3Rhr19hZNa5C9rF_0jvPxMHKAmvAaf6ZEmHncajR7Z3nkPkzGN442xSlPqf-JZdjqmEuFmyWH_cO0qKlcHb64H3Pf_B6ZjVsdZPMf6xFt2LLg=w408-h306-k-no", + "kgmid": "/g/11s0pvy0z5" +}, +{ + "title": "da Adriano", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1198 1st Ave, New York, NY 10065", + "neighborhood": "Manhattan", + "street": "1198 1st Ave", + "city": "New York", + "postalCode": "10065", + "state": "New York", + "countryCode": "US", + "website": "http://daadriano.com/", + "phone": "(646) 371-9412", + "phoneUnformatted": "+16463719412", + "claimThisBusiness": false, + "location": { + "lat": 40.7631126, + "lng": -73.9591556 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJU0dUbtNZwokRvLMgVDaVuA0", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c259d36e544753:0xdb895365420b3bc", + "cid": "988704178780025788", + "reviewsCount": 277, + "reviewsDistribution": { + "oneStar": 4, + "twoStar": 6, + "threeStar": 4, + "fourStar": 17, + "fiveStar": 246 + }, + "imagesCount": 244, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/-vydkfxJaoI?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "7:30 AM to 9:30 PM" + }, + { + "day": "Tuesday", + "hours": "7:30 AM to 9:30 PM" + }, + { + "day": "Wednesday", + "hours": "7:30 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "7:30 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "7:30 AM to 10 PM" + }, + { + "day": "Saturday", + "hours": "7:30 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "7:30 AM to 9:30 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Halal food": true + }, + { + "Happy hour drinks": true + }, + { + "Organic dishes": true + }, + { + "Salad bar": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Breakfast": true + }, + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 23, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCrOrz-H9nSJWiFUV49NnwyfhvSvB3Jao2pMfScP54e3PCdVkBn5VuCWyw8avF-Ruvxma4NJ3HzAIRL7HF1uFPl70hTXealM0kP9HkkmbY3UOf3JheBiNC6pNiXDj2XyhLLWAL=w408-h306-k-no", + "kgmid": "/g/11stj6v3jf" +}, +{ + "title": "Donna Margherita", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1304A 2nd Ave, New York, NY 10065", + "neighborhood": "Manhattan", + "street": "1304A 2nd Ave", + "city": "New York", + "postalCode": "10065", + "state": "New York", + "countryCode": "US", + "website": "https://www.donnamargheritany.com/", + "phone": "(212) 772-1169", + "phoneUnformatted": "+12127721169", + "claimThisBusiness": false, + "location": { + "lat": 40.7664653, + "lng": -73.9598606 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ_yzV_ulYwokRYpG_tbXMpqw", + "categories": [ + "Italian restaurant", + "Delivery Restaurant" + ], + "fid": "0x89c258e9fed52cff:0xaca6ccb5b5bf9162", + "cid": "12440856101467951458", + "reviewsCount": 568, + "reviewsDistribution": { + "oneStar": 11, + "twoStar": 13, + "threeStar": 17, + "fourStar": 40, + "fiveStar": 487 + }, + "imagesCount": 527, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "1 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "From the business": [ + { + "Identifies as women-owned": true + } + ], + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Beer": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Healthy options": true + }, + { + "Organic dishes": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + } + ], + "Parking": [ + { + "Paid parking lot": true + }, + { + "Paid street parking": true + }, + { + "Usually somewhat difficult to find a space": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 24, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr2Vxqr1rX1TVl9Hnk1mfRF-w1eAyzPn8kNOFuMhYOLZ8E3i640Y9bLfNzVRMpB9Ulcj-3jX3oMTYt6gTIKveYVeYvMpcQFF79C-LNPXpdAP2NGCfaHIiSOcsJ2PDoJihy82D0u=w408-h544-k-no", + "kgmid": "/g/11g7_5xcnb" +}, +{ + "title": "Pastitalia", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "264 Lenox Ave, New York, NY 10027", + "neighborhood": "Manhattan", + "street": "264 Lenox Ave", + "city": "New York", + "postalCode": "10027", + "state": "New York", + "countryCode": "US", + "website": "https://www.pastitaliaus.com/", + "phone": "(917) 522-3434", + "phoneUnformatted": "+19175223434", + "claimThisBusiness": false, + "location": { + "lat": 40.8065175, + "lng": -73.9459371 + }, + "totalScore": 4.9, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJW1uxcSr3wokRhxS_Ai4H8GU", + "categories": [ + "Italian restaurant", + "Catering food and drink supplier", + "Coffee shop", + "Espresso bar", + "Italian grocery store", + "Pasta shop", + "Lunch restaurant", + "Pastry shop" + ], + "fid": "0x89c2f72a71b15b5b:0x65f0072e02bf1487", + "cid": "7345378886437246087", + "reviewsCount": 248, + "reviewsDistribution": { + "oneStar": 1, + "twoStar": 0, + "threeStar": 3, + "fourStar": 12, + "fiveStar": 232 + }, + "imagesCount": 478, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Saturday", + "hours": "9:30 AM to 9:30 PM" + }, + { + "day": "Sunday", + "hours": "9:30 AM to 9:30 PM" + } + ], + "additionalOpeningHours": { + "Lunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Thursday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Friday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Saturday", + "hours": "9:30 AM–8:30 PM" + }, + { + "day": "Sunday", + "hours": "9:30 AM–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "From the business": [ + { + "Identifies as women-owned": true + } + ], + "Service options": [ + { + "Delivery": true + }, + { + "In-store pickup": true + }, + { + "In-store shopping": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Popular for": [ + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Dining options": [ + { + "Counter service": true + }, + { + "Dessert": true + }, + { + "Seating": true + } + ], + "Amenities": [ + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + } + ], + "Crowd": [ + { + "Family-friendly": true + } + ], + "Planning": [ + { + "Quick visit": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 25, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npanH_kxwfPB_5GW2tgnFrUvmxeGJeRwc2ySsQS3p0OBmj3xWFuIDr_9ZtqbjxYadMgNOCSDeUmBgyXZTagB22MhxJShdnQ7oh4wO6cJ-fC3L9gRIOI9lJIqaDZwjcMgc-uuw_hcEqvrLic=w408-h544-k-no", + "kgmid": "/g/11q46pmj5r" +}, +{ + "title": "Masseria East", + "description": "Straightforward Italian fare from a longtime local standby.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1404 3rd Ave, New York, NY 10075", + "neighborhood": "Manhattan", + "street": "1404 3rd Ave", + "city": "New York", + "postalCode": "10075", + "state": "New York", + "countryCode": "US", + "website": "http://www.masseriaeast.com/", + "phone": "(212) 535-3520", + "phoneUnformatted": "+12125353520", + "claimThisBusiness": false, + "location": { + "lat": 40.77491, + "lng": -73.957163 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJfUbyZ75YwokRMi96wHTiLBA", + "categories": [ + "Italian restaurant", + "Fine dining restaurant", + "Delivery Restaurant", + "Takeout Restaurant", + "Mediterranean restaurant", + "Restaurant", + "Seafood restaurant", + "Vegetarian restaurant", + "Wine bar" + ], + "fid": "0x89c258be67f2467d:0x102ce274c07a2f32", + "cid": "1165555394655432498", + "reviewsCount": 313, + "reviewsDistribution": { + "oneStar": 9, + "twoStar": 6, + "threeStar": 12, + "fourStar": 30, + "fiveStar": 256 + }, + "imagesCount": 306, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/WQUuhqHMVZ8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Saturday", + "hours": "12 to 3 PM, 5 to 9:30 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9:30 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "12–2:30 PM" + }, + { + "day": "Tuesday", + "hours": "12–2:30 PM" + }, + { + "day": "Wednesday", + "hours": "12–2:30 PM" + }, + { + "day": "Thursday", + "hours": "12–2:30 PM" + }, + { + "day": "Friday", + "hours": "12–2:30 PM" + }, + { + "day": "Saturday", + "hours": "12–2:30 PM" + }, + { + "day": "Sunday", + "hours": "12–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Organic dishes": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Counter service": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Cozy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Parking": [ + { + "Free parking lot": true + }, + { + "Usually plenty of parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 26, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipMpOy2JiLh2USfvFc-vyIHWgXLz3Lphothp7aL4=w408-h276-k-no", + "kgmid": "/g/1vnnk9rm" +}, +{ + "title": "Bigoi Venezia", + "description": "Hearty, housemade noodles in traditional Italian sauces offered in a snug counter-serve eatery.", + "price": "$", + "categoryName": "Italian restaurant", + "address": "1415 2nd Ave, New York, NY 10021", + "neighborhood": "Manhattan", + "street": "1415 2nd Ave", + "city": "New York", + "postalCode": "10021", + "state": "New York", + "countryCode": "US", + "website": "http://www.bigoivenezia.com/", + "phone": "(917) 262-0680", + "phoneUnformatted": "+19172620680", + "claimThisBusiness": false, + "location": { + "lat": 40.7700264, + "lng": -73.9577755 + }, + "totalScore": 4.8, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJgdnYQcBYwokRDEGzKagrEfE", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c258c041d8d981:0xf1112ba829b3410c", + "cid": "17370713238998827276", + "reviewsCount": 757, + "reviewsDistribution": { + "oneStar": 16, + "twoStar": 7, + "threeStar": 16, + "fourStar": 55, + "fiveStar": 663 + }, + "imagesCount": 369, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Comfort food": true + }, + { + "Quick bite": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + } + ], + "Amenities": [ + { + "Restroom": false + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + } + ], + "Crowd": [ + { + "Locals": true + } + ], + "Planning": [ + { + "Accepts reservations": false + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Kids' menu": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 27, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipOnno3KFrA4bCUoUWAn1syS_a-XCD8T_L4h1rc1=w408-h408-k-no", + "kgmid": "/g/11g9n3t4gt" +}, +{ + "title": "Fumo Harlem", + "description": "Bright, modern neighborhood Italian destination serving upmarket pizza, pasta & cocktails.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1600 Amsterdam Ave, New York, NY 10031", + "neighborhood": "Manhattan", + "street": "1600 Amsterdam Ave", + "city": "New York", + "postalCode": "10031", + "state": "New York", + "countryCode": "US", + "website": "http://fumorestaurant.com/", + "phone": "(646) 692-6675", + "phoneUnformatted": "+16466926675", + "claimThisBusiness": false, + "location": { + "lat": 40.8214251, + "lng": -73.9506357 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJLe70p2X2wokReDA-X8LGqZE", + "categories": [ + "Italian restaurant", + "Pizza restaurant" + ], + "fid": "0x89c2f665a7f4ee2d:0x91a9c6c25f3e3078", + "cid": "10496138944687517816", + "reviewsCount": 1829, + "reviewsDistribution": { + "oneStar": 79, + "twoStar": 41, + "threeStar": 88, + "fourStar": 368, + "fiveStar": 1253 + }, + "imagesCount": 1220, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.726Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/j4TAgWiPxBg?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 10:30 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "11:30 AM–9:30 PM" + }, + { + "day": "Tuesday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Wednesday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Friday", + "hours": "11:30 AM–10:30 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM–10:30 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM–9:30 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "11:30 AM–10 PM" + }, + { + "day": "Tuesday", + "hours": "11:30 AM–10:30 PM" + }, + { + "day": "Wednesday", + "hours": "11:30 AM–10:30 PM" + }, + { + "day": "Thursday", + "hours": "11:30 AM–10:30 PM" + }, + { + "day": "Friday", + "hours": "11:30 AM–11 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM–11 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM–10 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "College students": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Brunch reservations recommended": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 28, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noxn3BXjD-VrGWsESjzfnAMqQvj7MO7f9CdxhUpjDh2QXMSh12x_D-VtAqUbm2CRKHxCbMuJgWl_AtcTGdxBeOrfWKXQR_m2Nrj3-w5KIWDyZWKk1wt6YOJemgWDxJZp2PehuNK=w408-h306-k-no", + "kgmid": "/g/11cm3nhnr6" +}, +{ + "title": "Briciola Harlem", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "398 W 145th St, New York, NY 10031", + "neighborhood": "Manhattan", + "street": "398 W 145th St", + "city": "New York", + "postalCode": "10031", + "state": "New York", + "countryCode": "US", + "website": "https://briciolawinebar.com/", + "phone": "(212) 315-3315", + "phoneUnformatted": "+12123153315", + "claimThisBusiness": false, + "location": { + "lat": 40.8240899, + "lng": -73.9452634 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ2054MAz3wokR13Q2g5LfV_E", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c2f70c30784edb:0xf157df92833674d7", + "cid": "17390614306474063063", + "reviewsCount": 206, + "reviewsDistribution": { + "oneStar": 10, + "twoStar": 9, + "threeStar": 5, + "fourStar": 14, + "fiveStar": 168 + }, + "imagesCount": 335, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Tuesday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Wednesday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Thursday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Friday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Saturday", + "hours": "12 PM to 12 AM" + }, + { + "day": "Sunday", + "hours": "12 PM to 12 AM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Parking": [ + { + "Usually difficult to find a space": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 29, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqlKu1vBUzXiHX7rOWUo3L6-tsEFRasfyBqE7YHv-kAGrJPF1Q-yrvtGp7EM5MZ4MxawEkHGgrhjmeSHPXtEDU9dMBCJJfQ2CJquJoTc-9MUndj-LtfV03kd0GP2fRqV57NK8CLoQ=w408-h306-k-no", + "kgmid": "/g/11t_m1qd_p" +}, +{ + "title": "La Voglia NYC", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1645 3rd Ave, New York, NY 10128", + "neighborhood": "Manhattan", + "street": "1645 3rd Ave", + "city": "New York", + "postalCode": "10128", + "state": "New York", + "countryCode": "US", + "website": "http://www.lavoglianyc.com/", + "phone": "(212) 417-0181", + "phoneUnformatted": "+12124170181", + "claimThisBusiness": false, + "location": { + "lat": 40.7826745, + "lng": -73.9508638 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJ2Z_EuD9ZwokRB_t-ovxEzxI", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c2593fb8c49fd9:0x12cf44fca27efb07", + "cid": "1355377864710486791", + "reviewsCount": 410, + "reviewsDistribution": { + "oneStar": 32, + "twoStar": 13, + "threeStar": 12, + "fourStar": 40, + "fiveStar": 313 + }, + "imagesCount": 399, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/rYAZF2X_o_Q?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 11 PM" + } + ], + "additionalOpeningHours": { + "Lunch": [ + { + "day": "Monday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Thursday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Friday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Saturday", + "hours": "Closed" + }, + { + "day": "Sunday", + "hours": "Closed" + } + ], + "Happy hours": [ + { + "day": "Monday", + "hours": "4–7 PM" + }, + { + "day": "Tuesday", + "hours": "9 AM–7 PM" + }, + { + "day": "Wednesday", + "hours": "4–7 PM" + }, + { + "day": "Thursday", + "hours": "4–7 PM" + }, + { + "day": "Friday", + "hours": "4–7 PM" + }, + { + "day": "Saturday", + "hours": "4–7 PM" + }, + { + "day": "Sunday", + "hours": "4–7 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "11 AM–3:30 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–3:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Organic dishes": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Paid street parking": true + }, + { + "Usually somewhat difficult to find a space": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 30, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrrjR5BdMAcOnsqWdiXtAE9JBH6qeDUcyIJiKWSU0xdIB2BJ0pxjBClHl7S2Lzclgv60X4fPenp321DycWf0K0qedSM0f1l52UOOCTYKJQeqbDdalTU3_W1x508oqzFL0qE-AYc=w426-h240-k-no", + "kgmid": "/g/11shvf20lq" +}, +{ + "title": "Lex Restaurant", + "description": "Understated eatery turning out Italian & American dishes, from red-sauce standards to grilled steak.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1370 Lexington Ave, New York, NY 10128", + "neighborhood": "Manhattan", + "street": "1370 Lexington Ave", + "city": "New York", + "postalCode": "10128", + "state": "New York", + "countryCode": "US", + "website": "http://lexrestaurant.com/", + "phone": "(212) 860-5903", + "phoneUnformatted": "+12128605903", + "claimThisBusiness": false, + "location": { + "lat": 40.7825, + "lng": -73.9536111 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJRS-PgqRYwokRg6Ej6VCpx2o", + "categories": [ + "Italian restaurant", + "Bar", + "Brunch restaurant", + "Lunch restaurant", + "Restaurant" + ], + "fid": "0x89c258a4828f2f45:0x6ac7a950e923a183", + "cid": "7694304653359686019", + "reviewsCount": 325, + "reviewsDistribution": { + "oneStar": 9, + "twoStar": 2, + "threeStar": 12, + "fourStar": 66, + "fiveStar": 236 + }, + "imagesCount": 261, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/ezPg7DUEY3o?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Sports": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Organic dishes": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 31, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipNrsR0F-0D62XUo-ow5sgTrcX4QDaKT1OIJTYHJ=w408-h408-k-no", + "kgmid": "/g/1tfryd4_" +}, +{ + "title": "A&S Cucina", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "610 Exterior St Floor 4, Bronx, NY 10451", + "neighborhood": "West Bronx", + "street": "610 Exterior St Floor 4", + "city": "Bronx", + "postalCode": "10451", + "state": "New York", + "countryCode": "US", + "phone": "(718) 534-0880", + "phoneUnformatted": "+17185340880", + "claimThisBusiness": false, + "location": { + "lat": 40.8205131, + "lng": -73.9301496 + }, + "totalScore": 5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJU2-XmLX1wokRQt2Kd8NsckM", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c2f5b598976f53:0x43726cc3778add42", + "cid": "4860066534666198338", + "reviewsCount": 16, + "reviewsDistribution": { + "oneStar": 0, + "twoStar": 0, + "threeStar": 0, + "fourStar": 0, + "fiveStar": 16 + }, + "imagesCount": 65, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 7 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 8 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 8 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 9 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 9:30 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 8 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Offerings": [ + { + "Comfort food": true + }, + { + "Quick bite": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + } + ], + "Atmosphere": [ + { + "Casual": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + } + ], + "Parking": [ + { + "Paid parking lot": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 32, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolHXk24Kk3t-tfUxLdPBH3NZQkulvACP2H6ftRHJEPkQonCc2Eqf9eO9dyTklFGpe-ostrsL8VQ-IQOHLEah3rlLOEZvIX1697vE2y1ZXwF3zvApUVbHno6-Hubf3A8SVw_frQaA=w408-h544-k-no", + "kgmid": "/g/11yc58qq1s" +}, +{ + "title": "L’incontro by Rocco", + "description": "Upscale Italian restaurant with a special-occasion setting & a long list of specials.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1572 2nd Ave, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "1572 2nd Ave", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "https://www.lincontrobyrocco.com/", + "phone": "(718) 721-3532", + "phoneUnformatted": "+17187213532", + "claimThisBusiness": false, + "location": { + "lat": 40.7749695, + "lng": -73.9535474 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJFb-9qGdfwokRi14Wngdo12o", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c25f67a8bdbf15:0x6ad768079e165e8b", + "cid": "7698736469939478155", + "reviewsCount": 1444, + "reviewsDistribution": { + "oneStar": 30, + "twoStar": 14, + "threeStar": 39, + "fourStar": 145, + "fiveStar": 1216 + }, + "imagesCount": 1006, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/mSOOTQsITkA?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "4:30 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "4:30 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "4:30 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "4:30 to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "4:30 to 10:30 PM" + }, + { + "day": "Sunday", + "hours": "4:30 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Organic dishes": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually plenty of parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 33, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipMF8b8zEt6hh5qSvd3RId1OHMVorvXGkS98vMcy=w426-h240-k-no", + "kgmid": "/g/1td2vts7" +}, +{ + "title": "Bono Trattoria", + "description": "Italian dishes & pizza served in cool industrial digs with a tin ceiling, brick oven & rustic bar.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "3658 Broadway, New York, NY 10031", + "neighborhood": "Manhattan", + "street": "3658 Broadway", + "city": "New York", + "postalCode": "10031", + "state": "New York", + "countryCode": "US", + "website": "http://www.bononyc.com/", + "phone": "(646) 682-9249", + "phoneUnformatted": "+16466829249", + "claimThisBusiness": false, + "location": { + "lat": 40.830224, + "lng": -73.947329 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJNbJQ54f2wokRPxHl6aTGio0", + "categories": [ + "Italian restaurant", + "Pizza restaurant" + ], + "fid": "0x89c2f687e750b235:0x8d8ac6a4e9e5113f", + "cid": "10199182717734949183", + "reviewsCount": 940, + "reviewsDistribution": { + "oneStar": 17, + "twoStar": 10, + "threeStar": 42, + "fourStar": 194, + "fiveStar": 677 + }, + "imagesCount": 703, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "4 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "4 to 10 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 10 PM" + } + ], + "additionalOpeningHours": { + "Dinner": [ + { + "day": "Monday", + "hours": "4–10 PM" + }, + { + "day": "Tuesday", + "hours": "4–10 PM" + }, + { + "day": "Wednesday", + "hours": "4–10 PM" + }, + { + "day": "Thursday", + "hours": "4–10 PM" + }, + { + "day": "Friday", + "hours": "4–10 PM" + }, + { + "day": "Saturday", + "hours": "4–10 PM" + }, + { + "day": "Sunday", + "hours": "4–10 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "11 AM–4 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–4 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Healthy options": true + }, + { + "Late-night food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Locals": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 34, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noPjN6sJqa1D0HTMjRF_oLsdsPRIpqwRPYqFG_bDQY-ShewHuHYvPEZH1tB6WbucoPWFCnqTiHIXiGdzoDLuCYPf8Yvwg1iAIz3l4CVENtvW4wTI4nDduEPE1XBMRDQkRme8a3H=w408-h265-k-no", + "kgmid": "/g/11b808d0t2" +}, +{ + "title": "Lusardi's", + "description": "Longtime eatery with an old-world vibe featuring pastas, fish & meats, plus a lengthy wine list.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1494 2nd Ave, New York, NY 10075", + "neighborhood": "Manhattan", + "street": "1494 2nd Ave", + "city": "New York", + "postalCode": "10075", + "state": "New York", + "countryCode": "US", + "website": "http://www.lusardis.com/", + "phone": "(212) 249-2020", + "phoneUnformatted": "+12122492020", + "claimThisBusiness": true, + "location": { + "lat": 40.7724018, + "lng": -73.9554555 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJVdduFL9YwokRGn2EFWZDLBs", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c258bf146ed755:0x1b2c436615847d1a", + "cid": "1958014043726052634", + "reviewsCount": 309, + "reviewsDistribution": { + "oneStar": 8, + "twoStar": 4, + "threeStar": 22, + "fourStar": 45, + "fiveStar": 230 + }, + "imagesCount": 212, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/0VIligoJUAs?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10:30 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "Credit cards": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 35, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrmzsu0XEkeNphvyqLohNt_6p_QJ1IDf47ZEFVccMkHymYtz05Eg6X8Vq7nnQIbFQyrNu935VunLLcgpcWdjoz29n547x4wEoKyEm815ziu46KWhpT3gPmQXhk-COWG50QXAQYe=w408-h408-k-no", + "kgmid": "/g/1q6h_z98k" +}, +{ + "title": "Sandro's", + "description": "This intimate neighborhood Italian restaurant featuring Roman cuisine draws a lively crowd.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "322 East 86th St, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "322 East 86th St", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "http://www.sandrosrestaurant.com/", + "phone": "(212) 288-7374", + "phoneUnformatted": "+12122887374", + "claimThisBusiness": false, + "location": { + "lat": 40.7772444, + "lng": -73.9508955 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJj9dKtb5YwokRHtC1_HyFZG0", + "categories": [ + "Italian restaurant", + "Bar", + "Northern Italian restaurant", + "Roman restaurant" + ], + "fid": "0x89c258beb54ad78f:0x6d64857cfcb5d01e", + "cid": "7882572019667423262", + "reviewsCount": 278, + "reviewsDistribution": { + "oneStar": 3, + "twoStar": 4, + "threeStar": 12, + "fourStar": 27, + "fiveStar": 232 + }, + "imagesCount": 312, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.727Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/0aEVt87ect8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "5 to 9 PM" + }, + { + "day": "Tuesday", + "hours": "5 to 9 PM" + }, + { + "day": "Wednesday", + "hours": "5 to 9 PM" + }, + { + "day": "Thursday", + "hours": "5 to 9 PM" + }, + { + "day": "Friday", + "hours": "5 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 38, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipMhoz37pG6i3NCSux0Y4_wqOnNICJJnoO0kUhIw=w408-h271-k-no", + "kgmid": "/g/1tm69vy3" +}, +{ + "title": "Due", + "description": "Sophisticated Northern Italian cuisine in an elegant yet cozy eatery with rustic-chic accents.", + "price": "$$", + "categoryName": "Northern Italian restaurant", + "address": "1396 3rd Ave #1, New York, NY 10075", + "neighborhood": "Manhattan", + "street": "1396 3rd Ave #1", + "city": "New York", + "postalCode": "10075", + "state": "New York", + "countryCode": "US", + "website": "http://www.duenyc.com/", + "phone": "(212) 772-3331", + "phoneUnformatted": "+12127723331", + "claimThisBusiness": false, + "location": { + "lat": 40.7746951, + "lng": -73.9573127 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJPxCuXL5YwokR4a1zLHSjau8", + "categories": [ + "Northern Italian restaurant", + "Italian restaurant", + "Restaurant" + ], + "fid": "0x89c258be5cae103f:0xef6aa3742c73ade1", + "cid": "17251781041953418721", + "reviewsCount": 212, + "reviewsDistribution": { + "oneStar": 8, + "twoStar": 2, + "threeStar": 9, + "fourStar": 46, + "fiveStar": 147 + }, + "imagesCount": 156, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:24.728Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Counter service": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "Credit cards": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 40, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-proxy/ALd4DhHI_XCAl4xQsg-qCRnH6tgX67x5hvcgkHrDbGIRHsKj2U7D0jLKG2d__XTy90D_lh7n9NtkDSsm1Kb3GRDZ9Wy-0bSYop4FkGcVdeb_5TXc4StGkPbsm19lexb9-PoBTosjNZMT7HPxOx4OOpnm_Nr1areXLmOCiv3-H6LRzFrpoB0IM9z8gBCq8M3rR5L5zQr2XW4=w408-h271-k-no", + "kgmid": "/g/1tfk0ryh" +}, +{ + "title": "Elegante Restaurant & Pizzeria", + "description": "Longtime pizza parlor doling out pies, pasta & other Italian classics in a modest setting.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "92-01 Rockaway Beach Blvd, Rockaway Beach, NY 11693", + "neighborhood": "Rockaway Beach", + "street": "92-01 Rockaway Beach Blvd", + "city": "Rockaway Beach", + "postalCode": "11693", + "state": "New York", + "countryCode": "US", + "website": "https://www.elegantepizzeriarestaurant.com/?utm_source=gbp", + "phone": "(718) 634-3914", + "phoneUnformatted": "+17186343914", + "claimThisBusiness": false, + "location": { + "lat": 40.5862659, + "lng": -73.8154509 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJfdftHUdowokRVbCXKo_CjlQ", + "categories": [ + "Italian restaurant", + "Pizza restaurant", + "Delivery Restaurant" + ], + "fid": "0x89c268471dedd77d:0x548ec28f2a97b055", + "cid": "6093021266029555797", + "reviewsCount": 696, + "reviewsDistribution": { + "oneStar": 52, + "twoStar": 18, + "threeStar": 35, + "fourStar": 86, + "fiveStar": 505 + }, + "imagesCount": 782, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.627Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Thursday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Friday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Saturday", + "hours": "11 AM to 10 PM" + }, + { + "day": "Sunday", + "hours": "11 AM to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Tuesday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Wednesday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Thursday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Friday", + "hours": "11 AM–10 PM" + }, + { + "day": "Saturday", + "hours": "11 AM–9:30 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Late-night food": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegan options": true + }, + { + "Vegetarian options": true + } + ], + "Dining options": [ + { + "Breakfast": true + }, + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Counter service": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "College students": true + }, + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "Has changing table(s)": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Usually plenty of parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 50, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noA4_Sj541ZELrSG7KK2rGlOLbn01CccI2IypYKiA7b57Lwd8tM_nxWu6OLqAqt2JHHdTprDbAKFxAqOSr4_ukUjVdVvBzQBaOzNVe-gtxWmCxM742y5x3_gWNg1stO2ByU1ho=w408-h544-k-no", + "kgmid": "/g/1hc1bh2nc" +}, +{ + "title": "IL Carino Restaurant", + "description": "Italian cuisine served in an intimate, elevated setting with exposed-brick walls & low lighting.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1710 2nd Ave, New York, NY 10128", + "neighborhood": "Manhattan", + "street": "1710 2nd Ave", + "city": "New York", + "postalCode": "10128", + "state": "New York", + "countryCode": "US", + "website": "https://www.ilcarinorestaurantnyc.com/", + "phone": "(646) 882-0487", + "phoneUnformatted": "+16468820487", + "claimThisBusiness": false, + "location": { + "lat": 40.7794927, + "lng": -73.9501884 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJiTxP17pYwokR0Gj0Wrd5cOg", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c258bad74f3c89:0xe87079b75af468d0", + "cid": "16749020842602817744", + "reviewsCount": 260, + "reviewsDistribution": { + "oneStar": 13, + "twoStar": 8, + "threeStar": 16, + "fourStar": 18, + "fiveStar": 205 + }, + "imagesCount": 393, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.740Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/72nfaEZ_lwY?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "4 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "4 to 10 PM" + }, + { + "day": "Saturday", + "hours": "4 to 10 PM" + }, + { + "day": "Sunday", + "hours": "4 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Hard liquor": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "Locals": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 43, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npgcLl47mqf_FLQCHwGJgAn0OS1wyy0a96wBO3tiNtZc4S-0SlyC6HnWg9XGN_0LccglMaQJc4uoF3IfC389uR8Wk1TLh_VQ-EvPjJvoweYyWX5KLno0bpQsWaS010bz6TylJMuEmCBJ9aD=w408-h305-k-no", + "kgmid": "/g/1tffq7sr" +}, +{ + "title": "Uva", + "description": "This cozy, rustic spot with a patio and back garden draws lively crowds for small plates and wine.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1486 2nd Ave, New York, NY 10075", + "neighborhood": "Manhattan", + "street": "1486 2nd Ave", + "city": "New York", + "postalCode": "10075", + "state": "New York", + "countryCode": "US", + "website": "http://www.uvanyc.com/", + "phone": "(212) 472-4552", + "phoneUnformatted": "+12124724552", + "claimThisBusiness": false, + "location": { + "lat": 40.7721816, + "lng": -73.9556129 + }, + "totalScore": 4.3, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJxYXIbL9YwokR7A8e89BZgGA", + "categories": [ + "Italian restaurant", + "Bar", + "Wine bar" + ], + "fid": "0x89c258bf6cc885c5:0x608059d0f31e0fec", + "cid": "6953656578626949100", + "reviewsCount": 2005, + "reviewsDistribution": { + "oneStar": 82, + "twoStar": 64, + "threeStar": 167, + "fourStar": 459, + "fiveStar": 1233 + }, + "imagesCount": 1421, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.740Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/TvaPnNSr9sc?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "3 PM to 12 AM" + }, + { + "day": "Tuesday", + "hours": "3 PM to 1 AM" + }, + { + "day": "Wednesday", + "hours": "3 PM to 1 AM" + }, + { + "day": "Thursday", + "hours": "3 PM to 1 AM" + }, + { + "day": "Friday", + "hours": "3 PM to 1 AM" + }, + { + "day": "Saturday", + "hours": "11 AM to 1 AM" + }, + { + "day": "Sunday", + "hours": "11 AM to 12 AM" + } + ], + "additionalOpeningHours": { + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "11 AM–3 PM" + }, + { + "day": "Sunday", + "hours": "11 AM–3 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Breakfast": true + }, + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Usually a wait": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 44, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noXDahT9ejA8LzkMGukO5StLsDMa_KRaiBE7GEp8fn-856pVnMqGidhH86GiusydFN5zLi8MIbtEhNXNBnNg3QZ65AYBGodNoTotTBZhUk6PSADgjytbS_HAoDhESOKrqBy7KyILw=w408-h270-k-no", + "kgmid": "/g/1tm8fx6j" +}, +{ + "title": "Felice 64", + "description": "Stylish wine bar supplying Italian vintages & fare in a rustic, date-friendly setting.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1166 1st Ave, New York, NY 10065", + "neighborhood": "Manhattan", + "street": "1166 1st Ave", + "city": "New York", + "postalCode": "10065", + "state": "New York", + "countryCode": "US", + "website": "https://www.felicerestaurants.com/felice-64/", + "phone": "(212) 593-2223", + "phoneUnformatted": "+12125932223", + "claimThisBusiness": false, + "location": { + "lat": 40.7625672, + "lng": -73.9595639 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJa1dYp8JYwokRX2NCKS9MxvE", + "categories": [ + "Italian restaurant", + "Brunch restaurant", + "Caterer", + "Delivery service", + "Fine dining restaurant", + "Pasta shop", + "Restaurant", + "Wine bar" + ], + "fid": "0x89c258c2a758576b:0xf1c64c2f2942635f", + "cid": "17421695973968733023", + "reviewsCount": 617, + "reviewsDistribution": { + "oneStar": 7, + "twoStar": 12, + "threeStar": 34, + "fourStar": 156, + "fiveStar": 408 + }, + "imagesCount": 436, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.740Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/8IxjPHXMwf4?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "11:30 AM to 11 PM" + }, + { + "day": "Sunday", + "hours": "11:30 AM to 10 PM" + } + ], + "additionalOpeningHours": { + "Happy hours": [ + { + "day": "Monday", + "hours": "4 AM–6 PM" + }, + { + "day": "Tuesday", + "hours": "4 AM–6 PM" + }, + { + "day": "Wednesday", + "hours": "4 AM–6 PM" + }, + { + "day": "Thursday", + "hours": "4 AM–6 PM" + }, + { + "day": "Friday", + "hours": "4 AM–6 PM" + }, + { + "day": "Saturday", + "hours": "4 AM–6 PM" + }, + { + "day": "Sunday", + "hours": "4 AM–6 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Debit cards": true + }, + { + "NFC mobile payments": true + } + ], + "Children": [ + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Free street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 47, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npJ-Mm-9aPRmbUgeBKrk8WFBBydvbjCdQ2RuP_SYMMCD40dqTMLgNMm8zMLhAaL9-UN_RHTBTA0_TYhkdXBySBHaq1_5Jt8WXbnEnGHWoEpq-UKYhTyfVlAqgnlG5O-DKtsGIFO=w408-h282-k-no", + "kgmid": "/g/1tdzs15z" +}, +{ + "title": "Luna Rossa", + "description": "Cozy, white-tablecloth restaurant offering Italian dishes with homemade pasta & a sizable wine list.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "347 E 85th St, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "347 E 85th St", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "http://www.lunarossanyc.com/", + "phone": "(212) 517-3118", + "phoneUnformatted": "+12125173118", + "claimThisBusiness": false, + "location": { + "lat": 40.776594, + "lng": -73.950351 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJO9tKSrpYwokRZQ9lHjvqcfg", + "categories": [ + "Italian restaurant", + "Dessert restaurant", + "Delivery Restaurant", + "Northern Italian restaurant", + "Seafood restaurant", + "Southern Italian restaurant", + "Vegetarian restaurant", + "Wine bar" + ], + "fid": "0x89c258ba4a4adb3b:0xf871ea3b1e650f65", + "cid": "17902347533408341861", + "reviewsCount": 201, + "reviewsDistribution": { + "oneStar": 7, + "twoStar": 5, + "threeStar": 6, + "fourStar": 23, + "fiveStar": 160 + }, + "imagesCount": 177, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.741Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/iMViCOyoAug?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "3 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "3 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "3 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "3 to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "3 to 10:30 PM" + }, + { + "day": "Sunday", + "hours": "3 to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "3–9:45 PM" + }, + { + "day": "Wednesday", + "hours": "3–9:45 PM" + }, + { + "day": "Thursday", + "hours": "3–9:45 PM" + }, + { + "day": "Friday", + "hours": "3–9:45 PM" + }, + { + "day": "Saturday", + "hours": "12–9:45 PM" + }, + { + "day": "Sunday", + "hours": "12–9:45 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "3–9:45 PM" + }, + { + "day": "Wednesday", + "hours": "3–9:45 PM" + }, + { + "day": "Thursday", + "hours": "3–9:45 PM" + }, + { + "day": "Friday", + "hours": "3–9:45 PM" + }, + { + "day": "Saturday", + "hours": "12–9:45 PM" + }, + { + "day": "Sunday", + "hours": "12–9:45 PM" + } + ], + "Online service hours": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "3–10 PM" + }, + { + "day": "Wednesday", + "hours": "3–10 PM" + }, + { + "day": "Thursday", + "hours": "3–10 PM" + }, + { + "day": "Friday", + "hours": "3–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Dinner": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "4–10 PM" + }, + { + "day": "Wednesday", + "hours": "4–10 PM" + }, + { + "day": "Thursday", + "hours": "4–10 PM" + }, + { + "day": "Friday", + "hours": "4–10:30 PM" + }, + { + "day": "Saturday", + "hours": "3–10:30 PM" + }, + { + "day": "Sunday", + "hours": "3–9:30 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great coffee": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + } + ], + "Amenities": [ + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 48, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipNPCpCPuqPAb1Mv6_fOP7cjb8Wu1rbqbk2sMBlh=w408-h271-k-no", + "kgmid": "/g/1tyt67_1" +}, +{ + "title": "Botte UES", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1606 1st Ave, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "1606 1st Ave", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "https://www.botterestaurants.com/", + "phone": "(212) 207-0052", + "phoneUnformatted": "+12122070052", + "claimThisBusiness": false, + "location": { + "lat": 40.7750676, + "lng": -73.9504538 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJI43xgLlYwokR9H-LXHs36gc", + "categories": [ + "Italian restaurant" + ], + "fid": "0x89c258b980f18d23:0x7ea377b5c8b7ff4", + "cid": "570329305788940276", + "reviewsCount": 318, + "reviewsDistribution": { + "oneStar": 19, + "twoStar": 15, + "threeStar": 13, + "fourStar": 33, + "fiveStar": 238 + }, + "imagesCount": 236, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.741Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/-GCSu0_Y210?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "4 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "4 to 10 PM" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Happy hours": [ + { + "day": "Monday", + "hours": "4–7 PM" + }, + { + "day": "Tuesday", + "hours": "4–7 PM" + }, + { + "day": "Wednesday", + "hours": "4–7 PM" + }, + { + "day": "Thursday", + "hours": "4–7 PM" + }, + { + "day": "Friday", + "hours": "3–7 PM" + }, + { + "day": "Saturday", + "hours": "Closed" + }, + { + "day": "Sunday", + "hours": "Closed" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "4–9:45 PM" + }, + { + "day": "Tuesday", + "hours": "4–9:45 PM" + }, + { + "day": "Wednesday", + "hours": "4–9:45 PM" + }, + { + "day": "Thursday", + "hours": "4–9:45 PM" + }, + { + "day": "Friday", + "hours": "12–10:45 PM" + }, + { + "day": "Saturday", + "hours": "12–10:45 PM" + }, + { + "day": "Sunday", + "hours": "12–9:45 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "12–4 PM" + }, + { + "day": "Saturday", + "hours": "12–4 PM" + }, + { + "day": "Sunday", + "hours": "12–4 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great wine list": true + }, + { + "Live music": true + }, + { + "Sports": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Counter service": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 49, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolXzNEIFsN-ymw3m-53K2V-62jcB3ZG6xPQUBFhO0HVCbb8a-pYgrbAmZlrMqh5aWtgrK-JKnRgj976PVvNYOHw6SxleadrfcWD3FG_RbGTlXVy3yDRXI6WyJl5930Kt8q-Q=w408-h544-k-no", + "kgmid": "/g/11rcw3wyq2" +}, +{ + "title": "Campagnola", + "description": "An old-school Italian eatery with an extensive menu & prime opportunities for people-watching.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "1382 1st Ave, New York, NY 10021", + "neighborhood": "Manhattan", + "street": "1382 1st Ave", + "city": "New York", + "postalCode": "10021", + "state": "New York", + "countryCode": "US", + "website": "http://www.campagnola-nyc.com/", + "phone": "(212) 861-1102", + "phoneUnformatted": "+12128611102", + "claimThisBusiness": false, + "location": { + "lat": 40.7688172, + "lng": -73.954826 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJHZRr3cBYwokRAOvPS6LgVVI", + "categories": [ + "Italian restaurant", + "Bar" + ], + "fid": "0x89c258c0dd6b941d:0x5255e0a24bcfeb00", + "cid": "5932895071791737600", + "reviewsCount": 448, + "reviewsDistribution": { + "oneStar": 17, + "twoStar": 9, + "threeStar": 23, + "fourStar": 54, + "fiveStar": 345 + }, + "imagesCount": 379, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.741Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/zf-38Zl8KIs?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Tuesday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Wednesday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Thursday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Friday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Saturday", + "hours": "5 to 10:45 PM" + }, + { + "day": "Sunday", + "hours": "5 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Live music": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + }, + { + "Locals": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 50, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npq7cMI9AXFFQErpzum8CjIabtnWYL8YR_mZQ4iHDSaRlHciZov7wWXPITPcVvODwVdE4pEH2xOHC8MkrQWdSwZwkpScjxv78DIiAMRDUrObS7dWempaNzdF7O6FRENWrQFyeYw7w=w408-h271-k-no", + "kgmid": "/g/1v7pzd2k" +}, +{ + "title": "Finestra Restaurant", + "description": "Quiet, candlelit trattoria featuring familiar Italian flavors & occasional live music.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1370 York Ave, New York, NY 10021", + "neighborhood": "Manhattan", + "street": "1370 York Ave", + "city": "New York", + "postalCode": "10021", + "state": "New York", + "countryCode": "US", + "website": "http://www.finestrarestaurant.com/", + "phone": "(212) 717-8595", + "phoneUnformatted": "+12127178595", + "claimThisBusiness": false, + "location": { + "lat": 40.7675573, + "lng": -73.95304 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJqZIo0MZYwokR91Ny6mmqVLQ", + "categories": [ + "Italian restaurant", + "Seafood restaurant" + ], + "fid": "0x89c258c6d02892a9:0xb454aa69ea7253f7", + "cid": "12994198196752372727", + "reviewsCount": 313, + "reviewsDistribution": { + "oneStar": 9, + "twoStar": 8, + "threeStar": 19, + "fourStar": 67, + "fiveStar": 210 + }, + "imagesCount": 974, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.741Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/-D_Wh5V-520?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 9 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 9 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 9 PM" + }, + { + "day": "Thursday", + "hours": "12 to 9 PM" + }, + { + "day": "Friday", + "hours": "12 to 9 PM" + }, + { + "day": "Saturday", + "hours": "12 to 9 PM" + }, + { + "day": "Sunday", + "hours": "12 to 9 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "12–9 PM" + }, + { + "day": "Tuesday", + "hours": "12–9 PM" + }, + { + "day": "Wednesday", + "hours": "12–9 PM" + }, + { + "day": "Thursday", + "hours": "12–9 PM" + }, + { + "day": "Friday", + "hours": "12–9 PM" + }, + { + "day": "Saturday", + "hours": "12–9 PM" + }, + { + "day": "Sunday", + "hours": "12–9 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "From the business": [ + { + "Identifies as women-owned": true + } + ], + "Service options": [ + { + "Outdoor seating": true + }, + { + "Curbside pickup": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Live music": true + }, + { + "Serves local specialty": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Organic dishes": true + }, + { + "Private dining room": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Pets": [ + { + "Dogs allowed": true + }, + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 51, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipNkteYTvZ5RQhRDA1ftYSmSIZ_AgBnaL-wcZ2qr=w426-h240-k-no", + "kgmid": "/g/1tdlj65t" +}, +{ + "title": "314 - pizza,pasta&cocktailbar", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "3143 Broadway, New York, NY 10027", + "neighborhood": "Manhattan", + "street": "3143 Broadway", + "city": "New York", + "postalCode": "10027", + "state": "New York", + "countryCode": "US", + "website": "https://www.bar314nyc.com/", + "phone": "(646) 682-7645", + "phoneUnformatted": "+16466827645", + "claimThisBusiness": false, + "location": { + "lat": 40.8141969, + "lng": -73.9598383 + }, + "totalScore": 4.7, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJx1MYBV_3wokRjeYHCXgKrJ8", + "categories": [ + "Italian restaurant", + "Gluten-free restaurant", + "Pizza delivery", + "Pizza restaurant", + "Vegetarian restaurant" + ], + "fid": "0x89c2f75f051853c7:0x9fac0a780907e68d", + "cid": "11505582658688640653", + "reviewsCount": 393, + "reviewsDistribution": { + "oneStar": 16, + "twoStar": 5, + "threeStar": 8, + "fourStar": 41, + "fiveStar": 323 + }, + "imagesCount": 372, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.742Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/hBW3mCgvci0?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 11 PM" + }, + { + "day": "Saturday", + "hours": "12 to 11 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Quick bite": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Tourists": true + } + ], + "Planning": [ + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Parking": [ + { + "Free street parking": true + }, + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 55, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4noGc3jryP4Hs8eOL-x3pi6LQlGM8sI8FdpRbCP7zWqCadwoy1-KIfk0vZKCK7laUpj_c-jZKSfPp6GA-1DXvmk0gO1n3VApn5YZuLz-XZD5NNKg1EkKA9mg2SCFb75E7q03O9YY=w408-h544-k-no", + "kgmid": "/g/11gwhc4n3m" +}, +{ + "title": "Bottega", + "description": "Italian staples including housemade pasta dishes served in a casual but stylish space with a patio.", + "price": "$$", + "categoryName": "Italian restaurant", + "address": "1331 2nd Ave, New York, NY 10021", + "neighborhood": "Manhattan", + "street": "1331 2nd Ave", + "city": "New York", + "postalCode": "10021", + "state": "New York", + "countryCode": "US", + "website": "http://www.bottegany.com/", + "phone": "(212) 288-5282", + "phoneUnformatted": "+12122885282", + "claimThisBusiness": false, + "location": { + "lat": 40.7678058, + "lng": -73.9593676 + }, + "totalScore": 4.4, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJxR4H4cFYwokRM1RXHp-Cy5s", + "categories": [ + "Italian restaurant", + "Bar" + ], + "fid": "0x89c258c1e1071ec5:0x9bcb829f1e575433", + "cid": "11226210116071543859", + "reviewsCount": 314, + "reviewsDistribution": { + "oneStar": 11, + "twoStar": 10, + "threeStar": 20, + "fourStar": 69, + "fiveStar": 204 + }, + "imagesCount": 107, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.742Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/XgnZqXjwZnk?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10 PM" + }, + { + "day": "Friday", + "hours": "12 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Healthy options": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Casual": true + }, + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "High chairs": true + }, + { + "Kids' menu": true + } + ], + "Parking": [ + { + "Paid street parking": true + } + ], + "Pets": [ + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 56, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrbcjqFUIMgRhqP_S6d9scX9pAvynyWuMSj0Mt3h_k9RgFdClLs_BSmNZi7v60DUPlGDO4hwvXGYxbrtATMmfu3suVcEkiAiZTWh5_yhCNYo79EodLiC2aaRPHLlLdy4nGpqfDt6w=w413-h240-k-no", + "kgmid": "/g/1yl57jlmg" +}, +{ + "title": "L'Artista Italian Kitchen & Bar", + "price": null, + "categoryName": "Northern Italian restaurant", + "address": "142 Hamilton Pl, New York, NY 10031", + "neighborhood": "Manhattan", + "street": "142 Hamilton Pl", + "city": "New York", + "postalCode": "10031", + "state": "New York", + "countryCode": "US", + "website": "http://www.lartistanyc.com/", + "phone": "(646) 858-0312", + "phoneUnformatted": "+16468580312", + "claimThisBusiness": false, + "location": { + "lat": 40.8243708, + "lng": -73.9486693 + }, + "totalScore": 4.6, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJscGs5JD3wokRcU7HNiu5akM", + "categories": [ + "Northern Italian restaurant", + "Cocktail bar", + "Dessert restaurant", + "Italian restaurant", + "Jazz club", + "Lounge", + "Wine bar" + ], + "fid": "0x89c2f790e4acc1b1:0x436ab92b36c74e71", + "cid": "4857898743326264945", + "reviewsCount": 260, + "reviewsDistribution": { + "oneStar": 8, + "twoStar": 13, + "threeStar": 9, + "fourStar": 22, + "fiveStar": 208 + }, + "imagesCount": 429, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.742Z", + "reserveTableUrl": "https://www.google.com/maps/reserve/v/dine/c/WeRZ2XWj8jU?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "4 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "4 to 10 PM" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4 to 10 PM" + }, + { + "day": "Friday", + "hours": "4 to 10 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Happy hours": [ + { + "day": "Monday", + "hours": "4–7 PM" + }, + { + "day": "Tuesday", + "hours": "4–7 PM" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4–7 PM" + }, + { + "day": "Friday", + "hours": "4–7 PM" + }, + { + "day": "Saturday", + "hours": "4–7 PM" + }, + { + "day": "Sunday", + "hours": "4–7 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "4–10 PM" + }, + { + "day": "Tuesday", + "hours": "4–10 PM" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4–10 PM" + }, + { + "day": "Friday", + "hours": "4–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Access": [ + { + "day": "Monday", + "hours": "4–10 PM" + }, + { + "day": "Tuesday", + "hours": "4–10 PM" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4–10 PM" + }, + { + "day": "Friday", + "hours": "4–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Kitchen": [ + { + "day": "Monday", + "hours": "4–10 PM" + }, + { + "day": "Tuesday", + "hours": "4–10 PM" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "4–10 PM" + }, + { + "day": "Friday", + "hours": "4–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ], + "Brunch": [ + { + "day": "Monday", + "hours": "Closed" + }, + { + "day": "Tuesday", + "hours": "Closed" + }, + { + "day": "Wednesday", + "hours": "Closed" + }, + { + "day": "Thursday", + "hours": "Closed" + }, + { + "day": "Friday", + "hours": "Closed" + }, + { + "day": "Saturday", + "hours": "12–4 PM" + }, + { + "day": "Sunday", + "hours": "12–4 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "No-contact delivery": true + }, + { + "Delivery": true + }, + { + "Onsite services": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Fast service": true + }, + { + "Great cocktails": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + }, + { + "Live music": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible parking lot": true + }, + { + "Wheelchair accessible restroom": true + }, + { + "Wheelchair accessible seating": true + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Happy hour drinks": true + }, + { + "Happy hour food": true + }, + { + "Hard liquor": true + }, + { + "Late-night food": true + }, + { + "Organic dishes": true + }, + { + "Small plates": true + }, + { + "Vegetarian options": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Catering": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Gender-neutral restroom": true + }, + { + "Restroom": true + }, + { + "Wi-Fi": true + }, + { + "Free Wi-Fi": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + } + ], + "Crowd": [ + { + "Family-friendly": true + }, + { + "Groups": true + }, + { + "LGBTQ+ friendly": true + }, + { + "Transgender safespace": true + } + ], + "Planning": [ + { + "Reservations required": true + }, + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ], + "Children": [ + { + "Good for kids": true + }, + { + "High chairs": true + } + ], + "Pets": [ + { + "Dogs allowed": true + }, + { + "Dogs allowed outside": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 59, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/p/AF1QipO6j0I_9oCXkmj91OGfXksWfd3iHsWOQhdh2HJd=w408-h544-k-no", + "kgmid": "/g/11h39mlfsp" +}, +{ + "title": "Antonucci Cafe", + "description": "Refined venue offering elevated Italian fare, including homemade pastas, plus an ample wine list.", + "price": "$$$", + "categoryName": "Italian restaurant", + "address": "170 E 81st St, New York, NY 10028", + "neighborhood": "Manhattan", + "street": "170 E 81st St", + "city": "New York", + "postalCode": "10028", + "state": "New York", + "countryCode": "US", + "website": "https://antonuccicafe81.com/", + "phone": "(212) 570-5100", + "phoneUnformatted": "+12125705100", + "claimThisBusiness": true, + "location": { + "lat": 40.7756958, + "lng": -73.9569247 + }, + "totalScore": 4.5, + "permanentlyClosed": false, + "temporarilyClosed": false, + "placeId": "ChIJmQKjfr5YwokRxETZofFe5hc", + "categories": [ + "Italian restaurant", + "Bar & grill", + "Cafe", + "Restaurant" + ], + "fid": "0x89c258be7ea30299:0x17e65ef1a1d944c4", + "cid": "1722168299411293380", + "reviewsCount": 406, + "reviewsDistribution": { + "oneStar": 18, + "twoStar": 12, + "threeStar": 18, + "fourStar": 52, + "fiveStar": 306 + }, + "imagesCount": 256, + "imageCategories": [], + "scrapedAt": "2025-09-19T16:26:25.742Z", + "googleFoodUrl": null, + "hotelAds": [], + "openingHours": [ + { + "day": "Monday", + "hours": "12 to 10 PM" + }, + { + "day": "Tuesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Wednesday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Thursday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Friday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Saturday", + "hours": "12 to 10:30 PM" + }, + { + "day": "Sunday", + "hours": "12 to 10 PM" + } + ], + "additionalOpeningHours": { + "Delivery": [ + { + "day": "Monday", + "hours": "5–10 PM" + }, + { + "day": "Tuesday", + "hours": "5–10 PM" + }, + { + "day": "Wednesday", + "hours": "5–10 PM" + }, + { + "day": "Thursday", + "hours": "5–10 PM" + }, + { + "day": "Friday", + "hours": "5–10 PM" + }, + { + "day": "Saturday", + "hours": "5–10 PM" + }, + { + "day": "Sunday", + "hours": "5–10 PM" + } + ], + "Takeout": [ + { + "day": "Monday", + "hours": "12–10 PM" + }, + { + "day": "Tuesday", + "hours": "12–10 PM" + }, + { + "day": "Wednesday", + "hours": "12–10 PM" + }, + { + "day": "Thursday", + "hours": "12–10 PM" + }, + { + "day": "Friday", + "hours": "12–10 PM" + }, + { + "day": "Saturday", + "hours": "12–10 PM" + }, + { + "day": "Sunday", + "hours": "12–10 PM" + } + ] + }, + "peopleAlsoSearch": [], + "placesTags": [], + "reviewsTags": [], + "additionalInfo": { + "Service options": [ + { + "Outdoor seating": true + }, + { + "Delivery": true + }, + { + "Takeout": true + }, + { + "Dine-in": true + } + ], + "Highlights": [ + { + "Great cocktails": true + }, + { + "Great coffee": true + }, + { + "Great dessert": true + }, + { + "Great wine list": true + } + ], + "Popular for": [ + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Solo dining": true + } + ], + "Accessibility": [ + { + "Wheelchair accessible entrance": true + }, + { + "Wheelchair accessible seating": true + }, + { + "Wheelchair accessible parking lot": false + } + ], + "Offerings": [ + { + "Alcohol": true + }, + { + "Beer": true + }, + { + "Cocktails": true + }, + { + "Coffee": true + }, + { + "Comfort food": true + }, + { + "Hard liquor": true + }, + { + "Small plates": true + }, + { + "Wine": true + } + ], + "Dining options": [ + { + "Brunch": true + }, + { + "Lunch": true + }, + { + "Dinner": true + }, + { + "Dessert": true + }, + { + "Seating": true + }, + { + "Table service": true + } + ], + "Amenities": [ + { + "Bar onsite": true + }, + { + "Restroom": true + } + ], + "Atmosphere": [ + { + "Cozy": true + }, + { + "Romantic": true + }, + { + "Trendy": true + }, + { + "Upscale": true + } + ], + "Crowd": [ + { + "Groups": true + } + ], + "Planning": [ + { + "Dinner reservations recommended": true + }, + { + "Accepts reservations": true + } + ], + "Payments": [ + { + "Credit cards": true + }, + { + "Debit cards": true + }, + { + "NFC mobile payments": true + }, + { + "Credit cards": true + } + ] + }, + "gasPrices": [], + "url": "https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc", + "searchPageUrl": "https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en", + "searchString": "italian restaurant", + "language": "en", + "rank": 60, + "isAdvertisement": false, + "imageUrl": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrorwSkoGQ6dwJaBkXAKbzdWyVnO6sPKoDJwRQ9otnkDGWYdWZzMQnlKcE2bTNytK4tE2CJFOJ4SGkP4of7Vy9h2Yxfr49IdtciphiOSDlhuF5Z5UIO8snTZwvU1k982yNRq3c-=w426-h240-k-no", + "kgmid": "/g/1tf9p556" +}] \ No newline at end of file diff --git a/tests/unit/json-to-markdown.test.ts b/tests/unit/json-to-markdown.test.ts new file mode 100644 index 00000000..e8d086cc --- /dev/null +++ b/tests/unit/json-to-markdown.test.ts @@ -0,0 +1,118 @@ +import { readFileSync } from 'node:fs'; +import path from 'node:path'; + +import { describe, expect, it } from 'vitest'; + +import { jsonToMarkdown } from '../../src/utils/json-to-markdown.js'; + +describe('jsonToMarkdown', () => { + it('should format simple json object', () => { + expect(jsonToMarkdown({ + name: 'John Doe', + age: 30, + email: 'john.doe@example.com', + })).toMatchInlineSnapshot(` + "name: John Doe + age: 30 + email: john.doe@example.com" + `); + }); + + it('should format simple json array', () => { + expect(jsonToMarkdown([1, 2, 3])).toMatchInlineSnapshot(`"1, 2, 3"`); + expect(jsonToMarkdown({ a: [1, 2, 3], b: [4, 5] })).toMatchInlineSnapshot(` + "a: 1, 2, 3 + b: 4, 5" + `); + }); + + it('should format array of other types', () => { + expect(jsonToMarkdown([true, false, 'hello', 123, { a: 1, b: 2 }, [1, 2, 3], null])).toMatchInlineSnapshot(` + "- true + - false + - hello + - 123 + - a: 1 + b: 2 + - 1, 2, 3" + `); + }); + + it('should format json array with nested objects', () => { + expect(jsonToMarkdown([{ a: 1, b: 2 }, { a: 3, b: 4 }])).toMatchInlineSnapshot(` + "- a: 1 + b: 2 + - a: 3 + b: 4" + `); + + expect(jsonToMarkdown({ x: [{ a: 1, b: 2 }, { a: 3, b: 4 }] })).toMatchInlineSnapshot(` + "x: + - a: 1 + b: 2 + - a: 3 + b: 4" + `); + }); + + it('should format json with nested objects', () => { + expect(jsonToMarkdown({ + name: 'John Doe', + pets: [{ + name: 'Rex', + age: 5, + type: 'dog', + }, { + name: 'Bella', + age: 3, + type: 'cat', + }], + })).toMatchInlineSnapshot(` + "name: John Doe + pets: + - name: Rex + age: 5 + type: dog + - name: Bella + age: 3 + type: cat" + `); + expect(jsonToMarkdown({ location: { lat: 40, lng: -73 } })).toMatchInlineSnapshot(` + "location: + lat: 40 + lng: -73" + `); + }); + + it('should format object object array object inline', () => { + expect(jsonToMarkdown( + { additionalInfo: + { Service_options: [ + { Outdoor_seating: true }, + ] } }, + )).toMatchInlineSnapshot('"additionalInfo: Service_options: - Outdoor_seating: true"'); + }); + + it('should format object object array object multiline', () => { + expect(jsonToMarkdown( + { additionalInfo: + { Service_options: [ + { Outdoor_seating: true }, + { Delivery: true }, + ] } }, + )).toMatchInlineSnapshot(` + "additionalInfo: + Service_options: + - Outdoor_seating: true + - Delivery: true" + `); + }); + + it('should format real Google Maps dataset item', () => { + const jsonString = readFileSync(path.join(__dirname, + 'dataset_google-maps-extractor_2025-09-19_16-26-25-793.json'), 'utf8'); + const json = JSON.parse(jsonString); + const result = jsonToMarkdown(json); + expect(result).toMatchSnapshot(); + }); +}); From 4694505e2610a3887ec709ba938494b27195ea8e Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 11:45:37 +0200 Subject: [PATCH 4/9] feat: simplify google maps data about additional info --- src/utils/json-to-markdown.ts | 50 +- .../json-to-markdown.test.ts.snap | 3447 +++-------------- tests/unit/json-to-markdown.test.ts | 42 +- 3 files changed, 678 insertions(+), 2861 deletions(-) diff --git a/src/utils/json-to-markdown.ts b/src/utils/json-to-markdown.ts index d0cefa55..a4c63616 100644 --- a/src/utils/json-to-markdown.ts +++ b/src/utils/json-to-markdown.ts @@ -12,7 +12,41 @@ function isNotEmpty(json: JSON): boolean { return !isEmpty(json); } -export function jsonToMarkdown(json: JSON, pad = 0): string { +export function jsonToMarkdown(json: Readonly): string { + const cloned = structuredClone(json) as JSON; // Copy data to avoid mutating the original object + const simplified = simplifyJson(cloned); + return serializeJsonToMarkdown(simplified, 0); +} + +function simplifyJson(json: JSON): JSON { + if (json === null || typeof json !== 'object') { + return json; + } + + if (Array.isArray(json)) { + const simplified = json.map(simplifyJson); + // Check if this is an array of objects with single property where value is true + if (simplified.every((item) => typeof item === 'object' + && item !== null + && !Array.isArray(item) + && Object.keys(item).length === 1 + && Object.values(item)[0] === true, + )) { + const propertyNames = simplified.map((item) => Object.keys(item as Record)[0]); + return propertyNames.length === 1 ? propertyNames[0] : propertyNames.join(', '); + } + return simplified; + } + + // For objects, recursively simplify all values + const result: Record = {}; + for (const [key, value] of Object.entries(json)) { + result[key] = simplifyJson(value as JSON); + } + return result; +} + +function serializeJsonToMarkdown(json: JSON, pad = 0): string { if (typeof json === 'string' || typeof json === 'number' || typeof json === 'boolean') { return String(json); } @@ -34,21 +68,21 @@ export function jsonToMarkdown(json: JSON, pad = 0): string { // Advanced array will use bullets const indent = ' '.repeat(pad * 2); const singleLine = json.length === 1 && json.every((item) => { - const content = jsonToMarkdown(item, 0); + const content = serializeJsonToMarkdown(item, 0); return !content.includes('\n'); }); if (singleLine) { // For single-item arrays with simple content, don't add indent return json.filter(isNotEmpty) .map((value) => { - const content = jsonToMarkdown(value, 0); + const content = serializeJsonToMarkdown(value, 0); return `- ${content}`; }) .join(' '); } return json.filter(isNotEmpty) .map((value, index) => { - const content = jsonToMarkdown(value, 0); + const content = serializeJsonToMarkdown(value, 0); const lines = content.split('\n'); if (lines.length === 1) { return `${indent}- ${lines[0]}`; @@ -66,14 +100,16 @@ export function jsonToMarkdown(json: JSON, pad = 0): string { return Object.entries(json) .filter(([_, value]) => isNotEmpty(value)) .map(([key, value]) => { - const valueStr = jsonToMarkdown(value, pad + 1); + const valueStr = serializeJsonToMarkdown(value, pad + 1); if ((Array.isArray(value) && valueStr.includes('\n')) || (!Array.isArray(value) && typeof value === 'object' && value !== null && valueStr.includes('\n'))) { // Multi-line arrays or objects in objects should be on new lines with proper indentation return `${indent}${key}:\n${valueStr}`; } - // For inline values, don't add indent if we're in a nested context - const keyIndent = pad > 0 && typeof value === 'object' && value !== null ? '' : indent; + // For inline values, don't add indent if we're in a nested context or if current object has single property with simple value + const currentObjectHasSingleProperty = Object.keys(json).length === 1; + const valueIsSimple = typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean'; + const keyIndent = (pad > 0 && ((typeof value === 'object' && value !== null) || (currentObjectHasSingleProperty && valueIsSimple))) ? '' : indent; return `${keyIndent}${key}: ${valueStr}`; }) .join('\n'); diff --git a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap index c3ecbef2..5560415b 100644 --- a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap +++ b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap @@ -61,77 +61,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–4 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Late-night food: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - Has changing table(s): true - - High chairs: true - - Kids' menu: true - Parking: - - Free street parking: true - - Valet parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, Has changing table(s), High chairs, Kids' menu + Parking: Free street parking, Valet parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -183,57 +126,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4 to 9 PM additionalInfo: - Service options: - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great dessert: true - - Great wine list: true - - Live music: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Happy hour drinks: true - - Hard liquor: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - Groups: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - Usually somewhat difficult to find a space: true + Service options: No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great dessert, Great wine list, Live music + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic + Crowd: Groups + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Usually somewhat difficult to find a space url: https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -286,64 +191,23 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Drive-through: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Curbside pickup, No-contact delivery, Delivery, Drive-through, Takeout, Dine-in + Highlights: Fast service, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true - - Usually somewhat difficult to find a space: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Small plates, Vegetarian options, Wine + Dining options: Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Trendy + Crowd: Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -428,94 +292,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 10 AM–9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Fireplace: true - - Great beer selection: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Organic dishes: true - - Private dining room: true - - Quick bite: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Historic: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - Planning: - - Brunch reservations recommended: true - - Lunch reservations recommended: true - - Dinner reservations recommended: true - - Accepts reservations: true - - Usually a wait: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - Good for kids birthday: true - - High chairs: true - - Kids' menu: true - Parking: - - Free street parking: true - - Usually plenty of parking: true - - Valet parking: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Fireplace, Great beer selection, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Private dining room, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Historic, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, Good for kids birthday, High chairs, Kids' menu + Parking: Free street parking, Usually plenty of parking, Valet parking url: https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -615,81 +404,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–9 PM additionalInfo: - From the business: - Identifies as women-owned: true - Service options: - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + From the business: Identifies as women-owned + Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Braille menu: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Hard liquor: true - - Healthy options: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Parking: - Paid street parking: true + Offerings: Alcohol, Beer, Braille menu, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Parking: Paid street parking url: https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -773,76 +505,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–9 PM additionalInfo: - From the business: - - Identifies as Asian-owned: true - - Identifies as LGBTQ+ owned: true - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great beer selection: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + From the business: Identifies as Asian-owned, Identifies as LGBTQ+ owned + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great beer selection, Great cocktails, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Organic dishes: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - Paid parking garage: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Late-night food, Organic dishes, Quick bite, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Paid parking garage url: https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -894,50 +574,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 8 AM to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - Fast service: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible parking lot: false - Offerings: - - Coffee: true - - Comfort food: true - - Healthy options: true - - Late-night food: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - Dining options: - - Breakfast: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - Groups: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - Kids' menu: true - Parking: - Free street parking: true + Offerings: Coffee, Comfort food, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options + Dining options: Breakfast, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Restroom + Atmosphere: Casual, Cozy, Trendy + Crowd: Groups + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, Kids' menu + Parking: Free street parking url: https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1021,83 +670,22 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–10:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Organic dishes: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - - Brunch reservations recommended: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - Usually difficult to find a space: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, Usually difficult to find a space url: https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1181,72 +769,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–8 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Beer: true - - Coffee: true - - Comfort food: true - - Healthy options: true - - Quick bite: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Quiet: true - - Romantic: true - Crowd: - - Family-friendly: true - - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Parking: - - Free street parking: true - - Usually somewhat difficult to find a space: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Beer, Coffee, Comfort food, Healthy options, Quick bite, Vegan options, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Quiet, Romantic + Crowd: Family-friendly, Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Parking: Free street parking, Usually somewhat difficult to find a space + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1316,67 +852,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - - Groups: true - - LGBTQ+ friendly: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - Usually plenty of parking: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic + Crowd: Groups, LGBTQ+ friendly + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, Usually plenty of parking url: https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1429,61 +917,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 9 PM additionalInfo: - Service options: - - Outdoor seating: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Small plates: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - Free street parking: true + Service options: Outdoor seating, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic + Crowd: Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking url: https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1568,63 +1014,23 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 2–9:30 PM additionalInfo: - Service options: - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great dessert: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great dessert + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - - Family-friendly: true - - Groups: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Parking: - - Free parking lot: true - - Paid street parking: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Restroom + Atmosphere: Casual, Cozy, Romantic + Crowd: Family-friendly, Groups + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Parking: Free parking lot, Paid street parking url: https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1709,72 +1115,23 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11:30 AM–10 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great wine list: true - - Live music: true - - Serves local specialty: true - - Sports: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great wine list, Live music, Serves local specialty, Sports + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Quick bite: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - Crowd: - - Family-friendly: true - - Groups: true - - Tourists: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true - - Usually somewhat difficult to find a space: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Quick bite, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy + Crowd: Family-friendly, Groups, Tourists + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space url: https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1828,69 +1185,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Organic dishes: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Groups: true - - Tourists: true - Planning: - - Brunch reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - Usually somewhat difficult to find a space: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: Groups, Tourists + Planning: Brunch reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Usually somewhat difficult to find a space + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -1943,71 +1255,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 1 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Parking: - Free parking lot: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Parking: Free parking lot url: https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2059,36 +1319,15 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 7 AM to 8 PM additionalInfo: - Service options: - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - Wheelchair accessible entrance: true - Offerings: - - Alcohol: true - - Coffee: true - - Comfort food: true - - Quick bite: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Dessert: true - Atmosphere: - - Casual: true - - Cozy: true - Payments: - - Credit cards: true - - Debit cards: true - Children: - Good for kids: true + Service options: No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance + Offerings: Alcohol, Coffee, Comfort food, Quick bite, Wine + Dining options: Lunch, Dinner, Dessert + Atmosphere: Casual, Cozy + Payments: Credit cards, Debit cards + Children: Good for kids url: https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2141,78 +1380,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11:30 AM to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Private dining room: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Groups: true - - Tourists: true - Planning: - - Brunch reservations recommended: true - - Lunch reservations recommended: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - On-site parking: true - - Usually plenty of parking: true - - Valet parking: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Groups, Tourists + Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, On-site parking, Usually plenty of parking, Valet parking url: https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2372,70 +1552,23 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4–10:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Fireplace: true - - Great cocktails: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + Highlights: Fast service, Fireplace, Great cocktails, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Comfort food: true - - Happy hour drinks: true - - Hard liquor: true - - Private dining room: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - High chairs: true - - Kids' menu: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Comfort food, Happy hour drinks, Hard liquor, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: Groups, LGBTQ+ friendly, Transgender safespace + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs, Kids' menu + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2492,59 +1625,18 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - Takeout: true - Dine-in: true - Delivery: false - Highlights: - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - High chairs: true - - Kids' menu: true - Parking: - - Free parking lot: true - - Free street parking: true - - Paid street parking: true - - Usually plenty of parking: true + Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + Dining options: Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs, Kids' menu + Parking: Free parking lot, Free street parking, Paid street parking, Usually plenty of parking url: https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2596,52 +1688,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4 to 9 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great wine list: true - Popular for: - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great wine list + Popular for: Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Parking: - - Free street parking: true - - Paid street parking: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + Dining options: Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Trendy + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Parking: Free street parking, Paid street parking url: https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2731,74 +1791,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–2:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - - Live music: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Late-night food: true - - Private dining room: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - Groups: true - Planning: - - Brunch reservations recommended: true - - Dinner reservations recommended: true - - Accepts reservations: true - - Usually a wait: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Has changing table(s): true - - High chairs: true - - Kids' menu: true - Parking: - - Free parking lot: true - - Free street parking: true - - Usually plenty of parking: true + Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Groups + Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Has changing table(s), High chairs, Kids' menu + Parking: Free parking lot, Free street parking, Usually plenty of parking url: https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en searchString: italian restaurant @@ -2858,72 +1863,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 10 AM to 9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Locals: true - - Tourists: true - - Transgender safespace: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom + Atmosphere: Casual, Cozy, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Locals, Tourists, Transgender safespace + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Free street parking, Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -2982,60 +1939,22 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 3:30 PM, 5 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Groups: true - - Locals: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - Parking: - Paid street parking: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: Groups, Locals + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments + Parking: Paid street parking url: https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3094,59 +2013,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 7:30 AM to 9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Halal food: true - - Happy hour drinks: true - - Organic dishes: true - - Salad bar: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Breakfast: true - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - Paid street parking: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Halal food, Happy hour drinks, Organic dishes, Salad bar, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Breakfast, Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Restroom + Atmosphere: Casual, Cozy, Trendy + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3204,65 +2083,23 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 1 to 9 PM additionalInfo: - From the business: - Identifies as women-owned: true - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + From the business: Identifies as women-owned + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Beer: true - - Coffee: true - - Comfort food: true - - Healthy options: true - - Organic dishes: true - - Quick bite: true - - Small plates: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Gender-neutral restroom: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - Good for kids: true - Parking: - - Paid parking lot: true - - Paid street parking: true - - Usually somewhat difficult to find a space: true + Offerings: Beer, Coffee, Comfort food, Healthy options, Organic dishes, Quick bite, Small plates, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Gender-neutral restroom, Restroom + Atmosphere: Casual, Cozy, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids + Parking: Paid parking lot, Paid street parking, Usually somewhat difficult to find a space url: https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3336,37 +2173,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 9:30 AM–9:30 PM additionalInfo: - From the business: - Identifies as women-owned: true - Service options: - - Delivery: true - - In-store pickup: true - - In-store shopping: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Popular for: - Solo dining: true + From the business: Identifies as women-owned + Service options: Delivery, In-store pickup, In-store shopping, Onsite services, Takeout, Dine-in + Popular for: Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible parking lot: false - Dining options: - - Counter service: true - - Dessert: true - - Seating: true - Amenities: - - Gender-neutral restroom: true - - Restroom: true - Crowd: - Family-friendly: true - Planning: - Quick visit: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - Kids' menu: true - Parking: - - Free street parking: true - - Paid street parking: true + Dining options: Counter service, Dessert, Seating + Amenities: Gender-neutral restroom, Restroom + Crowd: Family-friendly + Planning: Quick visit + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Kids' menu + Parking: Free street parking, Paid street parking url: https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3442,64 +2262,21 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Comfort food: true - - Hard liquor: true - - Organic dishes: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Counter service: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - Cozy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Parking: - - Free parking lot: true - - Usually plenty of parking: true + Offerings: Alcohol, Beer, Cocktails, Comfort food, Hard liquor, Organic dishes, Vegan options, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Cozy + Crowd: Family-friendly, Groups, LGBTQ+ friendly + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Parking: Free parking lot, Usually plenty of parking url: https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3558,39 +2335,18 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM to 10 PM additionalInfo: - Service options: - - No-contact delivery: true - - Delivery: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Highlights: - Fast service: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + Highlights: Fast service + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible parking lot: false - Offerings: - - Comfort food: true - - Quick bite: true - - Vegan options: true - - Vegetarian options: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true + Offerings: Comfort food, Quick bite, Vegan options, Vegetarian options + Dining options: Lunch, Dinner, Catering Amenities: - Restroom: false - Atmosphere: - - Casual: true - - Cozy: true - Crowd: - Locals: true + Atmosphere: Casual, Cozy + Crowd: Locals Planning: - Accepts reservations: false - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - Kids' menu: true + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Kids' menu url: https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3681,78 +2437,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11:30 AM–10 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Healthy options: true - - Late-night food: true - - Quick bite: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - College students: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - - Brunch reservations recommended: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - Credit cards: true - Children: - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: College students, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, Credit cards + Children: High chairs + Parking: Free street parking, Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3810,55 +2508,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 PM to 12 AM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Parking: - Usually difficult to find a space: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Quick bite, Small plates, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Trendy + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Parking: Usually difficult to find a space url: https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -3963,76 +2626,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–3:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Organic dishes: true - - Private dining room: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - - Paid street parking: true - - Usually somewhat difficult to find a space: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Paid street parking, Usually somewhat difficult to find a space + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4092,72 +2703,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Sports: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Late-night food: true - - Organic dishes: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - - Family-friendly: true - - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - Paid street parking: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Sports + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic + Crowd: Family-friendly, Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Paid street parking url: https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4214,26 +2772,14 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM to 8 PM additionalInfo: - Service options: - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - Fast service: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Offerings: - - Comfort food: true - - Quick bite: true - Dining options: - - Lunch: true - - Dinner: true - Atmosphere: - Casual: true - Payments: - - Credit cards: true - - Debit cards: true - Parking: - Paid parking lot: true + Service options: Delivery, Takeout, Dine-in + Highlights: Fast service + Popular for: Lunch, Dinner, Solo dining + Offerings: Comfort food, Quick bite + Dining options: Lunch, Dinner + Atmosphere: Casual + Payments: Credit cards, Debit cards + Parking: Paid parking lot url: https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4293,65 +2839,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4:30 to 10 PM additionalInfo: - Service options: - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Organic dishes: true - - Vegetarian options: true - - Wine: true - Dining options: - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Gender-neutral restroom: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Groups: true - - Tourists: true - Planning: - - Reservations required: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - Usually plenty of parking: true + Service options: Delivery, Takeout, Dine-in + Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Organic dishes, Vegetarian options, Wine + Dining options: Dinner, Catering, Dessert, Seating, Table service + Amenities: Gender-neutral restroom, Restroom + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Groups, Tourists + Planning: Reservations required, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, Usually plenty of parking url: https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4441,68 +2941,22 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–4 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Healthy options: true - - Late-night food: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Groups: true - - Locals: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy + Crowd: Groups, Locals + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs url: https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4562,54 +3016,21 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Takeout: true - - Dine-in: true - Highlights: - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Takeout, Dine-in + Highlights: Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Late-night food: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Upscale: true - Crowd: - Groups: true - Planning: - - Reservations required: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - Credit cards: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Upscale + Crowd: Groups + Planning: Reservations required, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, Credit cards url: https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4669,61 +3090,21 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 9 PM additionalInfo: - Service options: - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Groups: true - - Tourists: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Groups, Tourists + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4782,69 +3163,22 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Catering: true - - Counter service: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - - Reservations required: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - Credit cards: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + Planning: Reservations required, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, Credit cards + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -4919,68 +3253,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Coffee: true - - Comfort food: true - - Late-night food: true - - Quick bite: true - - Small plates: true - - Vegan options: true - - Vegetarian options: true - Dining options: - - Breakfast: true - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Counter service: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - - College students: true - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - - Transgender safespace: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - Has changing table(s): true - - High chairs: true - - Kids' menu: true - Parking: - - Free street parking: true - - Usually plenty of parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Coffee, Comfort food, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options + Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + Amenities: Restroom + Atmosphere: Casual, Cozy, Trendy + Crowd: College students, Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, Has changing table(s), High chairs, Kids' menu + Parking: Free street parking, Usually plenty of parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en searchString: italian restaurant @@ -5040,59 +3325,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great wine list: true - Popular for: - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Hard liquor: true - - Vegetarian options: true - - Wine: true - Dining options: - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - - Family-friendly: true - - Groups: true - - Locals: true - Planning: - - Reservations required: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - Paid street parking: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great wine list + Popular for: Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Hard liquor, Vegetarian options, Wine + Dining options: Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic + Crowd: Family-friendly, Groups, Locals + Planning: Reservations required, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Paid street parking url: https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5168,69 +3413,22 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 11 AM–3 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Late-night food: true - - Private dining room: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Breakfast: true - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Groups: true - - Tourists: true - Planning: - Usually a wait: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Groups, Tourists + Planning: Usually a wait + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs + Parking: Free street parking, Paid street parking url: https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5306,66 +3504,24 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 4 AM–6 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible restroom: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Happy hour drinks: true - - Hard liquor: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Tourists: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Debit cards: true - - NFC mobile payments: true - Children: - - High chairs: true - - Kids' menu: true - Parking: - Free street parking: true - Pets: - Dogs allowed outside: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Tourists + Planning: Dinner reservations recommended, Accepts reservations + Payments: Debit cards, NFC mobile payments + Children: High chairs, Kids' menu + Parking: Free street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5486,63 +3642,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 3–9:30 PM additionalInfo: - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great coffee: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great coffee, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - Amenities: - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating + Amenities: Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic + Crowd: Family-friendly, Groups, LGBTQ+ friendly + Planning: Dinner reservations recommended, Accepts reservations + Payments: Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs url: https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5647,72 +3760,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–4 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great wine list: true - - Live music: true - - Sports: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Hard liquor: true - - Small plates: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Counter service: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Parking: - Paid street parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great wine list, Live music, Sports + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Small plates, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Parking: Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5772,62 +3833,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 5 to 10 PM additionalInfo: - Service options: - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Live music: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Delivery, Takeout, Dine-in + Highlights: Great cocktails, Great coffee, Great dessert, Great wine list, Live music + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Vegetarian options: true - - Wine: true - Dining options: - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Groups: true - - Locals: true - - Tourists: true - Planning: - - Reservations required: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + Dining options: Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Groups, Locals, Tourists + Planning: Reservations required, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards url: https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -5903,79 +3922,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–9 PM additionalInfo: - From the business: - Identifies as women-owned: true - Service options: - - Outdoor seating: true - - Curbside pickup: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - - Live music: true - - Serves local specialty: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Organic dishes: true - - Private dining room: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - - Kids' menu: true - Pets: - - Dogs allowed: true - - Dogs allowed outside: true + From the business: Identifies as women-owned + Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Live music, Serves local specialty + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs, Kids' menu + Pets: Dogs allowed, Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -6034,71 +3994,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Quick bite: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Casual: true - - Cozy: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Tourists: true - Planning: - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Parking: - - Free street parking: true - - Paid street parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Quick bite, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Casual, Cozy, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + Planning: Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Parking: Free street parking, Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8 searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -6158,66 +4067,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12 to 10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Healthy options: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Casual: true - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - High chairs: true - - Kids' menu: true - Parking: - Paid street parking: true - Pets: - Dogs allowed outside: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + Crowd: Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: High chairs, Kids' menu + Parking: Paid street parking + Pets: Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -6351,80 +4214,19 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–4 PM additionalInfo: - Service options: - - Outdoor seating: true - - No-contact delivery: true - - Delivery: true - - Onsite services: true - - Takeout: true - - Dine-in: true - Highlights: - - Fast service: true - - Great cocktails: true - - Great dessert: true - - Great wine list: true - - Live music: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible parking lot: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Happy hour drinks: true - - Happy hour food: true - - Hard liquor: true - - Late-night food: true - - Organic dishes: true - - Small plates: true - - Vegetarian options: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Catering: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Gender-neutral restroom: true - - Restroom: true - - Wi-Fi: true - - Free Wi-Fi: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - Crowd: - - Family-friendly: true - - Groups: true - - LGBTQ+ friendly: true - - Transgender safespace: true - Planning: - - Reservations required: true - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true - Children: - - Good for kids: true - - High chairs: true - Pets: - - Dogs allowed: true - - Dogs allowed outside: true + Service options: Outdoor seating, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music + Popular for: Lunch, Dinner, Solo dining + Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + Atmosphere: Cozy, Romantic, Trendy + Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + Planning: Reservations required, Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + Children: Good for kids, High chairs + Pets: Dogs allowed, Dogs allowed outside url: https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant @@ -6514,57 +4316,20 @@ exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` - day: Sunday hours: 12–10 PM additionalInfo: - Service options: - - Outdoor seating: true - - Delivery: true - - Takeout: true - - Dine-in: true - Highlights: - - Great cocktails: true - - Great coffee: true - - Great dessert: true - - Great wine list: true - Popular for: - - Lunch: true - - Dinner: true - - Solo dining: true + Service options: Outdoor seating, Delivery, Takeout, Dine-in + Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + Popular for: Lunch, Dinner, Solo dining Accessibility: - Wheelchair accessible entrance: true - Wheelchair accessible seating: true - Wheelchair accessible parking lot: false - Offerings: - - Alcohol: true - - Beer: true - - Cocktails: true - - Coffee: true - - Comfort food: true - - Hard liquor: true - - Small plates: true - - Wine: true - Dining options: - - Brunch: true - - Lunch: true - - Dinner: true - - Dessert: true - - Seating: true - - Table service: true - Amenities: - - Bar onsite: true - - Restroom: true - Atmosphere: - - Cozy: true - - Romantic: true - - Trendy: true - - Upscale: true - Crowd: - Groups: true - Planning: - - Dinner reservations recommended: true - - Accepts reservations: true - Payments: - - Credit cards: true - - Debit cards: true - - NFC mobile payments: true - - Credit cards: true + Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + Amenities: Bar onsite, Restroom + Atmosphere: Cozy, Romantic, Trendy, Upscale + Crowd: Groups + Planning: Dinner reservations recommended, Accepts reservations + Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards url: https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en searchString: italian restaurant diff --git a/tests/unit/json-to-markdown.test.ts b/tests/unit/json-to-markdown.test.ts index e8d086cc..ff52d4a1 100644 --- a/tests/unit/json-to-markdown.test.ts +++ b/tests/unit/json-to-markdown.test.ts @@ -86,26 +86,42 @@ describe('jsonToMarkdown', () => { it('should format object object array object inline', () => { expect(jsonToMarkdown( - { additionalInfo: - { Service_options: [ - { Outdoor_seating: true }, + { a: + { b: [ + { c: 1 }, ] } }, - )).toMatchInlineSnapshot('"additionalInfo: Service_options: - Outdoor_seating: true"'); + )).toMatchInlineSnapshot(`"a: b: - c: 1"`); }); it('should format object object array object multiline', () => { expect(jsonToMarkdown( - { additionalInfo: - { Service_options: [ - { Outdoor_seating: true }, - { Delivery: true }, + { a: + { b: [ + { c: 1 }, + { d: 2 }, ] } }, )).toMatchInlineSnapshot(` - "additionalInfo: - Service_options: - - Outdoor_seating: true - - Delivery: true" - `); + "a: + b: + - c: 1 + - d: 2" + `); + }); + + it('should simplify object with single property true', () => { + expect(jsonToMarkdown( + { additionalInfo: + { Service_options: [ + { Outdoor_seating: true }, + ] } }, + )).toMatchInlineSnapshot('"additionalInfo: Service_options: Outdoor_seating"'); + expect(jsonToMarkdown( + { additionalInfo: + { Service_options: [ + { Outdoor_seating: true }, + { Delivery: true }, + ] } }, + )).toMatchInlineSnapshot(`"additionalInfo: Service_options: Outdoor_seating, Delivery"`); }); it('should format real Google Maps dataset item', () => { From fb23b8b785e1dbd2d508af7443ce0acec5c19150 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 15:19:11 +0200 Subject: [PATCH 5/9] feat: more compatible markdown syntax --- src/utils/json-to-markdown.ts | 175 +- .../json-to-markdown.test.ts.snap | 8042 +++++++++-------- tests/unit/json-to-markdown.test.ts | 123 +- 3 files changed, 4252 insertions(+), 4088 deletions(-) diff --git a/src/utils/json-to-markdown.ts b/src/utils/json-to-markdown.ts index a4c63616..85c1e6ef 100644 --- a/src/utils/json-to-markdown.ts +++ b/src/utils/json-to-markdown.ts @@ -12,10 +12,36 @@ function isNotEmpty(json: JSON): boolean { return !isEmpty(json); } +function typeOfJson(json: JSON): 'string' | 'number' | 'boolean' | 'object' | 'array-simple' | 'array-object' | 'array-mixed' | 'null' { + if (Array.isArray(json)) { + if (json.every((item) => typeof item === 'string' || typeof item === 'number' || typeof item === 'boolean' || item === null)) { + return 'array-simple'; + } + if (json.every((item) => typeof item === 'object' && item !== null && !Array.isArray(item))) { + return 'array-object'; + } + return 'array-mixed'; + } + if (json === null) { + return 'null'; + } + return typeof json as 'string' | 'number' | 'boolean' | 'object' | 'null'; +} + +function isOneLiner(json: JSON): boolean { + const type = typeOfJson(json); + return type === 'string' || type === 'number' || type === 'boolean' || type === 'array-simple'; +} + +function getIndent(pad: number, withBullet: boolean): string { + return ' '.repeat((pad + 1 - (withBullet ? 1 : 0)) * 2) + (withBullet ? '- ' : ''); +} + export function jsonToMarkdown(json: Readonly): string { const cloned = structuredClone(json) as JSON; // Copy data to avoid mutating the original object const simplified = simplifyJson(cloned); - return serializeJsonToMarkdown(simplified, 0); + // TODO: clear null values + return serializeJsonTopLevel(simplified); } function simplifyJson(json: JSON): JSON { @@ -46,71 +72,96 @@ function simplifyJson(json: JSON): JSON { return result; } -function serializeJsonToMarkdown(json: JSON, pad = 0): string { - if (typeof json === 'string' || typeof json === 'number' || typeof json === 'boolean') { - return String(json); - } +function serializeJsonTopLevel(json: JSON): string { + switch (typeOfJson(json)) { + case 'string': + case 'number': + case 'boolean': + return String(json); + case 'null': + return ''; + case 'object': + return serializeJson(json, 0); + case 'array-simple': + case 'array-mixed': + return serializeJson(json, 0); + case 'array-object': + return (json as JSON[]).map((unknownItem, index) => { + const item = unknownItem as Record; + let title; + if (item.title) { + title = `${index + 1}. ${item.title}`; + delete item.title; + } else if (item.name) { + title = `${index + 1}. ${item.name}`; + delete item.name; + } else { + title = `${index + 1}. Item`; + } - if (json === null) { - return ''; // Ignore null + let result = ''; + result += `## ${title}\n`; + result += serializeJson(unknownItem, 0); + return result; + }).join('\n\n'); + default: + return serializeJson(json, 0); } +} - // Trivial array will be just list like 1, 2, 3 - if (Array.isArray(json)) { - if (json.length === 0) { - return ''; // Ignore empty arrays - } - if (json.every((item) => typeof item === 'string' || typeof item === 'number' || typeof item === 'boolean' || item === null)) { - // Null in array is ignored - return json.filter(isNotEmpty).join(', '); - } - - // Advanced array will use bullets - const indent = ' '.repeat(pad * 2); - const singleLine = json.length === 1 && json.every((item) => { - const content = serializeJsonToMarkdown(item, 0); - return !content.includes('\n'); - }); - if (singleLine) { - // For single-item arrays with simple content, don't add indent - return json.filter(isNotEmpty) - .map((value) => { - const content = serializeJsonToMarkdown(value, 0); - return `- ${content}`; +function serializeJson(json: JSON, pad: number): string { + switch (typeOfJson(json)) { + case 'string': + case 'number': + case 'boolean': + return pad === 0 ? getIndent(pad, true) + String(json) : String(json); + case 'object': + return Object.entries(json as Record) + .filter(([key, value]) => !isEmpty(value)) + .map(([key, value], index) => { + const indentLevel = pad === 0 ? 0 : 1; + const prefix = `${getIndent(indentLevel, true)}${key}:`; + if (isOneLiner(value)) { + return `${prefix} ${serializeJson(value, -1)}`; + } + return `${prefix}\n${serializeJson(value, pad + 1)}`; }) - .join(' '); - } - return json.filter(isNotEmpty) - .map((value, index) => { - const content = serializeJsonToMarkdown(value, 0); - const lines = content.split('\n'); - if (lines.length === 1) { - return `${indent}- ${lines[0]}`; + .join('\n'); + case 'array-simple': + return `${(json as JSON[]).filter(isNotEmpty).join(', ')}`; + case 'array-mixed': + return (json as JSON[]).filter(isNotEmpty).map((unknownItem) => { + const itemType = typeOfJson(unknownItem); + if (itemType === 'array-simple' || itemType === 'array-object') { + return `- ${serializeJson(unknownItem, -1)}`; } - // Special case for top-level arrays to match expected inconsistent indentation - const nestedIndent = pad === 0 ? ' '.repeat(index === 0 ? 3 : 2) : ' '.repeat(pad * 2 + 2); - return `${indent}- ${lines[0]}\n${lines.slice(1).map((line) => nestedIndent + line).join('\n')}`; - }) - .join('\n'); + if (itemType === 'object') { + return Object.entries(unknownItem as Record) + .filter(([key, value]) => !isEmpty(value)) + .map(([key, value], index) => { + const prefix = `${getIndent(pad, index === 0)}${key}:`; + if (isOneLiner(value)) { + return `${prefix} ${serializeJson(value, -1)}`; + } + return `${prefix}\n${serializeJson(value, pad + 1)}`; + }) + .join('\n'); + } + return serializeJson(unknownItem, pad); + }).join('\n'); + case 'array-object': + return (json as JSON[]).filter(isNotEmpty).map((unknownItem) => { + return Object.entries(unknownItem as Record) + .filter(([key, value]) => !isEmpty(value)) + .map(([key, value], index) => { + const indentLevel = pad === 1 ? 1 : pad; + const withBullet = pad === 1 ? index === 0 : true; + return `${getIndent(indentLevel, withBullet)}${key}: ${serializeJson(value, -1)}`; + }).join('\n'); + }).join('\n'); + case 'null': + return ''; + default: + throw new Error(`Unknown type: ${typeof json}`); } - - const indent = ' '.repeat(pad * 2); - - // Objects will be like key: value - return Object.entries(json) - .filter(([_, value]) => isNotEmpty(value)) - .map(([key, value]) => { - const valueStr = serializeJsonToMarkdown(value, pad + 1); - if ((Array.isArray(value) && valueStr.includes('\n')) - || (!Array.isArray(value) && typeof value === 'object' && value !== null && valueStr.includes('\n'))) { - // Multi-line arrays or objects in objects should be on new lines with proper indentation - return `${indent}${key}:\n${valueStr}`; - } - // For inline values, don't add indent if we're in a nested context or if current object has single property with simple value - const currentObjectHasSingleProperty = Object.keys(json).length === 1; - const valueIsSimple = typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean'; - const keyIndent = (pad > 0 && ((typeof value === 'object' && value !== null) || (currentObjectHasSingleProperty && valueIsSimple))) ? '' : indent; - return `${keyIndent}${key}: ${valueStr}`; - }) - .join('\n'); } diff --git a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap index 5560415b..350929e0 100644 --- a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap +++ b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap @@ -1,4341 +1,4395 @@ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` -"- title: Lena Trattoria - price: $50–100 - categoryName: Italian restaurant - address: 3470 E Tremont Ave, Bronx, NY 10465 - neighborhood: East Bronx - street: 3470 E Tremont Ave - city: Bronx - postalCode: 10465 - state: New York - countryCode: US - website: https://www.lenatrattoria.com/ - phone: (718) 239-5362 - phoneUnformatted: +17182395362 - claimThisBusiness: false - location: - lat: 40.8315408 - lng: -73.8273579 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJA4JRKzCLwokRHBTppuJxhpg - categories: Italian restaurant - fid: 0x89c28b302b518203:0x988671e2a6e9141c - cid: 10990597158921114652 - reviewsCount: 316 - imagesCount: 500 - scrapedAt: 2025-09-19T16:26:23.822Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/YtYEzY6K_pI?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: - - day: Monday - hours: 12 to 10:30 PM - - day: Tuesday - hours: 12 to 10:30 PM - - day: Wednesday - hours: 12 to 10:30 PM - - day: Thursday - hours: 12 to 10:30 PM - - day: Friday - hours: 12 to 11:30 PM - - day: Saturday - hours: 12 to 11:30 PM - - day: Sunday - hours: 12 to 11 PM - additionalOpeningHours: - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 12–4 PM - - day: Sunday - hours: 12–4 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, Has changing table(s), High chairs, Kids' menu - Parking: Free street parking, Valet parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 1 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipMyIj8Uqz4GF83nGPwJUQM8FiwfWl1SCrVEYIHl=w408-h272-k-no - kgmid: /g/11krpqpnkk -- title: Trattoria Ora - description: Homestyle pastas, seafood & meat dishes in a relaxed space with brick walls & a wine bar. - price: $30–50 - categoryName: Italian restaurant - address: 18-01 Astoria Blvd, Astoria, NY 11102 - neighborhood: Astoria - street: 18-01 Astoria Blvd - city: Astoria - postalCode: 11102 - state: New York - countryCode: US - phone: (718) 433-9680 - phoneUnformatted: +17184339680 - claimThisBusiness: false - location: - lat: 40.7723648 - lng: -73.9272762 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJTUW3105fwokRTUXSiiya0gg - categories: Italian restaurant - fid: 0x89c25f4ed7b7454d:0x8d29a2c8ad2454d - cid: 635740013510935885 - reviewsCount: 193 - imagesCount: 122 - scrapedAt: 2025-09-19T16:26:23.823Z - openingHours: +"## 1. Lena Trattoria +- price: $50–100 +- categoryName: Italian restaurant +- address: 3470 E Tremont Ave, Bronx, NY 10465 +- neighborhood: East Bronx +- street: 3470 E Tremont Ave +- city: Bronx +- postalCode: 10465 +- state: New York +- countryCode: US +- website: https://www.lenatrattoria.com/ +- phone: (718) 239-5362 +- phoneUnformatted: +17182395362 +- claimThisBusiness: false +- location: + - lat: 40.8315408 + - lng: -73.8273579 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJA4JRKzCLwokRHBTppuJxhpg +- categories: Italian restaurant +- fid: 0x89c28b302b518203:0x988671e2a6e9141c +- cid: 10990597158921114652 +- reviewsCount: 316 +- imagesCount: 500 +- scrapedAt: 2025-09-19T16:26:23.822Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/YtYEzY6K_pI?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11:30 PM + - day: Saturday + hours: 12 to 11:30 PM + - day: Sunday + hours: 12 to 11 PM +- additionalOpeningHours: + - Brunch: - day: Monday - hours: Closed + - hours: Closed - day: Tuesday - hours: 4 to 10 PM + - hours: Closed - day: Wednesday - hours: 4 to 10 PM + - hours: Closed - day: Thursday - hours: 4 to 10 PM + - hours: Closed - day: Friday - hours: 4 to 10 PM + - hours: Closed - day: Saturday - hours: 4 to 10 PM + - hours: 12–4 PM - day: Sunday - hours: 4 to 9 PM - additionalInfo: - Service options: No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great dessert, Great wine list, Live music - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic - Crowd: Groups - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Usually somewhat difficult to find a space - url: https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 2 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4np0dfTUFPfnaxynhB6Qo5odcsfvDT3medXWCx0tCjO9LnAKN1BtCAeT2ceq8GER77UpfaOqHVpO3lKvnGtCtO5Oc-crMntYibyLI-h3UeITQjKLMYwBatOWhe13ycU4g5TtWrWfkA=w426-h240-k-no - kgmid: /g/11f3tyq4w3 -- title: Sotto la Luna - price: $30–50 - categoryName: Italian restaurant - address: 34-39 31st St, Astoria, NY 11106 - neighborhood: Astoria - street: 34-39 31st St - city: Astoria - postalCode: 11106 - state: New York - countryCode: US - website: https://www.sottolalunanyc.com/ - phone: (631) 380-3569 - phoneUnformatted: +16313803569 - claimThisBusiness: false - location: - lat: 40.7582411 - lng: -73.9281794 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJBTuSXqhfwokRpjEVqzy1U6U - categories: Italian restaurant - fid: 0x89c25fa85e923b05:0xa553b53cab1531a6 - cid: 11913064711498052006 - reviewsCount: 778 - imagesCount: 1287 - scrapedAt: 2025-09-19T16:26:23.823Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/Y5WODzhav_U?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Has changing table(s), High chairs, Kids' menu + - Parking: Free street parking, Valet parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 1 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMyIj8Uqz4GF83nGPwJUQM8FiwfWl1SCrVEYIHl=w408-h272-k-no +- kgmid: /g/11krpqpnkk + +## 2. Trattoria Ora +- description: Homestyle pastas, seafood & meat dishes in a relaxed space with brick walls & a wine bar. +- price: $30–50 +- categoryName: Italian restaurant +- address: 18-01 Astoria Blvd, Astoria, NY 11102 +- neighborhood: Astoria +- street: 18-01 Astoria Blvd +- city: Astoria +- postalCode: 11102 +- state: New York +- countryCode: US +- phone: (718) 433-9680 +- phoneUnformatted: +17184339680 +- claimThisBusiness: false +- location: + - lat: 40.7723648 + - lng: -73.9272762 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJTUW3105fwokRTUXSiiya0gg +- categories: Italian restaurant +- fid: 0x89c25f4ed7b7454d:0x8d29a2c8ad2454d +- cid: 635740013510935885 +- reviewsCount: 193 +- imagesCount: 122 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 9 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 2 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4np0dfTUFPfnaxynhB6Qo5odcsfvDT3medXWCx0tCjO9LnAKN1BtCAeT2ceq8GER77UpfaOqHVpO3lKvnGtCtO5Oc-crMntYibyLI-h3UeITQjKLMYwBatOWhe13ycU4g5TtWrWfkA=w426-h240-k-no +- kgmid: /g/11f3tyq4w3 + +## 3. Sotto la Luna +- price: $30–50 +- categoryName: Italian restaurant +- address: 34-39 31st St, Astoria, NY 11106 +- neighborhood: Astoria +- street: 34-39 31st St +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: https://www.sottolalunanyc.com/ +- phone: (631) 380-3569 +- phoneUnformatted: +16313803569 +- claimThisBusiness: false +- location: + - lat: 40.7582411 + - lng: -73.9281794 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJBTuSXqhfwokRpjEVqzy1U6U +- categories: Italian restaurant +- fid: 0x89c25fa85e923b05:0xa553b53cab1531a6 +- cid: 11913064711498052006 +- reviewsCount: 778 +- imagesCount: 1287 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/Y5WODzhav_U?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Drive-through, Takeout, Dine-in + - Highlights: Fast service, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 3 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqLPPG4gUHad5-56OgX1jULHAre4IBYzvj_Bh4QBgMLCUDwUpa2Gd0JrEWD_M8q_hrWDjL-XyxWq5kLgIGtqqBIReUX9NPQFpihEqvKpy-ptIrdm8WLZLZfi4JV7VFTpces0S2a=w408-h544-k-no +- kgmid: /g/11nxnzbrf1 + +## 4. Pine Restaurant +- description: Longtime Italian eatery featuring a raw bar & classic entrees, including steak & seafood dishes. +- price: $$ +- categoryName: Italian restaurant +- address: 1913 Bronxdale Ave, Bronx, NY 10462 +- neighborhood: East Bronx +- street: 1913 Bronxdale Ave +- city: Bronx +- postalCode: 10462 +- state: New York +- countryCode: US +- website: http://fjpine.com/ +- phone: (718) 792-5956 +- phoneUnformatted: +17187925956 +- claimThisBusiness: false +- location: + - lat: 40.8487296 + - lng: -73.8622597 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJIcUqAKP0wokRJzfqJIeeYkA +- categories: Italian restaurant, Banquet hall, Bar, Caterer, Event venue +- fid: 0x89c2f4a3002ac521:0x40629e8724ea3727 +- cid: 4639444869422135079 +- reviewsCount: 4625 +- imagesCount: 3457 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/PCWagUGpapQ?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 12 to 10 PM + - hours: 10 AM–9:30 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 10 AM–9:30 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 10 AM–9:30 PM - day: Thursday - hours: 12 to 10 PM + - hours: 10 AM–9:30 PM - day: Friday - hours: 12 to 11 PM + - hours: 10 AM–10:30 PM - day: Saturday - hours: 12 to 11 PM + - hours: 10 AM–10:30 PM - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Curbside pickup, No-contact delivery, Delivery, Drive-through, Takeout, Dine-in - Highlights: Fast service, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Small plates, Vegetarian options, Wine - Dining options: Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Trendy - Crowd: Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 3 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqLPPG4gUHad5-56OgX1jULHAre4IBYzvj_Bh4QBgMLCUDwUpa2Gd0JrEWD_M8q_hrWDjL-XyxWq5kLgIGtqqBIReUX9NPQFpihEqvKpy-ptIrdm8WLZLZfi4JV7VFTpces0S2a=w408-h544-k-no - kgmid: /g/11nxnzbrf1 -- title: Pine Restaurant - description: Longtime Italian eatery featuring a raw bar & classic entrees, including steak & seafood dishes. - price: $$ - categoryName: Italian restaurant - address: 1913 Bronxdale Ave, Bronx, NY 10462 - neighborhood: East Bronx - street: 1913 Bronxdale Ave - city: Bronx - postalCode: 10462 - state: New York - countryCode: US - website: http://fjpine.com/ - phone: (718) 792-5956 - phoneUnformatted: +17187925956 - claimThisBusiness: false - location: - lat: 40.8487296 - lng: -73.8622597 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJIcUqAKP0wokRJzfqJIeeYkA - categories: Italian restaurant, Banquet hall, Bar, Caterer, Event venue - fid: 0x89c2f4a3002ac521:0x40629e8724ea3727 - cid: 4639444869422135079 - reviewsCount: 4625 - imagesCount: 3457 - scrapedAt: 2025-09-19T16:26:23.823Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/PCWagUGpapQ?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 10 AM–9:30 PM + - Takeout: - day: Monday - hours: 11 AM to 10 PM + - hours: 10 AM–9:30 PM - day: Tuesday - hours: 11 AM to 10 PM + - hours: 10 AM–9:30 PM - day: Wednesday - hours: 11 AM to 10 PM + - hours: 10 AM–9:30 PM - day: Thursday - hours: 11 AM to 10 PM + - hours: 10 AM–9:30 PM - day: Friday - hours: 11 AM to 11 PM + - hours: 10 AM–10:30 PM - day: Saturday - hours: 11 AM to 11 PM + - hours: 10 AM–10:30 PM - day: Sunday - hours: 11 AM to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 10 AM–9:30 PM - - day: Tuesday - hours: 10 AM–9:30 PM - - day: Wednesday - hours: 10 AM–9:30 PM - - day: Thursday - hours: 10 AM–9:30 PM - - day: Friday - hours: 10 AM–10:30 PM - - day: Saturday - hours: 10 AM–10:30 PM - - day: Sunday - hours: 10 AM–9:30 PM - Takeout: - - day: Monday - hours: 10 AM–9:30 PM - - day: Tuesday - hours: 10 AM–9:30 PM - - day: Wednesday - hours: 10 AM–9:30 PM - - day: Thursday - hours: 10 AM–9:30 PM - - day: Friday - hours: 10 AM–10:30 PM - - day: Saturday - hours: 10 AM–10:30 PM - - day: Sunday - hours: 10 AM–9:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Fireplace, Great beer selection, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Private dining room, Quick bite, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Historic, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, Good for kids birthday, High chairs, Kids' menu - Parking: Free street parking, Usually plenty of parking, Valet parking - url: https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 4 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqiMHLnk8HOuxz6mjpHd0YAIb5Embyavz95RcgF348wDNWBOT0hoLGIb2RxqFERGp34k6nRL2qzM1u9BvcIsEUYf6sQspDpn5jDEKFoNsBNAicrkQVF30hYjBoXCn5Kk7kEjZhFJQ=w408-h306-k-no - kgmid: /g/1tl8ln63 -- title: Uncle Peter's - description: Relaxing, brick-lined bar & eatery serves up filling Italian dishes & lunch specials. - price: $$ - categoryName: Italian restaurant - address: 83-15 Northern Blvd, Jackson Heights, NY 11372 - neighborhood: Jackson Heights - street: 83-15 Northern Blvd - city: Jackson Heights - postalCode: 11372 - state: New York - countryCode: US - website: http://www.unclepetersrestaurant.com/ - phone: (718) 651-8600 - phoneUnformatted: +17186518600 - claimThisBusiness: false - location: - lat: 40.7559179 - lng: -73.8838536 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ-RWrUqFfwokRBdK7GCBreRw - categories: Italian restaurant - fid: 0x89c25fa152ab15f9:0x1c796b2018bbd205 - cid: 2051788890842059269 - reviewsCount: 807 - imagesCount: 868 - scrapedAt: 2025-09-19T16:26:23.823Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/UHB8aU5NZjs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 10 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Fireplace, Great beer selection, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Private dining room, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Historic, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Good for kids birthday, High chairs, Kids' menu + - Parking: Free street parking, Usually plenty of parking, Valet parking +- url: https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 4 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqiMHLnk8HOuxz6mjpHd0YAIb5Embyavz95RcgF348wDNWBOT0hoLGIb2RxqFERGp34k6nRL2qzM1u9BvcIsEUYf6sQspDpn5jDEKFoNsBNAicrkQVF30hYjBoXCn5Kk7kEjZhFJQ=w408-h306-k-no +- kgmid: /g/1tl8ln63 + +## 5. Uncle Peter's +- description: Relaxing, brick-lined bar & eatery serves up filling Italian dishes & lunch specials. +- price: $$ +- categoryName: Italian restaurant +- address: 83-15 Northern Blvd, Jackson Heights, NY 11372 +- neighborhood: Jackson Heights +- street: 83-15 Northern Blvd +- city: Jackson Heights +- postalCode: 11372 +- state: New York +- countryCode: US +- website: http://www.unclepetersrestaurant.com/ +- phone: (718) 651-8600 +- phoneUnformatted: +17186518600 +- claimThisBusiness: false +- location: + - lat: 40.7559179 + - lng: -73.8838536 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ-RWrUqFfwokRBdK7GCBreRw +- categories: Italian restaurant +- fid: 0x89c25fa152ab15f9:0x1c796b2018bbd205 +- cid: 2051788890842059269 +- reviewsCount: 807 +- imagesCount: 868 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/UHB8aU5NZjs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: - day: Monday - hours: 12 to 10 PM + - hours: 4–6 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 4–6 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 4–6 PM - day: Thursday - hours: 12 to 10 PM + - hours: 4–6 PM - day: Friday - hours: 12 to 11 PM + - hours: 4–6 PM - day: Saturday - hours: 12 to 11 PM + - hours: Closed - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Happy hours: - - day: Monday - hours: 4–6 PM - - day: Tuesday - hours: 4–6 PM - - day: Wednesday - hours: 4–6 PM - - day: Thursday - hours: 4–6 PM - - day: Friday - hours: 4–6 PM - - day: Saturday - hours: Closed - - day: Sunday - hours: Closed - Delivery: - - day: Monday - hours: 12–9 PM - - day: Tuesday - hours: 12–9 PM - - day: Wednesday - hours: 12–9 PM - - day: Thursday - hours: 12–9 PM - - day: Friday - hours: 12–9:30 PM - - day: Saturday - hours: 12–9:30 PM - - day: Sunday - hours: 12–9 PM - Takeout: - - day: Monday - hours: 12–9 PM - - day: Tuesday - hours: 12–9 PM - - day: Wednesday - hours: 12–9 PM - - day: Thursday - hours: 12–9 PM - - day: Friday - hours: 12–9:30 PM - - day: Saturday - hours: 12–9:30 PM - - day: Sunday - hours: 12–9 PM - additionalInfo: - From the business: Identifies as women-owned - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Braille menu, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Parking: Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 5 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npEfOTq2zJ73-eddnKZBQO8TjjlswntyctrI-EEhLHzOReRbgyHYDMYoQXA0oGhLq9DNKtDkdSGZIXzuPlvY6cMTGG_885x4Gr1870voAHI183xyLpUA0AN_Pd90m8lZIOlCLl3=w408-h306-k-no - kgmid: /g/1tkp5xcc -- title: Porto Salvo - description: Cozy spot resembling an old port tavern offering Italian fare, local draft beers & outdoor seating. - price: $30–50 - categoryName: Italian restaurant - address: 424 E 161st St, Bronx, NY 10451 - neighborhood: Melrose - street: 424 E 161st St - city: Bronx - postalCode: 10451 - state: New York - countryCode: US - website: https://portosalvonyc.com/?utm_source=google - phone: (929) 376-7866 - phoneUnformatted: +19293767866 - claimThisBusiness: false - location: - lat: 40.8236957 - lng: -73.9129382 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJx-zorsr1wokR5a-0j2bBtPI - categories: Italian restaurant, Brunch restaurant, Cocktail bar, Fine dining restaurant, Oyster bar restaurant, Pizza restaurant, Seafood restaurant, Wine bar - fid: 0x89c2f5caaee8ecc7:0xf2b4c1668fb4afe5 - cid: 17488815899228286949 - reviewsCount: 845 - imagesCount: 943 - scrapedAt: 2025-09-19T16:26:23.823Z - openingHours: + - hours: Closed + - Delivery: - day: Monday - hours: 12 to 10 PM + - hours: 12–9 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 12–9 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 12–9 PM - day: Thursday - hours: 12 to 10 PM + - hours: 12–9 PM - day: Friday - hours: 12 to 11 PM + - hours: 12–9:30 PM - day: Saturday - hours: 12 to 11 PM + - hours: 12–9:30 PM - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 1–9 PM - - day: Tuesday - hours: 1–9 PM - - day: Wednesday - hours: 1–9 PM - - day: Thursday - hours: 1–9 PM - - day: Friday - hours: 1–9 PM - - day: Saturday - hours: 1–9 PM - - day: Sunday - hours: 1–9 PM - Takeout: - - day: Monday - hours: 12–9 PM - - day: Tuesday - hours: 12–9 PM - - day: Wednesday - hours: 12–9 PM - - day: Thursday - hours: 12–9 PM - - day: Friday - hours: 12–9 PM - - day: Saturday - hours: 12–9 PM - - day: Sunday - hours: 12–9 PM - additionalInfo: - From the business: Identifies as Asian-owned, Identifies as LGBTQ+ owned - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great beer selection, Great cocktails, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Late-night food, Organic dishes, Quick bite, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Paid parking garage - url: https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 6 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noBw1FVHhrlZf1LnLpyh5daCdK2aTCg5q4VKeoyTMjkOFicx74L1JXWR5TYuPgTJU9gKv0Mpiy3d_DK5Klttu8WRYStIRSZU5-nd_0vhl-jtNyguz1KxZteK5xoxkWpxHv4Ji6B=w408-h306-k-no - kgmid: /g/11dfqw4b3t -- title: Napoli's - description: Unpretentious restaurant serving up Italian & Balkan dishes like pizza, pasta, burek & goulash. - price: $10–20 - categoryName: Italian restaurant - address: 28-51 42nd St, Astoria, NY 11103 - neighborhood: Astoria - street: 28-51 42nd St - city: Astoria - postalCode: 11103 - state: New York - countryCode: US - phone: (347) 531-0202 - phoneUnformatted: +13475310202 - claimThisBusiness: false - location: - lat: 40.7633718 - lng: -73.9130096 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ69B93D9fwokRpdmphb9tDMs - categories: Italian restaurant, Delivery Restaurant - fid: 0x89c25f3fdc7dd0eb:0xcb0c6dbf85a9d9a5 - cid: 14631189958768581029 - reviewsCount: 160 - imagesCount: 84 - scrapedAt: 2025-09-19T16:26:23.823Z - openingHours: + - hours: 12–9 PM + - Takeout: - day: Monday - hours: 8 AM to 10 PM + - hours: 12–9 PM - day: Tuesday - hours: 8 AM to 10 PM + - hours: 12–9 PM - day: Wednesday - hours: 8 AM to 10 PM + - hours: 12–9 PM - day: Thursday - hours: 8 AM to 10 PM + - hours: 12–9 PM - day: Friday - hours: 8 AM to 10 PM + - hours: 12–9:30 PM - day: Saturday - hours: 8 AM to 10 PM + - hours: 12–9:30 PM - day: Sunday - hours: 8 AM to 10 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service - Popular for: Lunch, Dinner, Solo dining - Accessibility: - Wheelchair accessible parking lot: false - Offerings: Coffee, Comfort food, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options - Dining options: Breakfast, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Restroom - Atmosphere: Casual, Cozy, Trendy - Crowd: Groups - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, Kids' menu - Parking: Free street parking - url: https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 7 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipP_WOoL_M9mf1weLBGCZhv9DRsQP1-B3orU26YW=w426-h240-k-no - kgmid: /g/11fyzd9th8 -- title: VITE vinosteria - description: Rustic-chic neighborhood joint with homestyle Italian fare, a variety of wines & a weekend brunch. - price: $50–100 - categoryName: Italian restaurant - address: 31-05 34th St, Astoria, NY 11106 - neighborhood: Astoria - street: 31-05 34th St - city: Astoria - postalCode: 11106 - state: New York - countryCode: US - website: http://www.vitevinosteria.com/ - phone: (718) 278-8483 - phoneUnformatted: +17182788483 - claimThisBusiness: false - location: - lat: 40.7629318 - lng: -73.9211655 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJu_ZPCDlfwokRNS7856uUxDk - categories: Italian restaurant, Caterer, Cocktail bar, Delivery Restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Wine bar - fid: 0x89c25f39084ff6bb:0x39c494abe7fc2e35 - cid: 4162615421649563189 - reviewsCount: 724 - imagesCount: 1126 - scrapedAt: 2025-09-19T16:26:23.824Z - openingHours: + - hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Braille menu, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 5 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npEfOTq2zJ73-eddnKZBQO8TjjlswntyctrI-EEhLHzOReRbgyHYDMYoQXA0oGhLq9DNKtDkdSGZIXzuPlvY6cMTGG_885x4Gr1870voAHI183xyLpUA0AN_Pd90m8lZIOlCLl3=w408-h306-k-no +- kgmid: /g/1tkp5xcc + +## 6. Porto Salvo +- description: Cozy spot resembling an old port tavern offering Italian fare, local draft beers & outdoor seating. +- price: $30–50 +- categoryName: Italian restaurant +- address: 424 E 161st St, Bronx, NY 10451 +- neighborhood: Melrose +- street: 424 E 161st St +- city: Bronx +- postalCode: 10451 +- state: New York +- countryCode: US +- website: https://portosalvonyc.com/?utm_source=google +- phone: (929) 376-7866 +- phoneUnformatted: +19293767866 +- claimThisBusiness: false +- location: + - lat: 40.8236957 + - lng: -73.9129382 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJx-zorsr1wokR5a-0j2bBtPI +- categories: Italian restaurant, Brunch restaurant, Cocktail bar, Fine dining restaurant, Oyster bar restaurant, Pizza restaurant, Seafood restaurant, Wine bar +- fid: 0x89c2f5caaee8ecc7:0xf2b4c1668fb4afe5 +- cid: 17488815899228286949 +- reviewsCount: 845 +- imagesCount: 943 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 4 to 10:30 PM + - hours: 1–9 PM - day: Tuesday - hours: 4 to 10:30 PM + - hours: 1–9 PM - day: Wednesday - hours: 4 to 10:30 PM + - hours: 1–9 PM - day: Thursday - hours: 4 to 10:30 PM + - hours: 1–9 PM - day: Friday - hours: 4 to 11 PM + - hours: 1–9 PM - day: Saturday - hours: 12 to 11 PM + - hours: 1–9 PM - day: Sunday - hours: 12 to 10:30 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 5–10:30 PM - - day: Tuesday - hours: 5–10:30 PM - - day: Wednesday - hours: 5–10:30 PM - - day: Thursday - hours: 5–10:30 PM - - day: Friday - hours: 4–11 PM - - day: Saturday - hours: 12–11 PM - - day: Sunday - hours: 12–10:30 PM - Takeout: - - day: Monday - hours: 4–10:30 PM - - day: Tuesday - hours: 4–10:30 PM - - day: Wednesday - hours: 4–10:30 PM - - day: Thursday - hours: 4–10:30 PM - - day: Friday - hours: 4–11 PM - - day: Saturday - hours: 12–11 PM - - day: Sunday - hours: 12–10:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, Usually difficult to find a space - url: https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 8 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCOyJR1v0uWAzCZg7o0bk6AM7Zj1m3fcxKpDcmOUXeEJZHBN64dcaJ8yeZsUfDOPEZFbTnU9pt4T4cZaKU97b7DvRsqoWP-98ETrPLiAlGkt40l1Fl2_JlCl14sckXDd2KyZpw=w408-h306-k-no - kgmid: /g/1q6kk4p_m -- title: Piccolo Sogno - description: Charming, chef-owned restaurant serving Italian cuisine & pizza in an intimate environment. - price: $20–30 - categoryName: Italian restaurant - address: 195-14 47th Ave, Flushing, NY 11358 - neighborhood: Flushing - street: 195-14 47th Ave - city: Flushing - postalCode: 11358 - state: New York - countryCode: US - website: https://www.piccolosognony.com/ - phone: (718) 224-1717 - phoneUnformatted: +17182241717 - claimThisBusiness: false - location: - lat: 40.752459 - lng: -73.785769 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJU8dOIc9hwokRcYOEBJXggc0 - categories: Italian restaurant, Caterer, Fine dining restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza Takeout, Restaurant - fid: 0x89c261cf214ec753:0xcd81e09504848371 - cid: 14808363980401443697 - reviewsCount: 480 - imagesCount: 388 - scrapedAt: 2025-09-19T16:26:23.824Z - openingHours: + - hours: 1–9 PM + - Takeout: - day: Monday - hours: Closed + - hours: 12–9 PM - day: Tuesday - hours: Closed + - hours: 12–9 PM - day: Wednesday - hours: 11 AM to 8 PM + - hours: 12–9 PM - day: Thursday - hours: 11 AM to 8 PM + - hours: 12–9 PM - day: Friday - hours: 11 AM to 9 PM + - hours: 12–9 PM - day: Saturday - hours: 11 AM to 9 PM + - hours: 12–9 PM - day: Sunday - hours: 11 AM to 8 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: 5–8 PM - - day: Thursday - hours: 5–8 PM - - day: Friday - hours: 5–9 PM - - day: Saturday - hours: 5–9 PM - - day: Sunday - hours: 11 AM–8 PM - Takeout: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: 11 AM–8 PM - - day: Thursday - hours: 11 AM–8 PM - - day: Friday - hours: 11 AM–9 PM - - day: Saturday - hours: 11 AM–9 PM - - day: Sunday - hours: 11 AM–8 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Beer, Coffee, Comfort food, Healthy options, Quick bite, Vegan options, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Quiet, Romantic - Crowd: Family-friendly, Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Parking: Free street parking, Usually somewhat difficult to find a space - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 9 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqsE8ucmgrKR4BdPoDePAVgCO3ATznshCfGfOikObRl52az29a5t4HRrOVbcSJbUJbo-ory9T9pLXO-7qm_cw5DN4PJCX2BAyFCqNokINCl7YG-OF9ySq-4i_T0Zbk8Qol-97UnFQ=w513-h240-k-no - kgmid: /g/1tdvqntx -- title: Palermo - description: Brick-oven pizzas, pasta & other Italian eats in a casual space with a full bar & patio seating. - price: $$ - categoryName: Italian restaurant - address: 23-92 21st St, Astoria, NY 11105 - neighborhood: Astoria - street: 23-92 21st St - city: Astoria - postalCode: 11105 - state: New York - countryCode: US - website: http://palermoastoria.com/ - phone: (718) 267-0010 - phoneUnformatted: +17182670010 - claimThisBusiness: false - location: - lat: 40.7770481 - lng: -73.9214503 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJV1Gg2FpfwokRS6XpD37qw8E - categories: Italian restaurant - fid: 0x89c25f5ad8a05157:0xc1c3ea7e0fe9a54b - cid: 13962261096932418891 - reviewsCount: 663 - imagesCount: 506 - scrapedAt: 2025-09-19T16:26:23.824Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/kBAv8B6pJiU?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as Asian-owned, Identifies as LGBTQ+ owned + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great beer selection, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Late-night food, Organic dishes, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid parking garage +- url: https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 6 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noBw1FVHhrlZf1LnLpyh5daCdK2aTCg5q4VKeoyTMjkOFicx74L1JXWR5TYuPgTJU9gKv0Mpiy3d_DK5Klttu8WRYStIRSZU5-nd_0vhl-jtNyguz1KxZteK5xoxkWpxHv4Ji6B=w408-h306-k-no +- kgmid: /g/11dfqw4b3t + +## 7. Napoli's +- description: Unpretentious restaurant serving up Italian & Balkan dishes like pizza, pasta, burek & goulash. +- price: $10–20 +- categoryName: Italian restaurant +- address: 28-51 42nd St, Astoria, NY 11103 +- neighborhood: Astoria +- street: 28-51 42nd St +- city: Astoria +- postalCode: 11103 +- state: New York +- countryCode: US +- phone: (347) 531-0202 +- phoneUnformatted: +13475310202 +- claimThisBusiness: false +- location: + - lat: 40.7633718 + - lng: -73.9130096 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ69B93D9fwokRpdmphb9tDMs +- categories: Italian restaurant, Delivery Restaurant +- fid: 0x89c25f3fdc7dd0eb:0xcb0c6dbf85a9d9a5 +- cid: 14631189958768581029 +- reviewsCount: 160 +- imagesCount: 84 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: + - day: Monday + hours: 8 AM to 10 PM + - day: Tuesday + hours: 8 AM to 10 PM + - day: Wednesday + hours: 8 AM to 10 PM + - day: Thursday + hours: 8 AM to 10 PM + - day: Friday + hours: 8 AM to 10 PM + - day: Saturday + hours: 8 AM to 10 PM + - day: Sunday + hours: 8 AM to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Coffee, Comfort food, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options + - Dining options: Breakfast, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Kids' menu + - Parking: Free street parking +- url: https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 7 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipP_WOoL_M9mf1weLBGCZhv9DRsQP1-B3orU26YW=w426-h240-k-no +- kgmid: /g/11fyzd9th8 + +## 8. VITE vinosteria +- description: Rustic-chic neighborhood joint with homestyle Italian fare, a variety of wines & a weekend brunch. +- price: $50–100 +- categoryName: Italian restaurant +- address: 31-05 34th St, Astoria, NY 11106 +- neighborhood: Astoria +- street: 31-05 34th St +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: http://www.vitevinosteria.com/ +- phone: (718) 278-8483 +- phoneUnformatted: +17182788483 +- claimThisBusiness: false +- location: + - lat: 40.7629318 + - lng: -73.9211655 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJu_ZPCDlfwokRNS7856uUxDk +- categories: Italian restaurant, Caterer, Cocktail bar, Delivery Restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Wine bar +- fid: 0x89c25f39084ff6bb:0x39c494abe7fc2e35 +- cid: 4162615421649563189 +- reviewsCount: 724 +- imagesCount: 1126 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: + - day: Monday + hours: 4 to 10:30 PM + - day: Tuesday + hours: 4 to 10:30 PM + - day: Wednesday + hours: 4 to 10:30 PM + - day: Thursday + hours: 4 to 10:30 PM + - day: Friday + hours: 4 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 12 to 10 PM + - hours: 5–10:30 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 5–10:30 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 5–10:30 PM - day: Thursday - hours: 12 to 10 PM + - hours: 5–10:30 PM - day: Friday - hours: 12 to 10:30 PM + - hours: 4–11 PM - day: Saturday - hours: 11 AM to 11 PM + - hours: 12–11 PM - day: Sunday - hours: 11 AM to 9:30 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 12–9:45 PM - - day: Tuesday - hours: 12–9:45 PM - - day: Wednesday - hours: 12–9:45 PM - - day: Thursday - hours: 12–9:45 PM - - day: Friday - hours: 12–10:30 PM - - day: Saturday - hours: 11 AM–10:30 PM - - day: Sunday - hours: 11 AM–9:30 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic - Crowd: Groups, LGBTQ+ friendly - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, Usually plenty of parking - url: https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 10 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nos8RzEvGfPSN_W8PnoSszfnY_UmiQVMRo4a_hYlB6hUpXboeO-p6ozTFPnHxjcB3D4lYbpJQOLZ5JG0DvtIMCU46lCrjrZKoYdjlcXl95qIwmtHsMsi8o1eG_65tStjxg1Xct1=w408-h306-k-no - kgmid: /g/1pxq42syy -- title: Riviera Ristorante - description: Warm, casual venue offering Northern & Southern Italian fare, including pasta, veal & seafood. - price: $30–50 - categoryName: Italian restaurant - address: 17-12 Utopia Pkwy, Whitestone, NY 11357 - neighborhood: Whitestone - street: 17-12 Utopia Pkwy - city: Whitestone - postalCode: 11357 - state: New York - countryCode: US - website: http://www.rivieraristorante.com/ - phone: (718) 352-2225 - phoneUnformatted: +17183522225 - claimThisBusiness: false - location: - lat: 40.7822521 - lng: -73.7947252 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJM1jHAGKKwokRF7ZyZYvOiQQ - categories: Italian restaurant, Restaurant - fid: 0x89c28a6200c75833:0x489ce8b6572b617 - cid: 327019546058864151 - reviewsCount: 651 - imagesCount: 298 - scrapedAt: 2025-09-19T16:26:23.824Z - openingHours: + - hours: 12–10:30 PM + - Takeout: - day: Monday - hours: Closed + - hours: 4–10:30 PM - day: Tuesday - hours: 12 to 9 PM + - hours: 4–10:30 PM - day: Wednesday - hours: 12 to 9 PM + - hours: 4–10:30 PM - day: Thursday - hours: 12 to 9 PM + - hours: 4–10:30 PM - day: Friday - hours: 12 to 10 PM + - hours: 4–11 PM - day: Saturday - hours: 12 to 10 PM + - hours: 12–11 PM - day: Sunday - hours: 12 to 9 PM - additionalInfo: - Service options: Outdoor seating, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic - Crowd: Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking - url: https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 11 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npnM0VIakTj8BctsRSIobxTNXGLmHD_bVY3QPXZ6dQ5-pGOFpuQwJwjlKmNYf6oEzE9G1tl7oxOrpBLymapRZNDoO5cdtbWcKWJz1-h_0AW8gOtfott4P-eOhucDpZVitK1fcbK=w408-h544-k-no - kgmid: /g/1td72y7w -- title: Da Franco & Tony Ristorante - description: Casual, brick-clad stop offering Italian-American fare such as fresh gnocchi & chicken scarpariello. - price: $50–100 - categoryName: Italian restaurant - address: 2815 Middletown Rd, Bronx, NY 10461 - neighborhood: East Bronx - street: 2815 Middletown Rd - city: Bronx - postalCode: 10461 - state: New York - countryCode: US - website: http://dafrancoandtony.com/ - phone: (718) 684-2815 - phoneUnformatted: +17186842815 - claimThisBusiness: false - location: - lat: 40.8435906 - lng: -73.8360552 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ7WHfHVKLwokRGB9Q__vhY18 - categories: Italian restaurant - fid: 0x89c28b521ddf61ed:0x5f63e1fbff501f18 - cid: 6873585928733990680 - reviewsCount: 398 - imagesCount: 196 - scrapedAt: 2025-09-19T16:26:23.824Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/VJl_nGToR40?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 12–10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 8 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCOyJR1v0uWAzCZg7o0bk6AM7Zj1m3fcxKpDcmOUXeEJZHBN64dcaJ8yeZsUfDOPEZFbTnU9pt4T4cZaKU97b7DvRsqoWP-98ETrPLiAlGkt40l1Fl2_JlCl14sckXDd2KyZpw=w408-h306-k-no +- kgmid: /g/1q6kk4p_m + +## 9. Piccolo Sogno +- description: Charming, chef-owned restaurant serving Italian cuisine & pizza in an intimate environment. +- price: $20–30 +- categoryName: Italian restaurant +- address: 195-14 47th Ave, Flushing, NY 11358 +- neighborhood: Flushing +- street: 195-14 47th Ave +- city: Flushing +- postalCode: 11358 +- state: New York +- countryCode: US +- website: https://www.piccolosognony.com/ +- phone: (718) 224-1717 +- phoneUnformatted: +17182241717 +- claimThisBusiness: false +- location: + - lat: 40.752459 + - lng: -73.785769 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU8dOIc9hwokRcYOEBJXggc0 +- categories: Italian restaurant, Caterer, Fine dining restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza Takeout, Restaurant +- fid: 0x89c261cf214ec753:0xcd81e09504848371 +- cid: 14808363980401443697 +- reviewsCount: 480 +- imagesCount: 388 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11 AM to 8 PM + - day: Thursday + hours: 11 AM to 8 PM + - day: Friday + hours: 11 AM to 9 PM + - day: Saturday + hours: 11 AM to 9 PM + - day: Sunday + hours: 11 AM to 8 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 12 to 9 PM + - hours: Closed - day: Tuesday - hours: 12 to 9 PM + - hours: Closed - day: Wednesday - hours: 12 to 9 PM + - hours: 5–8 PM - day: Thursday - hours: 12 to 9 PM + - hours: 5–8 PM - day: Friday - hours: 12 to 10 PM + - hours: 5–9 PM - day: Saturday - hours: 12 to 10 PM + - hours: 5–9 PM - day: Sunday - hours: 12 to 9 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 12–10 PM - - day: Tuesday - hours: 12–10 PM - - day: Wednesday - hours: 12–10 PM - - day: Thursday - hours: 12–10 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 2–9:30 PM - Takeout: - - day: Monday - hours: 12–10 PM - - day: Tuesday - hours: 12–10 PM - - day: Wednesday - hours: 12–10 PM - - day: Thursday - hours: 12–10 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 2–9:30 PM - additionalInfo: - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great dessert - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Restroom - Atmosphere: Casual, Cozy, Romantic - Crowd: Family-friendly, Groups - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Parking: Free parking lot, Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 12 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr1oPmQsMBxsBmvY8pRGxGthRlMGP0xNpS3mY4YvgaN_nIx4XvO6WcnPoN52wcbD1YJKxV4YgcOSbedMmxUfsdsduYCJxVZwT03U5awD0f_tHBescwlzjBvD3X7h4VpZc4YHGVllQ=w408-h306-k-no - kgmid: /g/11b6q5ddy9 -- title: Sac's Place - description: Family-run local mainstay serving up crispy coal-oven pizzas plus pastas in a simple setting. - price: $30–50 - categoryName: Italian restaurant - address: 35-11 35th Ave, Astoria, NY 11106 - neighborhood: Astoria - street: 35-11 35th Ave - city: Astoria - postalCode: 11106 - state: New York - countryCode: US - website: http://sacsplace.com/ - phone: (718) 204-5002 - phoneUnformatted: +17182045002 - claimThisBusiness: false - location: - lat: 40.7567144 - lng: -73.9246701 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ9yi_ITdfwokR-NlVT6D9tMw - categories: Italian restaurant, Bar, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Restaurant - fid: 0x89c25f3721bf28f7:0xccb4fda04f55d9f8 - cid: 14750693544512838136 - reviewsCount: 561 - imagesCount: 405 - scrapedAt: 2025-09-19T16:26:23.824Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/pihn6Zlu3tA?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 11 AM–8 PM + - Takeout: - day: Monday - hours: 4 to 10 PM + - hours: Closed - day: Tuesday - hours: Closed + - hours: Closed - day: Wednesday - hours: 4 to 10 PM + - hours: 11 AM–8 PM - day: Thursday - hours: 12 to 10 PM + - hours: 11 AM–8 PM - day: Friday - hours: 12 to 11 PM + - hours: 11 AM–9 PM - day: Saturday - hours: 12 to 11 PM + - hours: 11 AM–9 PM - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Takeout: - - day: Monday - hours: 11:30 AM–10 PM - - day: Tuesday - hours: Closed - - day: Wednesday - hours: 11:30 AM–10 PM - - day: Thursday - hours: 11:30 AM–10 PM - - day: Friday - hours: 11:30 AM–10:45 PM - - day: Saturday - hours: 11:30 AM–10:45 PM - - day: Sunday - hours: 11:30 AM–10 PM - Delivery: - - day: Monday - hours: 11:30 AM–10 PM - - day: Tuesday - hours: 5–11 PM - - day: Wednesday - hours: 11:30 AM–10 PM - - day: Thursday - hours: 11:30 AM–10 PM - - day: Friday - hours: 11:30 AM–10:45 PM - - day: Saturday - hours: 11:30 AM–10:45 PM - - day: Sunday - hours: 11:30 AM–10 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great wine list, Live music, Serves local specialty, Sports - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Quick bite, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy - Crowd: Family-friendly, Groups, Tourists - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space - url: https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 13 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipP47RQWdWHoLaIUXKuoUq-QKeU3JbkmczNACeuq=w408-h271-k-no - kgmid: /g/11b6bdn4fn -- title: Vesta Trattoria & Wine Bar - description: Pizza & Italian comfort food with a sustainable, seasonal bent are served at this neighborhood spot. - price: $$ - categoryName: Italian restaurant - address: 21-02 30th Ave., Astoria, NY 11102 - neighborhood: Astoria - street: 21-02 30th Ave. - city: Astoria - postalCode: 11102 - state: New York - countryCode: US - website: http://vestavino.com/ - phone: (718) 545-5550 - phoneUnformatted: +17185455550 - claimThisBusiness: false - location: - lat: 40.7696576 - lng: -73.9277667 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJGc-LBklfwokR4pON1Ije2Ls - categories: Italian restaurant - fid: 0x89c25f49068bcf19:0xbbd8de88d48d93e2 - cid: 13535813359324992482 - reviewsCount: 613 - imagesCount: 412 - scrapedAt: 2025-09-19T16:26:23.825Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/bG3Q72M7BBs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 11 AM–8 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Beer, Coffee, Comfort food, Healthy options, Quick bite, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Quiet, Romantic + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 9 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqsE8ucmgrKR4BdPoDePAVgCO3ATznshCfGfOikObRl52az29a5t4HRrOVbcSJbUJbo-ory9T9pLXO-7qm_cw5DN4PJCX2BAyFCqNokINCl7YG-OF9ySq-4i_T0Zbk8Qol-97UnFQ=w513-h240-k-no +- kgmid: /g/1tdvqntx + +## 10. Palermo +- description: Brick-oven pizzas, pasta & other Italian eats in a casual space with a full bar & patio seating. +- price: $$ +- categoryName: Italian restaurant +- address: 23-92 21st St, Astoria, NY 11105 +- neighborhood: Astoria +- street: 23-92 21st St +- city: Astoria +- postalCode: 11105 +- state: New York +- countryCode: US +- website: http://palermoastoria.com/ +- phone: (718) 267-0010 +- phoneUnformatted: +17182670010 +- claimThisBusiness: false +- location: + - lat: 40.7770481 + - lng: -73.9214503 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJV1Gg2FpfwokRS6XpD37qw8E +- categories: Italian restaurant +- fid: 0x89c25f5ad8a05157:0xc1c3ea7e0fe9a54b +- cid: 13962261096932418891 +- reviewsCount: 663 +- imagesCount: 506 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/kBAv8B6pJiU?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 9:30 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 12:30 to 10 PM + - hours: 12–9:45 PM - day: Tuesday - hours: 5 to 10 PM + - hours: 12–9:45 PM - day: Wednesday - hours: 5 to 10 PM + - hours: 12–9:45 PM - day: Thursday - hours: 12:30 to 10 PM + - hours: 12–9:45 PM - day: Friday - hours: 12:30 to 11 PM + - hours: 12–10:30 PM - day: Saturday - hours: 12 to 11 PM + - hours: 11 AM–10:30 PM - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: Groups, Tourists - Planning: Brunch reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Usually somewhat difficult to find a space - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 14 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4no6AANqK6HPbmJVfZ3-foZqak33PNLbnO8XUq5pJMlh2BOKG0zgeUxvYrFgOwBTGZN1S9EpmyzGmwJuNmQa8rid0C8awy_J8zLV3ipfH1-G4kdYPr4e8zu-lLQlfHy76-pOtc0cVQ=w408-h544-k-no - kgmid: /g/1thct7ty -- title: Armondo's Italian Resturant - description: A husband-&-wife team runs this eatery that offers Italian classics in serene dark-wood environs. - price: $30–50 - categoryName: Italian restaurant - address: 73-16 Northern Blvd, Jackson Heights, NY 11372 - neighborhood: Jackson Heights - street: 73-16 Northern Blvd - city: Jackson Heights - postalCode: 11372 - state: New York - countryCode: US - website: http://www.armondositalian.com/ - phone: (718) 898-0113 - phoneUnformatted: +17188980113 - claimThisBusiness: false - location: - lat: 40.754547 - lng: -73.8931029 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJt_uMBQdfwokRHQ0oIx2-9XI - categories: Italian restaurant, Restaurant - fid: 0x89c25f07058cfbb7:0x72f5be1d23280d1d - cid: 8283736121971051805 - reviewsCount: 248 - imagesCount: 214 - scrapedAt: 2025-09-19T16:26:23.825Z - openingHours: + - hours: 11 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups, LGBTQ+ friendly + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 10 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nos8RzEvGfPSN_W8PnoSszfnY_UmiQVMRo4a_hYlB6hUpXboeO-p6ozTFPnHxjcB3D4lYbpJQOLZ5JG0DvtIMCU46lCrjrZKoYdjlcXl95qIwmtHsMsi8o1eG_65tStjxg1Xct1=w408-h306-k-no +- kgmid: /g/1pxq42syy + +## 11. Riviera Ristorante +- description: Warm, casual venue offering Northern & Southern Italian fare, including pasta, veal & seafood. +- price: $30–50 +- categoryName: Italian restaurant +- address: 17-12 Utopia Pkwy, Whitestone, NY 11357 +- neighborhood: Whitestone +- street: 17-12 Utopia Pkwy +- city: Whitestone +- postalCode: 11357 +- state: New York +- countryCode: US +- website: http://www.rivieraristorante.com/ +- phone: (718) 352-2225 +- phoneUnformatted: +17183522225 +- claimThisBusiness: false +- location: + - lat: 40.7822521 + - lng: -73.7947252 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJM1jHAGKKwokRF7ZyZYvOiQQ +- categories: Italian restaurant, Restaurant +- fid: 0x89c28a6200c75833:0x489ce8b6572b617 +- cid: 327019546058864151 +- reviewsCount: 651 +- imagesCount: 298 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM +- additionalInfo: + - Service options: Outdoor seating, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking +- url: https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 11 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npnM0VIakTj8BctsRSIobxTNXGLmHD_bVY3QPXZ6dQ5-pGOFpuQwJwjlKmNYf6oEzE9G1tl7oxOrpBLymapRZNDoO5cdtbWcKWJz1-h_0AW8gOtfott4P-eOhucDpZVitK1fcbK=w408-h544-k-no +- kgmid: /g/1td72y7w + +## 12. Da Franco & Tony Ristorante +- description: Casual, brick-clad stop offering Italian-American fare such as fresh gnocchi & chicken scarpariello. +- price: $50–100 +- categoryName: Italian restaurant +- address: 2815 Middletown Rd, Bronx, NY 10461 +- neighborhood: East Bronx +- street: 2815 Middletown Rd +- city: Bronx +- postalCode: 10461 +- state: New York +- countryCode: US +- website: http://dafrancoandtony.com/ +- phone: (718) 684-2815 +- phoneUnformatted: +17186842815 +- claimThisBusiness: false +- location: + - lat: 40.8435906 + - lng: -73.8360552 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ7WHfHVKLwokRGB9Q__vhY18 +- categories: Italian restaurant +- fid: 0x89c28b521ddf61ed:0x5f63e1fbff501f18 +- cid: 6873585928733990680 +- reviewsCount: 398 +- imagesCount: 196 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/VJl_nGToR40?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 9 PM + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 4 to 10 PM + - hours: 12–10 PM - day: Tuesday - hours: Closed + - hours: 12–10 PM - day: Wednesday - hours: 4 to 10 PM + - hours: 12–10 PM - day: Thursday - hours: 4 to 10 PM + - hours: 12–10 PM - day: Friday - hours: 4 to 11 PM + - hours: 12–10 PM - day: Saturday - hours: 1 to 11 PM + - hours: 12–10 PM - day: Sunday - hours: 1 to 10 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Parking: Free parking lot - url: https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 15 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrQmHNdTMyiY2edHwr86F2UAeYd5s8eh3hMCYEC3kf9pEjsM2-t0VgQUy8D0neq_GaK1igswyl_9KWf_4TfpG7VLy5IdxZzJ4pgRQ0j9ngWyEn2VXSrK7KdMU8ie0eAZ6DTUIwO=w408-h544-k-no - kgmid: /g/1tdzmgrl -- title: Giovanna's Kitchen, Inc - price: $20–30 - categoryName: Italian restaurant - address: 12-40 Clintonville St, Whitestone, NY 11357 - neighborhood: Whitestone - street: 12-40 Clintonville St - city: Whitestone - postalCode: 11357 - state: New York - countryCode: US - website: http://toastab.com/giovannaskitchennyc - phone: (718) 767-4444 - phoneUnformatted: +17187674444 - claimThisBusiness: false - location: - lat: 40.7900774 - lng: -73.8121074 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ_evdIQ6LwokRDeECmeiUAmM - categories: Italian restaurant - fid: 0x89c28b0e21ddebfd:0x630294e89902e10d - cid: 7134428486428713229 - reviewsCount: 36 - imagesCount: 24 - scrapedAt: 2025-09-19T16:26:23.825Z - openingHours: + - hours: 2–9:30 PM + - Takeout: - day: Monday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Tuesday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Wednesday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Thursday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Friday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Saturday - hours: 7 AM to 8 PM + - hours: 12–10 PM - day: Sunday - hours: 7 AM to 8 PM - additionalInfo: - Service options: No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance - Offerings: Alcohol, Coffee, Comfort food, Quick bite, Wine - Dining options: Lunch, Dinner, Dessert - Atmosphere: Casual, Cozy - Payments: Credit cards, Debit cards - Children: Good for kids - url: https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 16 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npb7qoTpaWmWECfT9t8GsIEqyRCIvjPVefgR6k50s0QTzbIR8mHSuczkAYhKqg1q2tVw3qHzkbQiVZO2RYlSa54tzPPXDXaR2vfEbdM-ma_4TBsq7ykkgG0OfqleWa1TZfowM8=w408-h306-k-no - kgmid: /g/11n5g8jl99 -- title: Trattoria 35 - description: Intimate restaurant featuring wood-fired pizzas & traditional Italian cuisine in a warm atmosphere. - price: $$ - categoryName: Italian restaurant - address: 213-15 35th Ave, Bayside, NY 11361 - neighborhood: Bayside - street: 213-15 35th Ave - city: Bayside - postalCode: 11361 - state: New York - countryCode: US - website: http://www.trattoria35.com/ - phone: (718) 352-3800 - phoneUnformatted: +17183523800 - claimThisBusiness: false - location: - lat: 40.7690275 - lng: -73.7742846 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJv58SiHSKwokRhxrcu3o_zfw - categories: Italian restaurant, Restaurant - fid: 0x89c28a7488129fbf:0xfccd3f7abbdc1a87 - cid: 18216285864153848455 - reviewsCount: 1136 - imagesCount: 624 - scrapedAt: 2025-09-19T16:26:23.825Z - openingHours: + - hours: 2–9:30 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free parking lot, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 12 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr1oPmQsMBxsBmvY8pRGxGthRlMGP0xNpS3mY4YvgaN_nIx4XvO6WcnPoN52wcbD1YJKxV4YgcOSbedMmxUfsdsduYCJxVZwT03U5awD0f_tHBescwlzjBvD3X7h4VpZc4YHGVllQ=w408-h306-k-no +- kgmid: /g/11b6q5ddy9 + +## 13. Sac's Place +- description: Family-run local mainstay serving up crispy coal-oven pizzas plus pastas in a simple setting. +- price: $30–50 +- categoryName: Italian restaurant +- address: 35-11 35th Ave, Astoria, NY 11106 +- neighborhood: Astoria +- street: 35-11 35th Ave +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: http://sacsplace.com/ +- phone: (718) 204-5002 +- phoneUnformatted: +17182045002 +- claimThisBusiness: false +- location: + - lat: 40.7567144 + - lng: -73.9246701 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ9yi_ITdfwokR-NlVT6D9tMw +- categories: Italian restaurant, Bar, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Restaurant +- fid: 0x89c25f3721bf28f7:0xccb4fda04f55d9f8 +- cid: 14750693544512838136 +- reviewsCount: 561 +- imagesCount: 405 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/pihn6Zlu3tA?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Takeout: - day: Monday - hours: 11:30 AM to 10 PM + - hours: 11:30 AM–10 PM - day: Tuesday - hours: 11:30 AM to 10 PM + - hours: Closed - day: Wednesday - hours: 11:30 AM to 10 PM + - hours: 11:30 AM–10 PM - day: Thursday - hours: 11:30 AM to 10 PM + - hours: 11:30 AM–10 PM - day: Friday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10:45 PM - day: Saturday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10:45 PM - day: Sunday - hours: 11:30 AM to 10 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Private dining room, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Groups, Tourists - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, On-site parking, Usually plenty of parking, Valet parking - url: https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 17 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npi0pLEwAzTeFdPjr_QHrgJJWKHMpN3Qo-faeEb6nC6E8nt6myEZHl0AfcRsdvg7Lzu-_Sk_pOdewDXPAXDIP0O9XO1Vw_L_UD3WaQyEnuBNFJmSPfTsfHcQIySE4sibLnGUNzF=w408-h306-k-no - kgmid: /g/11b6dm_gc1 -- title: Via Trenta Osteria & Wine Bar - description: Gourmet pizza & artisinal pasta paired with wine, beer & cocktails in a warm, refined setting. - price: $50–100 - categoryName: Italian restaurant - address: 36-19 30th Ave., Astoria, NY 11103 - neighborhood: Astoria - street: 36-19 30th Ave. - city: Astoria - postalCode: 11103 - state: New York - countryCode: US - website: http://viatrenta.com/ - phone: (718) 545-2090 - phoneUnformatted: +17185452090 - claimThisBusiness: false - location: - lat: 40.7648674 - lng: -73.9165828 - totalScore: 4.3 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJCyZ3Zj9fwokRu-73fD6aIWA - categories: Italian restaurant, Catering food and drink supplier, Cocktail bar, Delivery service, Northern Italian restaurant, Pasta shop, Pizza restaurant, Seafood restaurant, Wine bar, Wine cellar - fid: 0x89c25f3f6677260b:0x60219a3e7cf7eebb - cid: 6926987295047806651 - reviewsCount: 618 - imagesCount: 464 - scrapedAt: 2025-09-19T16:26:23.825Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/yb-AoyP5i6g?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 11:30 AM–10 PM + - Delivery: - day: Monday - hours: Closed + - hours: 11:30 AM–10 PM - day: Tuesday - hours: 12 to 10:30 PM + - hours: 5–11 PM - day: Wednesday - hours: 12 to 10:30 PM + - hours: 11:30 AM–10 PM - day: Thursday - hours: 12 to 10:30 PM + - hours: 11:30 AM–10 PM - day: Friday - hours: 12 to 11 PM + - hours: 11:30 AM–10:45 PM - day: Saturday - hours: 12 to 11 PM + - hours: 11:30 AM–10:45 PM - day: Sunday - hours: 12 to 10:30 PM - additionalOpeningHours: - Happy hours: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–7 PM - - day: Wednesday - hours: 12–7 PM - - day: Thursday - hours: 12–7 PM - - day: Friday - hours: 12–6 PM - - day: Saturday - hours: 12–6 PM - - day: Sunday - hours: 12–6 PM - Delivery: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–9:30 PM - - day: Wednesday - hours: 12–9:30 PM - - day: Thursday - hours: 12–9:30 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–9:30 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–4 PM - - day: Wednesday - hours: 12–4 PM - - day: Thursday - hours: 12–4 PM - - day: Friday - hours: 12–4 PM - - day: Saturday - hours: 12–3:30 PM - - day: Sunday - hours: 12–3:30 PM - Kitchen: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–10 PM - - day: Wednesday - hours: 12–10 PM - - day: Thursday - hours: 12–10 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Online service hours: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–10 PM - - day: Wednesday - hours: 12–10 PM - - day: Thursday - hours: 12–10 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Lunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: 12–4 PM - - day: Wednesday - hours: 12–4 PM - - day: Thursday - hours: 12–4 PM - - day: Friday - hours: 12–4 PM - - day: Saturday - hours: 12–4 PM - - day: Sunday - hours: 12–4 PM - Dinner: - - day: Monday - hours: Closed - - day: Tuesday - hours: 4–10:30 PM - - day: Wednesday - hours: 4–10:30 PM - - day: Thursday - hours: 4–10:30 PM - - day: Friday - hours: 4–11 PM - - day: Saturday - hours: 4–11 PM - - day: Sunday - hours: 4–10:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in - Highlights: Fast service, Fireplace, Great cocktails, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Comfort food, Happy hour drinks, Hard liquor, Private dining room, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: Groups, LGBTQ+ friendly, Transgender safespace - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs, Kids' menu - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 18 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipNhjVO1_j-lL6u7-kml_S7zaTtw7Cvynih8JbJq=w426-h240-k-no - kgmid: /g/1tcygcxj -- title: Fiorentina Steakhouse - price: $50–100 - categoryName: Steak house - address: 3617 E Tremont Ave, Bronx, NY 10465 - neighborhood: East Bronx - street: 3617 E Tremont Ave - city: Bronx - postalCode: 10465 - state: New York - countryCode: US - website: http://www.fiorentina-steakhouse.com/ - phone: (718) 812-1112 - phoneUnformatted: +17188121112 - claimThisBusiness: false - location: - lat: 40.8287124 - lng: -73.8240553 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ5znu7hSLwokRLpLh1Z8dXa0 - categories: Steak house - fid: 0x89c28b14eeee39e7:0xad5d1d9fd5e1922e - cid: 12492173513720959534 - reviewsCount: 293 - imagesCount: 239 - scrapedAt: 2025-09-19T16:26:23.825Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mi7cW2niy_8?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap - openingHours: + - hours: 11:30 AM–10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great wine list, Live music, Serves local specialty, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Quick bite, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy + - Crowd: Family-friendly, Groups, Tourists + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 13 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipP47RQWdWHoLaIUXKuoUq-QKeU3JbkmczNACeuq=w408-h271-k-no +- kgmid: /g/11b6bdn4fn + +## 14. Vesta Trattoria & Wine Bar +- description: Pizza & Italian comfort food with a sustainable, seasonal bent are served at this neighborhood spot. +- price: $$ +- categoryName: Italian restaurant +- address: 21-02 30th Ave., Astoria, NY 11102 +- neighborhood: Astoria +- street: 21-02 30th Ave. +- city: Astoria +- postalCode: 11102 +- state: New York +- countryCode: US +- website: http://vestavino.com/ +- phone: (718) 545-5550 +- phoneUnformatted: +17185455550 +- claimThisBusiness: false +- location: + - lat: 40.7696576 + - lng: -73.9277667 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJGc-LBklfwokR4pON1Ije2Ls +- categories: Italian restaurant +- fid: 0x89c25f49068bcf19:0xbbd8de88d48d93e2 +- cid: 13535813359324992482 +- reviewsCount: 613 +- imagesCount: 412 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/bG3Q72M7BBs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12:30 to 10 PM + - day: Tuesday + hours: 5 to 10 PM + - day: Wednesday + hours: 5 to 10 PM + - day: Thursday + hours: 12:30 to 10 PM + - day: Friday + hours: 12:30 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Tourists + - Planning: Brunch reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 14 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4no6AANqK6HPbmJVfZ3-foZqak33PNLbnO8XUq5pJMlh2BOKG0zgeUxvYrFgOwBTGZN1S9EpmyzGmwJuNmQa8rid0C8awy_J8zLV3ipfH1-G4kdYPr4e8zu-lLQlfHy76-pOtc0cVQ=w408-h544-k-no +- kgmid: /g/1thct7ty + +## 15. Armondo's Italian Resturant +- description: A husband-&-wife team runs this eatery that offers Italian classics in serene dark-wood environs. +- price: $30–50 +- categoryName: Italian restaurant +- address: 73-16 Northern Blvd, Jackson Heights, NY 11372 +- neighborhood: Jackson Heights +- street: 73-16 Northern Blvd +- city: Jackson Heights +- postalCode: 11372 +- state: New York +- countryCode: US +- website: http://www.armondositalian.com/ +- phone: (718) 898-0113 +- phoneUnformatted: +17188980113 +- claimThisBusiness: false +- location: + - lat: 40.754547 + - lng: -73.8931029 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJt_uMBQdfwokRHQ0oIx2-9XI +- categories: Italian restaurant, Restaurant +- fid: 0x89c25f07058cfbb7:0x72f5be1d23280d1d +- cid: 8283736121971051805 +- reviewsCount: 248 +- imagesCount: 214 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 11 PM + - day: Saturday + hours: 1 to 11 PM + - day: Sunday + hours: 1 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free parking lot +- url: https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 15 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrQmHNdTMyiY2edHwr86F2UAeYd5s8eh3hMCYEC3kf9pEjsM2-t0VgQUy8D0neq_GaK1igswyl_9KWf_4TfpG7VLy5IdxZzJ4pgRQ0j9ngWyEn2VXSrK7KdMU8ie0eAZ6DTUIwO=w408-h544-k-no +- kgmid: /g/1tdzmgrl + +## 16. Giovanna's Kitchen, Inc +- price: $20–30 +- categoryName: Italian restaurant +- address: 12-40 Clintonville St, Whitestone, NY 11357 +- neighborhood: Whitestone +- street: 12-40 Clintonville St +- city: Whitestone +- postalCode: 11357 +- state: New York +- countryCode: US +- website: http://toastab.com/giovannaskitchennyc +- phone: (718) 767-4444 +- phoneUnformatted: +17187674444 +- claimThisBusiness: false +- location: + - lat: 40.7900774 + - lng: -73.8121074 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ_evdIQ6LwokRDeECmeiUAmM +- categories: Italian restaurant +- fid: 0x89c28b0e21ddebfd:0x630294e89902e10d +- cid: 7134428486428713229 +- reviewsCount: 36 +- imagesCount: 24 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: + - day: Monday + hours: 7 AM to 8 PM + - day: Tuesday + hours: 7 AM to 8 PM + - day: Wednesday + hours: 7 AM to 8 PM + - day: Thursday + hours: 7 AM to 8 PM + - day: Friday + hours: 7 AM to 8 PM + - day: Saturday + hours: 7 AM to 8 PM + - day: Sunday + hours: 7 AM to 8 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance + - Offerings: Alcohol, Coffee, Comfort food, Quick bite, Wine + - Dining options: Lunch, Dinner, Dessert + - Atmosphere: Casual, Cozy + - Payments: Credit cards, Debit cards + - Children: Good for kids +- url: https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 16 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npb7qoTpaWmWECfT9t8GsIEqyRCIvjPVefgR6k50s0QTzbIR8mHSuczkAYhKqg1q2tVw3qHzkbQiVZO2RYlSa54tzPPXDXaR2vfEbdM-ma_4TBsq7ykkgG0OfqleWa1TZfowM8=w408-h306-k-no +- kgmid: /g/11n5g8jl99 + +## 17. Trattoria 35 +- description: Intimate restaurant featuring wood-fired pizzas & traditional Italian cuisine in a warm atmosphere. +- price: $$ +- categoryName: Italian restaurant +- address: 213-15 35th Ave, Bayside, NY 11361 +- neighborhood: Bayside +- street: 213-15 35th Ave +- city: Bayside +- postalCode: 11361 +- state: New York +- countryCode: US +- website: http://www.trattoria35.com/ +- phone: (718) 352-3800 +- phoneUnformatted: +17183523800 +- claimThisBusiness: false +- location: + - lat: 40.7690275 + - lng: -73.7742846 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJv58SiHSKwokRhxrcu3o_zfw +- categories: Italian restaurant, Restaurant +- fid: 0x89c28a7488129fbf:0xfccd3f7abbdc1a87 +- cid: 18216285864153848455 +- reviewsCount: 1136 +- imagesCount: 624 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: + - day: Monday + hours: 11:30 AM to 10 PM + - day: Tuesday + hours: 11:30 AM to 10 PM + - day: Wednesday + hours: 11:30 AM to 10 PM + - day: Thursday + hours: 11:30 AM to 10 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11:30 AM to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, On-site parking, Usually plenty of parking, Valet parking +- url: https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 17 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npi0pLEwAzTeFdPjr_QHrgJJWKHMpN3Qo-faeEb6nC6E8nt6myEZHl0AfcRsdvg7Lzu-_Sk_pOdewDXPAXDIP0O9XO1Vw_L_UD3WaQyEnuBNFJmSPfTsfHcQIySE4sibLnGUNzF=w408-h306-k-no +- kgmid: /g/11b6dm_gc1 + +## 18. Via Trenta Osteria & Wine Bar +- description: Gourmet pizza & artisinal pasta paired with wine, beer & cocktails in a warm, refined setting. +- price: $50–100 +- categoryName: Italian restaurant +- address: 36-19 30th Ave., Astoria, NY 11103 +- neighborhood: Astoria +- street: 36-19 30th Ave. +- city: Astoria +- postalCode: 11103 +- state: New York +- countryCode: US +- website: http://viatrenta.com/ +- phone: (718) 545-2090 +- phoneUnformatted: +17185452090 +- claimThisBusiness: false +- location: + - lat: 40.7648674 + - lng: -73.9165828 +- totalScore: 4.3 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJCyZ3Zj9fwokRu-73fD6aIWA +- categories: Italian restaurant, Catering food and drink supplier, Cocktail bar, Delivery service, Northern Italian restaurant, Pasta shop, Pizza restaurant, Seafood restaurant, Wine bar, Wine cellar +- fid: 0x89c25f3f6677260b:0x60219a3e7cf7eebb +- cid: 6926987295047806651 +- reviewsCount: 618 +- imagesCount: 464 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/yb-AoyP5i6g?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM +- additionalOpeningHours: + - Happy hours: - day: Monday - hours: 12 to 9:30 PM + - hours: Closed - day: Tuesday - hours: 12 to 9:30 PM + - hours: 12–7 PM - day: Wednesday - hours: 12 to 9:30 PM + - hours: 12–7 PM - day: Thursday - hours: 12 to 9:30 PM + - hours: 12–7 PM - day: Friday - hours: 12 to 10 PM + - hours: 12–6 PM - day: Saturday - hours: 12 to 10 PM + - hours: 12–6 PM - day: Sunday - hours: 12 to 9 PM - additionalInfo: - Service options: - - Takeout: true - - Dine-in: true - - Delivery: false - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine - Dining options: Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs, Kids' menu - Parking: Free parking lot, Free street parking, Paid street parking, Usually plenty of parking - url: https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 19 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipPCac3DsFdUls470WBzgt5WweIVg5NX90ga7Y2T=w408-h362-k-no - kgmid: /g/11sxgdyn_x -- title: Figlia - price: $30–50 - categoryName: Italian restaurant - address: 23-02 31st St, Queens, NY 11105 - neighborhood: Astoria - street: 23-02 31st St - city: Queens - postalCode: 11105 - state: New York - countryCode: US - website: http://figlianyc.com/ - phone: (347) 730-5117 - phoneUnformatted: +13477305117 - claimThisBusiness: false - location: - lat: 40.7744867 - lng: -73.9132566 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJS5UFORVfwokRKG9pzggm8Cg - categories: Italian restaurant, Pizza restaurant - fid: 0x89c25f153905954b:0x28f02608ce696f28 - cid: 2949899575192284968 - reviewsCount: 194 - imagesCount: 123 - scrapedAt: 2025-09-19T16:26:23.825Z - openingHours: + - hours: 12–6 PM + - Delivery: - day: Monday - hours: Closed + - hours: Closed - day: Tuesday - hours: Closed + - hours: 12–9:30 PM - day: Wednesday - hours: 5 to 10 PM + - hours: 12–9:30 PM - day: Thursday - hours: 5 to 10 PM + - hours: 12–9:30 PM - day: Friday - hours: 5 to 10 PM + - hours: 12–10 PM - day: Saturday - hours: 4 to 10 PM + - hours: 12–10 PM - day: Sunday - hours: 4 to 9 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great wine list - Popular for: Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine - Dining options: Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Trendy - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Parking: Free street parking, Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 20 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipM8RvgWvfOTMbTWvO5C2ASH9xt5D8krXxhytZxD=w408-h271-k-no - kgmid: /g/11tjmbwtcx -- title: Adrienne's NYC - price: $$ - categoryName: Italian restaurant - address: 25 Van Brunt Rd, Queens, NY 11693 - neighborhood: Broad Channel - street: 25 Van Brunt Rd - city: Queens - postalCode: 11693 - state: New York - countryCode: US - website: http://adriennes-nyc.com/ - phone: (718) 945-2525 - phoneUnformatted: +17189452525 - claimThisBusiness: false - location: - lat: 40.5973398 - lng: -73.819623 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJe4j4G9ZpwokR8CBPcLU44Sk - categories: Italian restaurant - fid: 0x89c269d61bf8887b:0x29e138b5704f20f0 - cid: 3017755577239412976 - reviewsCount: 321 - reviewsDistribution: - oneStar: 9 - twoStar: 2 - threeStar: 14 - fourStar: 21 - fiveStar: 275 - imagesCount: 408 - scrapedAt: 2025-09-19T16:26:24.657Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/wK4TxdpdbhA?source=pa&opi=79508299&hl=en-US&gei=L4TNaM-GMs6IwbkPreGkqAc&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaO6pOJXEp84PkvmOgAM.1758299183708.1%26hl%3Den%26pb%3D!4m12!1m3!1d48474.59250524153!2d-73.70638644734598!3d40.59321488768417!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaO6pOJXEp84PkvmOgAM!2s1i:0,t:20588,p:LoTNaO6pOJXEp84PkvmOgAM:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 12–9:30 PM + - Brunch: - day: Monday - hours: 4 to 9 PM + - hours: Closed - day: Tuesday - hours: Closed + - hours: 12–4 PM - day: Wednesday - hours: Closed + - hours: 12–4 PM - day: Thursday - hours: 4 to 9 PM + - hours: 12–4 PM - day: Friday - hours: 4 to 10 PM + - hours: 12–4 PM - day: Saturday - hours: 11 AM to 10 PM + - hours: 12–3:30 PM - day: Sunday - hours: 11 AM to 9 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 4–9 PM - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: 4–9 PM - - day: Friday - hours: 4–10 PM - - day: Saturday - hours: 11:30 AM–10 PM - - day: Sunday - hours: 11:30 AM–9 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 11 AM–2:30 PM - - day: Sunday - hours: 11 AM–2:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Groups - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Has changing table(s), High chairs, Kids' menu - Parking: Free parking lot, Free street parking, Usually plenty of parking - url: https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en - searchString: italian restaurant - language: en - rank: 21 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipORPuVEPXpaWRvRkdl1wMzXeiIUbDCRC4oy8fj5=w408-h271-k-no - kgmid: /g/11kq1gmr83 -- title: La Pecora Bianca UES - description: Stylish, bright eatery featuring market-driven Italian cuisine, regional wines & apéritifs. - price: $$ - categoryName: Italian restaurant - address: 1562 2nd Ave, New York, NY 10028 - neighborhood: Manhattan - street: 1562 2nd Ave - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: https://www.lapecorabianca.com/ - phone: (212) 300-9840 - phoneUnformatted: +12123009840 - claimThisBusiness: false - location: - lat: 40.7746825 - lng: -73.9538686 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ9YlInwlZwokRDb-WWDZkU1s - categories: Italian restaurant - fid: 0x89c259099f4889f5:0x5b5364365896bf0d - cid: 6580713665095712525 - reviewsCount: 1926 - reviewsDistribution: - oneStar: 26 - twoStar: 18 - threeStar: 27 - fourStar: 127 - fiveStar: 1728 - imagesCount: 479 - scrapedAt: 2025-09-19T16:26:24.726Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/AuNWrcQ6pNQ?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 12–3:30 PM + - Kitchen: - day: Monday - hours: 11:30 AM to 10 PM + - hours: Closed - day: Tuesday - hours: 11:30 AM to 10 PM + - hours: 12–10 PM - day: Wednesday - hours: 11:30 AM to 10 PM + - hours: 12–10 PM - day: Thursday - hours: 11:30 AM to 10:30 PM + - hours: 12–10 PM - day: Friday - hours: 11:30 AM to 10:30 PM + - hours: 12–10 PM - day: Saturday - hours: 10 AM to 10:30 PM + - hours: 12–10 PM - day: Sunday - hours: 10 AM to 9:30 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom - Atmosphere: Casual, Cozy, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Locals, Tourists, Transgender safespace - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Free street parking, Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 21 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipPAKFjb04AGunRve4ZOvo8eSCYT1aC3Q2XLfUSs=w408-h612-k-no - kgmid: /g/11s861srkf -- title: L'Osteria - price: $$$ - categoryName: Italian restaurant - address: 1219 Lexington Ave, New York, NY 10028 - neighborhood: Manhattan - street: 1219 Lexington Ave - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: http://www.losterianyc.com/ - phone: (646) 524-6294 - phoneUnformatted: +16465246294 - claimThisBusiness: false - location: - lat: 40.777137 - lng: -73.957094 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJBRyejVJZwokReyLI3g24DLU - categories: Italian restaurant - fid: 0x89c259528d9e1c05:0xb50cb80ddec8227b - cid: 13046004590297227899 - reviewsCount: 327 - reviewsDistribution: - oneStar: 9 - twoStar: 1 - threeStar: 8 - fourStar: 34 - fiveStar: 275 - imagesCount: 271 - scrapedAt: 2025-09-19T16:26:24.726Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/oV6l_i5WrYw?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 12–10 PM + - Online service hours: - day: Monday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: Closed - day: Tuesday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: 12–10 PM - day: Wednesday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: 12–10 PM - day: Thursday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: 12–10 PM - day: Friday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: 12–10 PM - day: Saturday - hours: 12 to 3:30 PM, 5 to 10 PM + - hours: 12–10 PM - day: Sunday - hours: 12 to 3:30 PM, 5 to 10 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: Groups, Locals - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments - Parking: Paid street parking - url: https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 22 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrF8x6TbM_FIS6Kj7XkEY27pONqv3Rhr19hZNa5C9rF_0jvPxMHKAmvAaf6ZEmHncajR7Z3nkPkzGN442xSlPqf-JZdjqmEuFmyWH_cO0qKlcHb64H3Pf_B6ZjVsdZPMf6xFt2LLg=w408-h306-k-no - kgmid: /g/11s0pvy0z5 -- title: da Adriano - price: $$ - categoryName: Italian restaurant - address: 1198 1st Ave, New York, NY 10065 - neighborhood: Manhattan - street: 1198 1st Ave - city: New York - postalCode: 10065 - state: New York - countryCode: US - website: http://daadriano.com/ - phone: (646) 371-9412 - phoneUnformatted: +16463719412 - claimThisBusiness: false - location: - lat: 40.7631126 - lng: -73.9591556 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJU0dUbtNZwokRvLMgVDaVuA0 - categories: Italian restaurant - fid: 0x89c259d36e544753:0xdb895365420b3bc - cid: 988704178780025788 - reviewsCount: 277 - reviewsDistribution: - oneStar: 4 - twoStar: 6 - threeStar: 4 - fourStar: 17 - fiveStar: 246 - imagesCount: 244 - scrapedAt: 2025-09-19T16:26:24.726Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-vydkfxJaoI?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 12–10 PM + - Lunch: - day: Monday - hours: 7:30 AM to 9:30 PM + - hours: Closed - day: Tuesday - hours: 7:30 AM to 9:30 PM + - hours: 12–4 PM - day: Wednesday - hours: 7:30 AM to 10 PM + - hours: 12–4 PM - day: Thursday - hours: 7:30 AM to 10 PM + - hours: 12–4 PM - day: Friday - hours: 7:30 AM to 10 PM + - hours: 12–4 PM - day: Saturday - hours: 7:30 AM to 10 PM + - hours: 12–4 PM - day: Sunday - hours: 7:30 AM to 9:30 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Halal food, Happy hour drinks, Organic dishes, Salad bar, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Breakfast, Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Restroom - Atmosphere: Casual, Cozy, Trendy - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 23 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCrOrz-H9nSJWiFUV49NnwyfhvSvB3Jao2pMfScP54e3PCdVkBn5VuCWyw8avF-Ruvxma4NJ3HzAIRL7HF1uFPl70hTXealM0kP9HkkmbY3UOf3JheBiNC6pNiXDj2XyhLLWAL=w408-h306-k-no - kgmid: /g/11stj6v3jf -- title: Donna Margherita - price: $$ - categoryName: Italian restaurant - address: 1304A 2nd Ave, New York, NY 10065 - neighborhood: Manhattan - street: 1304A 2nd Ave - city: New York - postalCode: 10065 - state: New York - countryCode: US - website: https://www.donnamargheritany.com/ - phone: (212) 772-1169 - phoneUnformatted: +12127721169 - claimThisBusiness: false - location: - lat: 40.7664653 - lng: -73.9598606 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ_yzV_ulYwokRYpG_tbXMpqw - categories: Italian restaurant, Delivery Restaurant - fid: 0x89c258e9fed52cff:0xaca6ccb5b5bf9162 - cid: 12440856101467951458 - reviewsCount: 568 - reviewsDistribution: - oneStar: 11 - twoStar: 13 - threeStar: 17 - fourStar: 40 - fiveStar: 487 - imagesCount: 527 - scrapedAt: 2025-09-19T16:26:24.726Z - openingHours: + - hours: 12–4 PM + - Dinner: - day: Monday - hours: 12 to 10 PM + - hours: Closed - day: Tuesday - hours: 12 to 10 PM + - hours: 4–10:30 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 4–10:30 PM - day: Thursday - hours: 12 to 10 PM + - hours: 4–10:30 PM - day: Friday - hours: 12 to 10 PM + - hours: 4–11 PM - day: Saturday - hours: 12 to 10 PM + - hours: 4–11 PM - day: Sunday - hours: 1 to 9 PM - additionalInfo: - From the business: Identifies as women-owned - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Beer, Coffee, Comfort food, Healthy options, Organic dishes, Quick bite, Small plates, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Gender-neutral restroom, Restroom - Atmosphere: Casual, Cozy, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids - Parking: Paid parking lot, Paid street parking, Usually somewhat difficult to find a space - url: https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 24 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr2Vxqr1rX1TVl9Hnk1mfRF-w1eAyzPn8kNOFuMhYOLZ8E3i640Y9bLfNzVRMpB9Ulcj-3jX3oMTYt6gTIKveYVeYvMpcQFF79C-LNPXpdAP2NGCfaHIiSOcsJ2PDoJihy82D0u=w408-h544-k-no - kgmid: /g/11g7_5xcnb -- title: Pastitalia - price: $$ - categoryName: Italian restaurant - address: 264 Lenox Ave, New York, NY 10027 - neighborhood: Manhattan - street: 264 Lenox Ave - city: New York - postalCode: 10027 - state: New York - countryCode: US - website: https://www.pastitaliaus.com/ - phone: (917) 522-3434 - phoneUnformatted: +19175223434 - claimThisBusiness: false - location: - lat: 40.8065175 - lng: -73.9459371 - totalScore: 4.9 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJW1uxcSr3wokRhxS_Ai4H8GU - categories: Italian restaurant, Catering food and drink supplier, Coffee shop, Espresso bar, Italian grocery store, Pasta shop, Lunch restaurant, Pastry shop - fid: 0x89c2f72a71b15b5b:0x65f0072e02bf1487 - cid: 7345378886437246087 - reviewsCount: 248 - reviewsDistribution: - oneStar: 1 - twoStar: 0 - threeStar: 3 - fourStar: 12 - fiveStar: 232 - imagesCount: 478 - scrapedAt: 2025-09-19T16:26:24.726Z - openingHours: + - hours: 4–10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Fireplace, Great cocktails, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Comfort food, Happy hour drinks, Hard liquor, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 18 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNhjVO1_j-lL6u7-kml_S7zaTtw7Cvynih8JbJq=w426-h240-k-no +- kgmid: /g/1tcygcxj + +## 19. Fiorentina Steakhouse +- price: $50–100 +- categoryName: Steak house +- address: 3617 E Tremont Ave, Bronx, NY 10465 +- neighborhood: East Bronx +- street: 3617 E Tremont Ave +- city: Bronx +- postalCode: 10465 +- state: New York +- countryCode: US +- website: http://www.fiorentina-steakhouse.com/ +- phone: (718) 812-1112 +- phoneUnformatted: +17188121112 +- claimThisBusiness: false +- location: + - lat: 40.8287124 + - lng: -73.8240553 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ5znu7hSLwokRLpLh1Z8dXa0 +- categories: Steak house +- fid: 0x89c28b14eeee39e7:0xad5d1d9fd5e1922e +- cid: 12492173513720959534 +- reviewsCount: 293 +- imagesCount: 239 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mi7cW2niy_8?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: + - day: Monday + hours: 12 to 9:30 PM + - day: Tuesday + hours: 12 to 9:30 PM + - day: Wednesday + hours: 12 to 9:30 PM + - day: Thursday + hours: 12 to 9:30 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM +- additionalInfo: + - Service options: + - Takeout: true + - Dine-in: true + - Delivery: false + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Parking: Free parking lot, Free street parking, Paid street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 19 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipPCac3DsFdUls470WBzgt5WweIVg5NX90ga7Y2T=w408-h362-k-no +- kgmid: /g/11sxgdyn_x + +## 20. Figlia +- price: $30–50 +- categoryName: Italian restaurant +- address: 23-02 31st St, Queens, NY 11105 +- neighborhood: Astoria +- street: 23-02 31st St +- city: Queens +- postalCode: 11105 +- state: New York +- countryCode: US +- website: http://figlianyc.com/ +- phone: (347) 730-5117 +- phoneUnformatted: +13477305117 +- claimThisBusiness: false +- location: + - lat: 40.7744867 + - lng: -73.9132566 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJS5UFORVfwokRKG9pzggm8Cg +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c25f153905954b:0x28f02608ce696f28 +- cid: 2949899575192284968 +- reviewsCount: 194 +- imagesCount: 123 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 5 to 10 PM + - day: Thursday + hours: 5 to 10 PM + - day: Friday + hours: 5 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 9 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 20 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipM8RvgWvfOTMbTWvO5C2ASH9xt5D8krXxhytZxD=w408-h271-k-no +- kgmid: /g/11tjmbwtcx + +## 21. Adrienne's NYC +- price: $$ +- categoryName: Italian restaurant +- address: 25 Van Brunt Rd, Queens, NY 11693 +- neighborhood: Broad Channel +- street: 25 Van Brunt Rd +- city: Queens +- postalCode: 11693 +- state: New York +- countryCode: US +- website: http://adriennes-nyc.com/ +- phone: (718) 945-2525 +- phoneUnformatted: +17189452525 +- claimThisBusiness: false +- location: + - lat: 40.5973398 + - lng: -73.819623 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJe4j4G9ZpwokR8CBPcLU44Sk +- categories: Italian restaurant +- fid: 0x89c269d61bf8887b:0x29e138b5704f20f0 +- cid: 3017755577239412976 +- reviewsCount: 321 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 2 + - threeStar: 14 + - fourStar: 21 + - fiveStar: 275 +- imagesCount: 408 +- scrapedAt: 2025-09-19T16:26:24.657Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/wK4TxdpdbhA?source=pa&opi=79508299&hl=en-US&gei=L4TNaM-GMs6IwbkPreGkqAc&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaO6pOJXEp84PkvmOgAM.1758299183708.1%26hl%3Den%26pb%3D!4m12!1m3!1d48474.59250524153!2d-73.70638644734598!3d40.59321488768417!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaO6pOJXEp84PkvmOgAM!2s1i:0,t:20588,p:LoTNaO6pOJXEp84PkvmOgAM:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 4 to 9 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4 to 9 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 9 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: Closed + - hours: 4–9 PM - day: Tuesday - hours: 11 AM to 9:30 PM + - hours: Closed - day: Wednesday - hours: 11 AM to 9:30 PM + - hours: Closed - day: Thursday - hours: 11 AM to 9:30 PM + - hours: 4–9 PM - day: Friday - hours: 11 AM to 9:30 PM + - hours: 4–10 PM - day: Saturday - hours: 9:30 AM to 9:30 PM + - hours: 11:30 AM–10 PM - day: Sunday - hours: 9:30 AM to 9:30 PM - additionalOpeningHours: - Lunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: 11 AM–9:30 PM - - day: Wednesday - hours: 11 AM–9:30 PM - - day: Thursday - hours: 11 AM–9:30 PM - - day: Friday - hours: 11 AM–9:30 PM - - day: Saturday - hours: 9:30 AM–8:30 PM - - day: Sunday - hours: 9:30 AM–9:30 PM - additionalInfo: - From the business: Identifies as women-owned - Service options: Delivery, In-store pickup, In-store shopping, Onsite services, Takeout, Dine-in - Popular for: Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible parking lot: false - Dining options: Counter service, Dessert, Seating - Amenities: Gender-neutral restroom, Restroom - Crowd: Family-friendly - Planning: Quick visit - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Kids' menu - Parking: Free street parking, Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 25 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npanH_kxwfPB_5GW2tgnFrUvmxeGJeRwc2ySsQS3p0OBmj3xWFuIDr_9ZtqbjxYadMgNOCSDeUmBgyXZTagB22MhxJShdnQ7oh4wO6cJ-fC3L9gRIOI9lJIqaDZwjcMgc-uuw_hcEqvrLic=w408-h544-k-no - kgmid: /g/11q46pmj5r -- title: Masseria East - description: Straightforward Italian fare from a longtime local standby. - price: $$$ - categoryName: Italian restaurant - address: 1404 3rd Ave, New York, NY 10075 - neighborhood: Manhattan - street: 1404 3rd Ave - city: New York - postalCode: 10075 - state: New York - countryCode: US - website: http://www.masseriaeast.com/ - phone: (212) 535-3520 - phoneUnformatted: +12125353520 - claimThisBusiness: false - location: - lat: 40.77491 - lng: -73.957163 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJfUbyZ75YwokRMi96wHTiLBA - categories: Italian restaurant, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Mediterranean restaurant, Restaurant, Seafood restaurant, Vegetarian restaurant, Wine bar - fid: 0x89c258be67f2467d:0x102ce274c07a2f32 - cid: 1165555394655432498 - reviewsCount: 313 - reviewsDistribution: - oneStar: 9 - twoStar: 6 - threeStar: 12 - fourStar: 30 - fiveStar: 256 - imagesCount: 306 - scrapedAt: 2025-09-19T16:26:24.726Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WQUuhqHMVZ8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 11:30 AM–9 PM + - Brunch: - day: Monday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: Closed - day: Tuesday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: Closed - day: Wednesday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: Closed - day: Thursday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: Closed - day: Friday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: Closed - day: Saturday - hours: 12 to 3 PM, 5 to 9:30 PM + - hours: 11 AM–2:30 PM - day: Sunday - hours: 12 to 9:30 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 12–2:30 PM - - day: Tuesday - hours: 12–2:30 PM - - day: Wednesday - hours: 12–2:30 PM - - day: Thursday - hours: 12–2:30 PM - - day: Friday - hours: 12–2:30 PM - - day: Saturday - hours: 12–2:30 PM - - day: Sunday - hours: 12–9:30 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Comfort food, Hard liquor, Organic dishes, Vegan options, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Cozy - Crowd: Family-friendly, Groups, LGBTQ+ friendly - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Parking: Free parking lot, Usually plenty of parking - url: https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 26 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipMpOy2JiLh2USfvFc-vyIHWgXLz3Lphothp7aL4=w408-h276-k-no - kgmid: /g/1vnnk9rm -- title: Bigoi Venezia - description: Hearty, housemade noodles in traditional Italian sauces offered in a snug counter-serve eatery. - price: $ - categoryName: Italian restaurant - address: 1415 2nd Ave, New York, NY 10021 - neighborhood: Manhattan - street: 1415 2nd Ave - city: New York - postalCode: 10021 - state: New York - countryCode: US - website: http://www.bigoivenezia.com/ - phone: (917) 262-0680 - phoneUnformatted: +19172620680 - claimThisBusiness: false - location: - lat: 40.7700264 - lng: -73.9577755 - totalScore: 4.8 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJgdnYQcBYwokRDEGzKagrEfE - categories: Italian restaurant - fid: 0x89c258c041d8d981:0xf1112ba829b3410c - cid: 17370713238998827276 - reviewsCount: 757 - reviewsDistribution: - oneStar: 16 - twoStar: 7 - threeStar: 16 - fourStar: 55 - fiveStar: 663 - imagesCount: 369 - scrapedAt: 2025-09-19T16:26:24.726Z - openingHours: + - hours: 11 AM–2:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Has changing table(s), High chairs, Kids' menu + - Parking: Free parking lot, Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 21 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipORPuVEPXpaWRvRkdl1wMzXeiIUbDCRC4oy8fj5=w408-h271-k-no +- kgmid: /g/11kq1gmr83 + +## 22. La Pecora Bianca UES +- description: Stylish, bright eatery featuring market-driven Italian cuisine, regional wines & apéritifs. +- price: $$ +- categoryName: Italian restaurant +- address: 1562 2nd Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1562 2nd Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.lapecorabianca.com/ +- phone: (212) 300-9840 +- phoneUnformatted: +12123009840 +- claimThisBusiness: false +- location: + - lat: 40.7746825 + - lng: -73.9538686 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ9YlInwlZwokRDb-WWDZkU1s +- categories: Italian restaurant +- fid: 0x89c259099f4889f5:0x5b5364365896bf0d +- cid: 6580713665095712525 +- reviewsCount: 1926 +- reviewsDistribution: + - oneStar: 26 + - twoStar: 18 + - threeStar: 27 + - fourStar: 127 + - fiveStar: 1728 +- imagesCount: 479 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/AuNWrcQ6pNQ?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 11:30 AM to 10 PM + - day: Tuesday + hours: 11:30 AM to 10 PM + - day: Wednesday + hours: 11:30 AM to 10 PM + - day: Thursday + hours: 11:30 AM to 10:30 PM + - day: Friday + hours: 11:30 AM to 10:30 PM + - day: Saturday + hours: 10 AM to 10:30 PM + - day: Sunday + hours: 10 AM to 9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Locals, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 21 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipPAKFjb04AGunRve4ZOvo8eSCYT1aC3Q2XLfUSs=w408-h612-k-no +- kgmid: /g/11s861srkf + +## 23. L'Osteria +- price: $$$ +- categoryName: Italian restaurant +- address: 1219 Lexington Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1219 Lexington Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.losterianyc.com/ +- phone: (646) 524-6294 +- phoneUnformatted: +16465246294 +- claimThisBusiness: false +- location: + - lat: 40.777137 + - lng: -73.957094 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJBRyejVJZwokReyLI3g24DLU +- categories: Italian restaurant +- fid: 0x89c259528d9e1c05:0xb50cb80ddec8227b +- cid: 13046004590297227899 +- reviewsCount: 327 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 1 + - threeStar: 8 + - fourStar: 34 + - fiveStar: 275 +- imagesCount: 271 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/oV6l_i5WrYw?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Tuesday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Wednesday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Thursday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Friday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Saturday + hours: 12 to 3:30 PM, 5 to 10 PM + - day: Sunday + hours: 12 to 3:30 PM, 5 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Locals + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 22 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrF8x6TbM_FIS6Kj7XkEY27pONqv3Rhr19hZNa5C9rF_0jvPxMHKAmvAaf6ZEmHncajR7Z3nkPkzGN442xSlPqf-JZdjqmEuFmyWH_cO0qKlcHb64H3Pf_B6ZjVsdZPMf6xFt2LLg=w408-h306-k-no +- kgmid: /g/11s0pvy0z5 + +## 24. da Adriano +- price: $$ +- categoryName: Italian restaurant +- address: 1198 1st Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1198 1st Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: http://daadriano.com/ +- phone: (646) 371-9412 +- phoneUnformatted: +16463719412 +- claimThisBusiness: false +- location: + - lat: 40.7631126 + - lng: -73.9591556 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU0dUbtNZwokRvLMgVDaVuA0 +- categories: Italian restaurant +- fid: 0x89c259d36e544753:0xdb895365420b3bc +- cid: 988704178780025788 +- reviewsCount: 277 +- reviewsDistribution: + - oneStar: 4 + - twoStar: 6 + - threeStar: 4 + - fourStar: 17 + - fiveStar: 246 +- imagesCount: 244 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-vydkfxJaoI?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 7:30 AM to 9:30 PM + - day: Tuesday + hours: 7:30 AM to 9:30 PM + - day: Wednesday + hours: 7:30 AM to 10 PM + - day: Thursday + hours: 7:30 AM to 10 PM + - day: Friday + hours: 7:30 AM to 10 PM + - day: Saturday + hours: 7:30 AM to 10 PM + - day: Sunday + hours: 7:30 AM to 9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Halal food, Happy hour drinks, Organic dishes, Salad bar, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Breakfast, Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 23 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCrOrz-H9nSJWiFUV49NnwyfhvSvB3Jao2pMfScP54e3PCdVkBn5VuCWyw8avF-Ruvxma4NJ3HzAIRL7HF1uFPl70hTXealM0kP9HkkmbY3UOf3JheBiNC6pNiXDj2XyhLLWAL=w408-h306-k-no +- kgmid: /g/11stj6v3jf + +## 25. Donna Margherita +- price: $$ +- categoryName: Italian restaurant +- address: 1304A 2nd Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1304A 2nd Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: https://www.donnamargheritany.com/ +- phone: (212) 772-1169 +- phoneUnformatted: +12127721169 +- claimThisBusiness: false +- location: + - lat: 40.7664653 + - lng: -73.9598606 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ_yzV_ulYwokRYpG_tbXMpqw +- categories: Italian restaurant, Delivery Restaurant +- fid: 0x89c258e9fed52cff:0xaca6ccb5b5bf9162 +- cid: 12440856101467951458 +- reviewsCount: 568 +- reviewsDistribution: + - oneStar: 11 + - twoStar: 13 + - threeStar: 17 + - fourStar: 40 + - fiveStar: 487 +- imagesCount: 527 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 1 to 9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Beer, Coffee, Comfort food, Healthy options, Organic dishes, Quick bite, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids + - Parking: Paid parking lot, Paid street parking, Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 24 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr2Vxqr1rX1TVl9Hnk1mfRF-w1eAyzPn8kNOFuMhYOLZ8E3i640Y9bLfNzVRMpB9Ulcj-3jX3oMTYt6gTIKveYVeYvMpcQFF79C-LNPXpdAP2NGCfaHIiSOcsJ2PDoJihy82D0u=w408-h544-k-no +- kgmid: /g/11g7_5xcnb + +## 26. Pastitalia +- price: $$ +- categoryName: Italian restaurant +- address: 264 Lenox Ave, New York, NY 10027 +- neighborhood: Manhattan +- street: 264 Lenox Ave +- city: New York +- postalCode: 10027 +- state: New York +- countryCode: US +- website: https://www.pastitaliaus.com/ +- phone: (917) 522-3434 +- phoneUnformatted: +19175223434 +- claimThisBusiness: false +- location: + - lat: 40.8065175 + - lng: -73.9459371 +- totalScore: 4.9 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJW1uxcSr3wokRhxS_Ai4H8GU +- categories: Italian restaurant, Catering food and drink supplier, Coffee shop, Espresso bar, Italian grocery store, Pasta shop, Lunch restaurant, Pastry shop +- fid: 0x89c2f72a71b15b5b:0x65f0072e02bf1487 +- cid: 7345378886437246087 +- reviewsCount: 248 +- reviewsDistribution: + - oneStar: 1 + - twoStar: 0 + - threeStar: 3 + - fourStar: 12 + - fiveStar: 232 +- imagesCount: 478 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 11 AM to 9:30 PM + - day: Wednesday + hours: 11 AM to 9:30 PM + - day: Thursday + hours: 11 AM to 9:30 PM + - day: Friday + hours: 11 AM to 9:30 PM + - day: Saturday + hours: 9:30 AM to 9:30 PM + - day: Sunday + hours: 9:30 AM to 9:30 PM +- additionalOpeningHours: + - Lunch: - day: Monday - hours: 11 AM to 10 PM + - hours: Closed - day: Tuesday - hours: 11 AM to 10 PM + - hours: 11 AM–9:30 PM - day: Wednesday - hours: 11 AM to 10 PM + - hours: 11 AM–9:30 PM - day: Thursday - hours: 11 AM to 10 PM + - hours: 11 AM–9:30 PM - day: Friday - hours: 11 AM to 10 PM + - hours: 11 AM–9:30 PM - day: Saturday - hours: 11 AM to 10 PM + - hours: 9:30 AM–8:30 PM - day: Sunday - hours: 11 AM to 10 PM - additionalInfo: - Service options: No-contact delivery, Delivery, Onsite services, Takeout, Dine-in - Highlights: Fast service - Popular for: Lunch, Dinner, Solo dining - Accessibility: - Wheelchair accessible parking lot: false - Offerings: Comfort food, Quick bite, Vegan options, Vegetarian options - Dining options: Lunch, Dinner, Catering - Amenities: - Restroom: false - Atmosphere: Casual, Cozy - Crowd: Locals - Planning: - Accepts reservations: false - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Kids' menu - url: https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 27 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipOnno3KFrA4bCUoUWAn1syS_a-XCD8T_L4h1rc1=w408-h408-k-no - kgmid: /g/11g9n3t4gt -- title: Fumo Harlem - description: Bright, modern neighborhood Italian destination serving upmarket pizza, pasta & cocktails. - price: $$ - categoryName: Italian restaurant - address: 1600 Amsterdam Ave, New York, NY 10031 - neighborhood: Manhattan - street: 1600 Amsterdam Ave - city: New York - postalCode: 10031 - state: New York - countryCode: US - website: http://fumorestaurant.com/ - phone: (646) 692-6675 - phoneUnformatted: +16466926675 - claimThisBusiness: false - location: - lat: 40.8214251 - lng: -73.9506357 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJLe70p2X2wokReDA-X8LGqZE - categories: Italian restaurant, Pizza restaurant - fid: 0x89c2f665a7f4ee2d:0x91a9c6c25f3e3078 - cid: 10496138944687517816 - reviewsCount: 1829 - reviewsDistribution: - oneStar: 79 - twoStar: 41 - threeStar: 88 - fourStar: 368 - fiveStar: 1253 - imagesCount: 1220 - scrapedAt: 2025-09-19T16:26:24.726Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/j4TAgWiPxBg?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 9:30 AM–9:30 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Delivery, In-store pickup, In-store shopping, Onsite services, Takeout, Dine-in + - Popular for: Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible parking lot: false + - Dining options: Counter service, Dessert, Seating + - Amenities: Gender-neutral restroom, Restroom + - Crowd: Family-friendly + - Planning: Quick visit + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Kids' menu + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 25 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npanH_kxwfPB_5GW2tgnFrUvmxeGJeRwc2ySsQS3p0OBmj3xWFuIDr_9ZtqbjxYadMgNOCSDeUmBgyXZTagB22MhxJShdnQ7oh4wO6cJ-fC3L9gRIOI9lJIqaDZwjcMgc-uuw_hcEqvrLic=w408-h544-k-no +- kgmid: /g/11q46pmj5r + +## 27. Masseria East +- description: Straightforward Italian fare from a longtime local standby. +- price: $$$ +- categoryName: Italian restaurant +- address: 1404 3rd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1404 3rd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.masseriaeast.com/ +- phone: (212) 535-3520 +- phoneUnformatted: +12125353520 +- claimThisBusiness: false +- location: + - lat: 40.77491 + - lng: -73.957163 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJfUbyZ75YwokRMi96wHTiLBA +- categories: Italian restaurant, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Mediterranean restaurant, Restaurant, Seafood restaurant, Vegetarian restaurant, Wine bar +- fid: 0x89c258be67f2467d:0x102ce274c07a2f32 +- cid: 1165555394655432498 +- reviewsCount: 313 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 6 + - threeStar: 12 + - fourStar: 30 + - fiveStar: 256 +- imagesCount: 306 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WQUuhqHMVZ8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Tuesday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Wednesday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Thursday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Friday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Saturday + hours: 12 to 3 PM, 5 to 9:30 PM + - day: Sunday + hours: 12 to 9:30 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 11 AM to 10 PM + - hours: 12–2:30 PM - day: Tuesday - hours: 11 AM to 10:30 PM + - hours: 12–2:30 PM - day: Wednesday - hours: 11 AM to 10:30 PM + - hours: 12–2:30 PM - day: Thursday - hours: 11 AM to 10:30 PM + - hours: 12–2:30 PM - day: Friday - hours: 11 AM to 11 PM + - hours: 12–2:30 PM - day: Saturday - hours: 11 AM to 11 PM + - hours: 12–2:30 PM - day: Sunday - hours: 11 AM to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 11:30 AM–9:30 PM - - day: Tuesday - hours: 11:30 AM–10 PM - - day: Wednesday - hours: 11:30 AM–10 PM - - day: Thursday - hours: 11:30 AM–10 PM - - day: Friday - hours: 11:30 AM–10:30 PM - - day: Saturday - hours: 11:30 AM–10:30 PM - - day: Sunday - hours: 11:30 AM–9:30 PM - Takeout: - - day: Monday - hours: 11:30 AM–10 PM - - day: Tuesday - hours: 11:30 AM–10:30 PM - - day: Wednesday - hours: 11:30 AM–10:30 PM - - day: Thursday - hours: 11:30 AM–10:30 PM - - day: Friday - hours: 11:30 AM–11 PM - - day: Saturday - hours: 11:30 AM–11 PM - - day: Sunday - hours: 11:30 AM–10 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: College students, Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, Credit cards - Children: High chairs - Parking: Free street parking, Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 28 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noxn3BXjD-VrGWsESjzfnAMqQvj7MO7f9CdxhUpjDh2QXMSh12x_D-VtAqUbm2CRKHxCbMuJgWl_AtcTGdxBeOrfWKXQR_m2Nrj3-w5KIWDyZWKk1wt6YOJemgWDxJZp2PehuNK=w408-h306-k-no - kgmid: /g/11cm3nhnr6 -- title: Briciola Harlem - price: $$$ - categoryName: Italian restaurant - address: 398 W 145th St, New York, NY 10031 - neighborhood: Manhattan - street: 398 W 145th St - city: New York - postalCode: 10031 - state: New York - countryCode: US - website: https://briciolawinebar.com/ - phone: (212) 315-3315 - phoneUnformatted: +12123153315 - claimThisBusiness: false - location: - lat: 40.8240899 - lng: -73.9452634 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ2054MAz3wokR13Q2g5LfV_E - categories: Italian restaurant - fid: 0x89c2f70c30784edb:0xf157df92833674d7 - cid: 17390614306474063063 - reviewsCount: 206 - reviewsDistribution: - oneStar: 10 - twoStar: 9 - threeStar: 5 - fourStar: 14 - fiveStar: 168 - imagesCount: 335 - scrapedAt: 2025-09-19T16:26:24.727Z - openingHours: + - hours: 12–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Comfort food, Hard liquor, Organic dishes, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Free parking lot, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 26 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMpOy2JiLh2USfvFc-vyIHWgXLz3Lphothp7aL4=w408-h276-k-no +- kgmid: /g/1vnnk9rm + +## 28. Bigoi Venezia +- description: Hearty, housemade noodles in traditional Italian sauces offered in a snug counter-serve eatery. +- price: $ +- categoryName: Italian restaurant +- address: 1415 2nd Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1415 2nd Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.bigoivenezia.com/ +- phone: (917) 262-0680 +- phoneUnformatted: +19172620680 +- claimThisBusiness: false +- location: + - lat: 40.7700264 + - lng: -73.9577755 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJgdnYQcBYwokRDEGzKagrEfE +- categories: Italian restaurant +- fid: 0x89c258c041d8d981:0xf1112ba829b3410c +- cid: 17370713238998827276 +- reviewsCount: 757 +- reviewsDistribution: + - oneStar: 16 + - twoStar: 7 + - threeStar: 16 + - fourStar: 55 + - fiveStar: 663 +- imagesCount: 369 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Comfort food, Quick bite, Vegan options, Vegetarian options + - Dining options: Lunch, Dinner, Catering + - Amenities: + - Restroom: false + - Atmosphere: Casual, Cozy + - Crowd: Locals + - Planning: + - Accepts reservations: false + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Kids' menu +- url: https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 27 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipOnno3KFrA4bCUoUWAn1syS_a-XCD8T_L4h1rc1=w408-h408-k-no +- kgmid: /g/11g9n3t4gt + +## 29. Fumo Harlem +- description: Bright, modern neighborhood Italian destination serving upmarket pizza, pasta & cocktails. +- price: $$ +- categoryName: Italian restaurant +- address: 1600 Amsterdam Ave, New York, NY 10031 +- neighborhood: Manhattan +- street: 1600 Amsterdam Ave +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://fumorestaurant.com/ +- phone: (646) 692-6675 +- phoneUnformatted: +16466926675 +- claimThisBusiness: false +- location: + - lat: 40.8214251 + - lng: -73.9506357 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJLe70p2X2wokReDA-X8LGqZE +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c2f665a7f4ee2d:0x91a9c6c25f3e3078 +- cid: 10496138944687517816 +- reviewsCount: 1829 +- reviewsDistribution: + - oneStar: 79 + - twoStar: 41 + - threeStar: 88 + - fourStar: 368 + - fiveStar: 1253 +- imagesCount: 1220 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/j4TAgWiPxBg?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10:30 PM + - day: Wednesday + hours: 11 AM to 10:30 PM + - day: Thursday + hours: 11 AM to 10:30 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 12 PM to 12 AM + - hours: 11:30 AM–9:30 PM - day: Tuesday - hours: 12 PM to 12 AM + - hours: 11:30 AM–10 PM - day: Wednesday - hours: 12 PM to 12 AM + - hours: 11:30 AM–10 PM - day: Thursday - hours: 12 PM to 12 AM + - hours: 11:30 AM–10 PM - day: Friday - hours: 12 PM to 12 AM + - hours: 11:30 AM–10:30 PM - day: Saturday - hours: 12 PM to 12 AM + - hours: 11:30 AM–10:30 PM - day: Sunday - hours: 12 PM to 12 AM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Quick bite, Small plates, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Trendy - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Parking: Usually difficult to find a space - url: https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 29 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqlKu1vBUzXiHX7rOWUo3L6-tsEFRasfyBqE7YHv-kAGrJPF1Q-yrvtGp7EM5MZ4MxawEkHGgrhjmeSHPXtEDU9dMBCJJfQ2CJquJoTc-9MUndj-LtfV03kd0GP2fRqV57NK8CLoQ=w408-h306-k-no - kgmid: /g/11t_m1qd_p -- title: La Voglia NYC - price: $$$ - categoryName: Italian restaurant - address: 1645 3rd Ave, New York, NY 10128 - neighborhood: Manhattan - street: 1645 3rd Ave - city: New York - postalCode: 10128 - state: New York - countryCode: US - website: http://www.lavoglianyc.com/ - phone: (212) 417-0181 - phoneUnformatted: +12124170181 - claimThisBusiness: false - location: - lat: 40.7826745 - lng: -73.9508638 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJ2Z_EuD9ZwokRB_t-ovxEzxI - categories: Italian restaurant - fid: 0x89c2593fb8c49fd9:0x12cf44fca27efb07 - cid: 1355377864710486791 - reviewsCount: 410 - reviewsDistribution: - oneStar: 32 - twoStar: 13 - threeStar: 12 - fourStar: 40 - fiveStar: 313 - imagesCount: 399 - scrapedAt: 2025-09-19T16:26:24.727Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/rYAZF2X_o_Q?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 11:30 AM–9:30 PM + - Takeout: - day: Monday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10 PM - day: Tuesday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10:30 PM - day: Wednesday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10:30 PM - day: Thursday - hours: 11 AM to 11 PM + - hours: 11:30 AM–10:30 PM - day: Friday - hours: 11 AM to 11 PM + - hours: 11:30 AM–11 PM - day: Saturday - hours: 11 AM to 11 PM + - hours: 11:30 AM–11 PM - day: Sunday - hours: 11 AM to 11 PM - additionalOpeningHours: - Lunch: - - day: Monday - hours: 11 AM–3:30 PM - - day: Tuesday - hours: 11 AM–3:30 PM - - day: Wednesday - hours: 11 AM–3:30 PM - - day: Thursday - hours: 11 AM–3:30 PM - - day: Friday - hours: 11 AM–3:30 PM - - day: Saturday - hours: Closed - - day: Sunday - hours: Closed - Happy hours: - - day: Monday - hours: 4–7 PM - - day: Tuesday - hours: 9 AM–7 PM - - day: Wednesday - hours: 4–7 PM - - day: Thursday - hours: 4–7 PM - - day: Friday - hours: 4–7 PM - - day: Saturday - hours: 4–7 PM - - day: Sunday - hours: 4–7 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 11 AM–3:30 PM - - day: Sunday - hours: 11 AM–3:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Paid street parking, Usually somewhat difficult to find a space - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 30 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrrjR5BdMAcOnsqWdiXtAE9JBH6qeDUcyIJiKWSU0xdIB2BJ0pxjBClHl7S2Lzclgv60X4fPenp321DycWf0K0qedSM0f1l52UOOCTYKJQeqbDdalTU3_W1x508oqzFL0qE-AYc=w426-h240-k-no - kgmid: /g/11shvf20lq -- title: Lex Restaurant - description: Understated eatery turning out Italian & American dishes, from red-sauce standards to grilled steak. - price: $$ - categoryName: Italian restaurant - address: 1370 Lexington Ave, New York, NY 10128 - neighborhood: Manhattan - street: 1370 Lexington Ave - city: New York - postalCode: 10128 - state: New York - countryCode: US - website: http://lexrestaurant.com/ - phone: (212) 860-5903 - phoneUnformatted: +12128605903 - claimThisBusiness: false - location: - lat: 40.7825 - lng: -73.9536111 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJRS-PgqRYwokRg6Ej6VCpx2o - categories: Italian restaurant, Bar, Brunch restaurant, Lunch restaurant, Restaurant - fid: 0x89c258a4828f2f45:0x6ac7a950e923a183 - cid: 7694304653359686019 - reviewsCount: 325 - reviewsDistribution: - oneStar: 9 - twoStar: 2 - threeStar: 12 - fourStar: 66 - fiveStar: 236 - imagesCount: 261 - scrapedAt: 2025-09-19T16:26:24.727Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/ezPg7DUEY3o?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 11:30 AM–10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: College students, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 28 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noxn3BXjD-VrGWsESjzfnAMqQvj7MO7f9CdxhUpjDh2QXMSh12x_D-VtAqUbm2CRKHxCbMuJgWl_AtcTGdxBeOrfWKXQR_m2Nrj3-w5KIWDyZWKk1wt6YOJemgWDxJZp2PehuNK=w408-h306-k-no +- kgmid: /g/11cm3nhnr6 + +## 30. Briciola Harlem +- price: $$$ +- categoryName: Italian restaurant +- address: 398 W 145th St, New York, NY 10031 +- neighborhood: Manhattan +- street: 398 W 145th St +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: https://briciolawinebar.com/ +- phone: (212) 315-3315 +- phoneUnformatted: +12123153315 +- claimThisBusiness: false +- location: + - lat: 40.8240899 + - lng: -73.9452634 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ2054MAz3wokR13Q2g5LfV_E +- categories: Italian restaurant +- fid: 0x89c2f70c30784edb:0xf157df92833674d7 +- cid: 17390614306474063063 +- reviewsCount: 206 +- reviewsDistribution: + - oneStar: 10 + - twoStar: 9 + - threeStar: 5 + - fourStar: 14 + - fiveStar: 168 +- imagesCount: 335 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: + - day: Monday + hours: 12 PM to 12 AM + - day: Tuesday + hours: 12 PM to 12 AM + - day: Wednesday + hours: 12 PM to 12 AM + - day: Thursday + hours: 12 PM to 12 AM + - day: Friday + hours: 12 PM to 12 AM + - day: Saturday + hours: 12 PM to 12 AM + - day: Sunday + hours: 12 PM to 12 AM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Usually difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 29 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqlKu1vBUzXiHX7rOWUo3L6-tsEFRasfyBqE7YHv-kAGrJPF1Q-yrvtGp7EM5MZ4MxawEkHGgrhjmeSHPXtEDU9dMBCJJfQ2CJquJoTc-9MUndj-LtfV03kd0GP2fRqV57NK8CLoQ=w408-h306-k-no +- kgmid: /g/11t_m1qd_p + +## 31. La Voglia NYC +- price: $$$ +- categoryName: Italian restaurant +- address: 1645 3rd Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1645 3rd Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: http://www.lavoglianyc.com/ +- phone: (212) 417-0181 +- phoneUnformatted: +12124170181 +- claimThisBusiness: false +- location: + - lat: 40.7826745 + - lng: -73.9508638 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ2Z_EuD9ZwokRB_t-ovxEzxI +- categories: Italian restaurant +- fid: 0x89c2593fb8c49fd9:0x12cf44fca27efb07 +- cid: 1355377864710486791 +- reviewsCount: 410 +- reviewsDistribution: + - oneStar: 32 + - twoStar: 13 + - threeStar: 12 + - fourStar: 40 + - fiveStar: 313 +- imagesCount: 399 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/rYAZF2X_o_Q?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 11 AM to 11 PM + - day: Tuesday + hours: 11 AM to 11 PM + - day: Wednesday + hours: 11 AM to 11 PM + - day: Thursday + hours: 11 AM to 11 PM + - day: Friday + hours: 11 AM to 11 PM + - day: Saturday + hours: 11 AM to 11 PM + - day: Sunday + hours: 11 AM to 11 PM +- additionalOpeningHours: + - Lunch: - day: Monday - hours: 12 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Tuesday - hours: 12 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Wednesday - hours: 12 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Thursday - hours: 12 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Friday - hours: 12 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Saturday - hours: 12 to 10:30 PM + - hours: Closed - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Sports - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic - Crowd: Family-friendly, Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 31 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipNrsR0F-0D62XUo-ow5sgTrcX4QDaKT1OIJTYHJ=w408-h408-k-no - kgmid: /g/1tfryd4_ -- title: A&S Cucina - price: $$ - categoryName: Italian restaurant - address: 610 Exterior St Floor 4, Bronx, NY 10451 - neighborhood: West Bronx - street: 610 Exterior St Floor 4 - city: Bronx - postalCode: 10451 - state: New York - countryCode: US - phone: (718) 534-0880 - phoneUnformatted: +17185340880 - claimThisBusiness: false - location: - lat: 40.8205131 - lng: -73.9301496 - totalScore: 5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJU2-XmLX1wokRQt2Kd8NsckM - categories: Italian restaurant - fid: 0x89c2f5b598976f53:0x43726cc3778add42 - cid: 4860066534666198338 - reviewsCount: 16 - reviewsDistribution: - oneStar: 0 - twoStar: 0 - threeStar: 0 - fourStar: 0 - fiveStar: 16 - imagesCount: 65 - scrapedAt: 2025-09-19T16:26:24.727Z - openingHours: + - hours: Closed + - Happy hours: - day: Monday - hours: 11 AM to 7 PM + - hours: 4–7 PM - day: Tuesday - hours: 11 AM to 8 PM + - hours: 9 AM–7 PM - day: Wednesday - hours: 11 AM to 8 PM + - hours: 4–7 PM - day: Thursday - hours: 11 AM to 9 PM + - hours: 4–7 PM - day: Friday - hours: 11 AM to 9:30 PM + - hours: 4–7 PM - day: Saturday - hours: 11 AM to 9:30 PM + - hours: 4–7 PM - day: Sunday - hours: 11 AM to 8 PM - additionalInfo: - Service options: Delivery, Takeout, Dine-in - Highlights: Fast service - Popular for: Lunch, Dinner, Solo dining - Offerings: Comfort food, Quick bite - Dining options: Lunch, Dinner - Atmosphere: Casual - Payments: Credit cards, Debit cards - Parking: Paid parking lot - url: https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 32 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolHXk24Kk3t-tfUxLdPBH3NZQkulvACP2H6ftRHJEPkQonCc2Eqf9eO9dyTklFGpe-ostrsL8VQ-IQOHLEah3rlLOEZvIX1697vE2y1ZXwF3zvApUVbHno6-Hubf3A8SVw_frQaA=w408-h544-k-no - kgmid: /g/11yc58qq1s -- title: L’incontro by Rocco - description: Upscale Italian restaurant with a special-occasion setting & a long list of specials. - price: $$$ - categoryName: Italian restaurant - address: 1572 2nd Ave, New York, NY 10028 - neighborhood: Manhattan - street: 1572 2nd Ave - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: https://www.lincontrobyrocco.com/ - phone: (718) 721-3532 - phoneUnformatted: +17187213532 - claimThisBusiness: false - location: - lat: 40.7749695 - lng: -73.9535474 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJFb-9qGdfwokRi14Wngdo12o - categories: Italian restaurant - fid: 0x89c25f67a8bdbf15:0x6ad768079e165e8b - cid: 7698736469939478155 - reviewsCount: 1444 - reviewsDistribution: - oneStar: 30 - twoStar: 14 - threeStar: 39 - fourStar: 145 - fiveStar: 1216 - imagesCount: 1006 - scrapedAt: 2025-09-19T16:26:24.727Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mSOOTQsITkA?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 4–7 PM + - Brunch: - day: Monday - hours: Closed + - hours: Closed - day: Tuesday - hours: 4:30 to 10:30 PM + - hours: Closed - day: Wednesday - hours: 4:30 to 10:30 PM + - hours: Closed - day: Thursday - hours: 4:30 to 10:30 PM + - hours: Closed - day: Friday - hours: 4:30 to 10:30 PM + - hours: Closed - day: Saturday - hours: 4:30 to 10:30 PM + - hours: 11 AM–3:30 PM - day: Sunday - hours: 4:30 to 10 PM - additionalInfo: - Service options: Delivery, Takeout, Dine-in - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Organic dishes, Vegetarian options, Wine - Dining options: Dinner, Catering, Dessert, Seating, Table service - Amenities: Gender-neutral restroom, Restroom - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Groups, Tourists - Planning: Reservations required, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, Usually plenty of parking - url: https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 33 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipMF8b8zEt6hh5qSvd3RId1OHMVorvXGkS98vMcy=w426-h240-k-no - kgmid: /g/1td2vts7 -- title: Bono Trattoria - description: Italian dishes & pizza served in cool industrial digs with a tin ceiling, brick oven & rustic bar. - price: $$ - categoryName: Italian restaurant - address: 3658 Broadway, New York, NY 10031 - neighborhood: Manhattan - street: 3658 Broadway - city: New York - postalCode: 10031 - state: New York - countryCode: US - website: http://www.bononyc.com/ - phone: (646) 682-9249 - phoneUnformatted: +16466829249 - claimThisBusiness: false - location: - lat: 40.830224 - lng: -73.947329 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJNbJQ54f2wokRPxHl6aTGio0 - categories: Italian restaurant, Pizza restaurant - fid: 0x89c2f687e750b235:0x8d8ac6a4e9e5113f - cid: 10199182717734949183 - reviewsCount: 940 - reviewsDistribution: - oneStar: 17 - twoStar: 10 - threeStar: 42 - fourStar: 194 - fiveStar: 677 - imagesCount: 703 - scrapedAt: 2025-09-19T16:26:24.727Z - openingHours: + - hours: 11 AM–3:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 30 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrrjR5BdMAcOnsqWdiXtAE9JBH6qeDUcyIJiKWSU0xdIB2BJ0pxjBClHl7S2Lzclgv60X4fPenp321DycWf0K0qedSM0f1l52UOOCTYKJQeqbDdalTU3_W1x508oqzFL0qE-AYc=w426-h240-k-no +- kgmid: /g/11shvf20lq + +## 32. Lex Restaurant +- description: Understated eatery turning out Italian & American dishes, from red-sauce standards to grilled steak. +- price: $$ +- categoryName: Italian restaurant +- address: 1370 Lexington Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1370 Lexington Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: http://lexrestaurant.com/ +- phone: (212) 860-5903 +- phoneUnformatted: +12128605903 +- claimThisBusiness: false +- location: + - lat: 40.7825 + - lng: -73.9536111 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJRS-PgqRYwokRg6Ej6VCpx2o +- categories: Italian restaurant, Bar, Brunch restaurant, Lunch restaurant, Restaurant +- fid: 0x89c258a4828f2f45:0x6ac7a950e923a183 +- cid: 7694304653359686019 +- reviewsCount: 325 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 2 + - threeStar: 12 + - fourStar: 66 + - fiveStar: 236 +- imagesCount: 261 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/ezPg7DUEY3o?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 12 to 10:30 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 31 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNrsR0F-0D62XUo-ow5sgTrcX4QDaKT1OIJTYHJ=w408-h408-k-no +- kgmid: /g/1tfryd4_ + +## 33. A&S Cucina +- price: $$ +- categoryName: Italian restaurant +- address: 610 Exterior St Floor 4, Bronx, NY 10451 +- neighborhood: West Bronx +- street: 610 Exterior St Floor 4 +- city: Bronx +- postalCode: 10451 +- state: New York +- countryCode: US +- phone: (718) 534-0880 +- phoneUnformatted: +17185340880 +- claimThisBusiness: false +- location: + - lat: 40.8205131 + - lng: -73.9301496 +- totalScore: 5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU2-XmLX1wokRQt2Kd8NsckM +- categories: Italian restaurant +- fid: 0x89c2f5b598976f53:0x43726cc3778add42 +- cid: 4860066534666198338 +- reviewsCount: 16 +- reviewsDistribution: + - oneStar: 0 + - twoStar: 0 + - threeStar: 0 + - fourStar: 0 + - fiveStar: 16 +- imagesCount: 65 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: + - day: Monday + hours: 11 AM to 7 PM + - day: Tuesday + hours: 11 AM to 8 PM + - day: Wednesday + hours: 11 AM to 8 PM + - day: Thursday + hours: 11 AM to 9 PM + - day: Friday + hours: 11 AM to 9:30 PM + - day: Saturday + hours: 11 AM to 9:30 PM + - day: Sunday + hours: 11 AM to 8 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Offerings: Comfort food, Quick bite + - Dining options: Lunch, Dinner + - Atmosphere: Casual + - Payments: Credit cards, Debit cards + - Parking: Paid parking lot +- url: https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 32 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolHXk24Kk3t-tfUxLdPBH3NZQkulvACP2H6ftRHJEPkQonCc2Eqf9eO9dyTklFGpe-ostrsL8VQ-IQOHLEah3rlLOEZvIX1697vE2y1ZXwF3zvApUVbHno6-Hubf3A8SVw_frQaA=w408-h544-k-no +- kgmid: /g/11yc58qq1s + +## 34. L’incontro by Rocco +- description: Upscale Italian restaurant with a special-occasion setting & a long list of specials. +- price: $$$ +- categoryName: Italian restaurant +- address: 1572 2nd Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1572 2nd Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.lincontrobyrocco.com/ +- phone: (718) 721-3532 +- phoneUnformatted: +17187213532 +- claimThisBusiness: false +- location: + - lat: 40.7749695 + - lng: -73.9535474 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJFb-9qGdfwokRi14Wngdo12o +- categories: Italian restaurant +- fid: 0x89c25f67a8bdbf15:0x6ad768079e165e8b +- cid: 7698736469939478155 +- reviewsCount: 1444 +- reviewsDistribution: + - oneStar: 30 + - twoStar: 14 + - threeStar: 39 + - fourStar: 145 + - fiveStar: 1216 +- imagesCount: 1006 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mSOOTQsITkA?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4:30 to 10:30 PM + - day: Wednesday + hours: 4:30 to 10:30 PM + - day: Thursday + hours: 4:30 to 10:30 PM + - day: Friday + hours: 4:30 to 10:30 PM + - day: Saturday + hours: 4:30 to 10:30 PM + - day: Sunday + hours: 4:30 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Organic dishes, Vegetarian options, Wine + - Dining options: Dinner, Catering, Dessert, Seating, Table service + - Amenities: Gender-neutral restroom, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 33 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMF8b8zEt6hh5qSvd3RId1OHMVorvXGkS98vMcy=w426-h240-k-no +- kgmid: /g/1td2vts7 + +## 35. Bono Trattoria +- description: Italian dishes & pizza served in cool industrial digs with a tin ceiling, brick oven & rustic bar. +- price: $$ +- categoryName: Italian restaurant +- address: 3658 Broadway, New York, NY 10031 +- neighborhood: Manhattan +- street: 3658 Broadway +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://www.bononyc.com/ +- phone: (646) 682-9249 +- phoneUnformatted: +16466829249 +- claimThisBusiness: false +- location: + - lat: 40.830224 + - lng: -73.947329 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJNbJQ54f2wokRPxHl6aTGio0 +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c2f687e750b235:0x8d8ac6a4e9e5113f +- cid: 10199182717734949183 +- reviewsCount: 940 +- reviewsDistribution: + - oneStar: 17 + - twoStar: 10 + - threeStar: 42 + - fourStar: 194 + - fiveStar: 677 +- imagesCount: 703 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM +- additionalOpeningHours: + - Dinner: - day: Monday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Tuesday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Wednesday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Thursday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Friday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Saturday - hours: 11 AM to 10 PM + - hours: 4–10 PM - day: Sunday - hours: 11 AM to 10 PM - additionalOpeningHours: - Dinner: - - day: Monday - hours: 4–10 PM - - day: Tuesday - hours: 4–10 PM - - day: Wednesday - hours: 4–10 PM - - day: Thursday - hours: 4–10 PM - - day: Friday - hours: 4–10 PM - - day: Saturday - hours: 4–10 PM - - day: Sunday - hours: 4–10 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 11 AM–4 PM - - day: Sunday - hours: 11 AM–4 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy - Crowd: Groups, Locals - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - url: https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 34 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noPjN6sJqa1D0HTMjRF_oLsdsPRIpqwRPYqFG_bDQY-ShewHuHYvPEZH1tB6WbucoPWFCnqTiHIXiGdzoDLuCYPf8Yvwg1iAIz3l4CVENtvW4wTI4nDduEPE1XBMRDQkRme8a3H=w408-h265-k-no - kgmid: /g/11b808d0t2 -- title: Lusardi's - description: Longtime eatery with an old-world vibe featuring pastas, fish & meats, plus a lengthy wine list. - price: $$$ - categoryName: Italian restaurant - address: 1494 2nd Ave, New York, NY 10075 - neighborhood: Manhattan - street: 1494 2nd Ave - city: New York - postalCode: 10075 - state: New York - countryCode: US - website: http://www.lusardis.com/ - phone: (212) 249-2020 - phoneUnformatted: +12122492020 - claimThisBusiness: true - location: - lat: 40.7724018 - lng: -73.9554555 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJVdduFL9YwokRGn2EFWZDLBs - categories: Italian restaurant - fid: 0x89c258bf146ed755:0x1b2c436615847d1a - cid: 1958014043726052634 - reviewsCount: 309 - reviewsDistribution: - oneStar: 8 - twoStar: 4 - threeStar: 22 - fourStar: 45 - fiveStar: 230 - imagesCount: 212 - scrapedAt: 2025-09-19T16:26:24.727Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0VIligoJUAs?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 4–10 PM + - Brunch: - day: Monday - hours: 12 to 10:30 PM + - hours: Closed - day: Tuesday - hours: 12 to 10:30 PM + - hours: Closed - day: Wednesday - hours: 12 to 10:30 PM + - hours: Closed - day: Thursday - hours: 12 to 10:30 PM + - hours: Closed - day: Friday - hours: 12 to 11 PM + - hours: Closed - day: Saturday - hours: 12 to 11 PM + - hours: 11 AM–4 PM - day: Sunday - hours: 12 to 10:30 PM - additionalInfo: - Service options: Outdoor seating, Takeout, Dine-in - Highlights: Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Upscale - Crowd: Groups - Planning: Reservations required, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, Credit cards - url: https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 35 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrmzsu0XEkeNphvyqLohNt_6p_QJ1IDf47ZEFVccMkHymYtz05Eg6X8Vq7nnQIbFQyrNu935VunLLcgpcWdjoz29n547x4wEoKyEm815ziu46KWhpT3gPmQXhk-COWG50QXAQYe=w408-h408-k-no - kgmid: /g/1q6h_z98k -- title: Sandro's - description: This intimate neighborhood Italian restaurant featuring Roman cuisine draws a lively crowd. - price: $$$ - categoryName: Italian restaurant - address: 322 East 86th St, New York, NY 10028 - neighborhood: Manhattan - street: 322 East 86th St - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: http://www.sandrosrestaurant.com/ - phone: (212) 288-7374 - phoneUnformatted: +12122887374 - claimThisBusiness: false - location: - lat: 40.7772444 - lng: -73.9508955 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJj9dKtb5YwokRHtC1_HyFZG0 - categories: Italian restaurant, Bar, Northern Italian restaurant, Roman restaurant - fid: 0x89c258beb54ad78f:0x6d64857cfcb5d01e - cid: 7882572019667423262 - reviewsCount: 278 - reviewsDistribution: - oneStar: 3 - twoStar: 4 - threeStar: 12 - fourStar: 27 - fiveStar: 232 - imagesCount: 312 - scrapedAt: 2025-09-19T16:26:24.727Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0aEVt87ect8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 - openingHours: + - hours: 11 AM–4 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Locals + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs +- url: https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 34 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noPjN6sJqa1D0HTMjRF_oLsdsPRIpqwRPYqFG_bDQY-ShewHuHYvPEZH1tB6WbucoPWFCnqTiHIXiGdzoDLuCYPf8Yvwg1iAIz3l4CVENtvW4wTI4nDduEPE1XBMRDQkRme8a3H=w408-h265-k-no +- kgmid: /g/11b808d0t2 + +## 36. Lusardi's +- description: Longtime eatery with an old-world vibe featuring pastas, fish & meats, plus a lengthy wine list. +- price: $$$ +- categoryName: Italian restaurant +- address: 1494 2nd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1494 2nd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.lusardis.com/ +- phone: (212) 249-2020 +- phoneUnformatted: +12122492020 +- claimThisBusiness: true +- location: + - lat: 40.7724018 + - lng: -73.9554555 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJVdduFL9YwokRGn2EFWZDLBs +- categories: Italian restaurant +- fid: 0x89c258bf146ed755:0x1b2c436615847d1a +- cid: 1958014043726052634 +- reviewsCount: 309 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 4 + - threeStar: 22 + - fourStar: 45 + - fiveStar: 230 +- imagesCount: 212 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0VIligoJUAs?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 12 to 10:30 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Takeout, Dine-in + - Highlights: Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Upscale + - Crowd: Groups + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 35 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrmzsu0XEkeNphvyqLohNt_6p_QJ1IDf47ZEFVccMkHymYtz05Eg6X8Vq7nnQIbFQyrNu935VunLLcgpcWdjoz29n547x4wEoKyEm815ziu46KWhpT3gPmQXhk-COWG50QXAQYe=w408-h408-k-no +- kgmid: /g/1q6h_z98k + +## 37. Sandro's +- description: This intimate neighborhood Italian restaurant featuring Roman cuisine draws a lively crowd. +- price: $$$ +- categoryName: Italian restaurant +- address: 322 East 86th St, New York, NY 10028 +- neighborhood: Manhattan +- street: 322 East 86th St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.sandrosrestaurant.com/ +- phone: (212) 288-7374 +- phoneUnformatted: +12122887374 +- claimThisBusiness: false +- location: + - lat: 40.7772444 + - lng: -73.9508955 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJj9dKtb5YwokRHtC1_HyFZG0 +- categories: Italian restaurant, Bar, Northern Italian restaurant, Roman restaurant +- fid: 0x89c258beb54ad78f:0x6d64857cfcb5d01e +- cid: 7882572019667423262 +- reviewsCount: 278 +- reviewsDistribution: + - oneStar: 3 + - twoStar: 4 + - threeStar: 12 + - fourStar: 27 + - fiveStar: 232 +- imagesCount: 312 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0aEVt87ect8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: + - day: Monday + hours: 5 to 9 PM + - day: Tuesday + hours: 5 to 9 PM + - day: Wednesday + hours: 5 to 9 PM + - day: Thursday + hours: 5 to 9 PM + - day: Friday + hours: 5 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 9 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 38 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMhoz37pG6i3NCSux0Y4_wqOnNICJJnoO0kUhIw=w408-h271-k-no +- kgmid: /g/1tm69vy3 + +## 38. Due +- description: Sophisticated Northern Italian cuisine in an elegant yet cozy eatery with rustic-chic accents. +- price: $$ +- categoryName: Northern Italian restaurant +- address: 1396 3rd Ave #1, New York, NY 10075 +- neighborhood: Manhattan +- street: 1396 3rd Ave #1 +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.duenyc.com/ +- phone: (212) 772-3331 +- phoneUnformatted: +12127723331 +- claimThisBusiness: false +- location: + - lat: 40.7746951 + - lng: -73.9573127 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJPxCuXL5YwokR4a1zLHSjau8 +- categories: Northern Italian restaurant, Italian restaurant, Restaurant +- fid: 0x89c258be5cae103f:0xef6aa3742c73ade1 +- cid: 17251781041953418721 +- reviewsCount: 212 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 2 + - threeStar: 9 + - fourStar: 46 + - fiveStar: 147 +- imagesCount: 156 +- scrapedAt: 2025-09-19T16:26:24.728Z +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 40 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-proxy/ALd4DhHI_XCAl4xQsg-qCRnH6tgX67x5hvcgkHrDbGIRHsKj2U7D0jLKG2d__XTy90D_lh7n9NtkDSsm1Kb3GRDZ9Wy-0bSYop4FkGcVdeb_5TXc4StGkPbsm19lexb9-PoBTosjNZMT7HPxOx4OOpnm_Nr1areXLmOCiv3-H6LRzFrpoB0IM9z8gBCq8M3rR5L5zQr2XW4=w408-h271-k-no +- kgmid: /g/1tfk0ryh + +## 39. Elegante Restaurant & Pizzeria +- description: Longtime pizza parlor doling out pies, pasta & other Italian classics in a modest setting. +- price: $$ +- categoryName: Italian restaurant +- address: 92-01 Rockaway Beach Blvd, Rockaway Beach, NY 11693 +- neighborhood: Rockaway Beach +- street: 92-01 Rockaway Beach Blvd +- city: Rockaway Beach +- postalCode: 11693 +- state: New York +- countryCode: US +- website: https://www.elegantepizzeriarestaurant.com/?utm_source=gbp +- phone: (718) 634-3914 +- phoneUnformatted: +17186343914 +- claimThisBusiness: false +- location: + - lat: 40.5862659 + - lng: -73.8154509 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJfdftHUdowokRVbCXKo_CjlQ +- categories: Italian restaurant, Pizza restaurant, Delivery Restaurant +- fid: 0x89c268471dedd77d:0x548ec28f2a97b055 +- cid: 6093021266029555797 +- reviewsCount: 696 +- reviewsDistribution: + - oneStar: 52 + - twoStar: 18 + - threeStar: 35 + - fourStar: 86 + - fiveStar: 505 +- imagesCount: 782 +- scrapedAt: 2025-09-19T16:26:25.627Z +- openingHours: + - day: Monday + hours: 11 AM to 10 PM + - day: Tuesday + hours: 11 AM to 10 PM + - day: Wednesday + hours: 11 AM to 10 PM + - day: Thursday + hours: 11 AM to 10 PM + - day: Friday + hours: 11 AM to 10 PM + - day: Saturday + hours: 11 AM to 10 PM + - day: Sunday + hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 5 to 9 PM + - hours: 11 AM–9:30 PM - day: Tuesday - hours: 5 to 9 PM + - hours: 11 AM–9:30 PM - day: Wednesday - hours: 5 to 9 PM + - hours: 11 AM–9:30 PM - day: Thursday - hours: 5 to 9 PM + - hours: 11 AM–9:30 PM - day: Friday - hours: 5 to 10 PM + - hours: 11 AM–10 PM - day: Saturday - hours: 12 to 10 PM + - hours: 11 AM–9:30 PM - day: Sunday - hours: 12 to 9 PM - additionalInfo: - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Groups, Tourists - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 38 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipMhoz37pG6i3NCSux0Y4_wqOnNICJJnoO0kUhIw=w408-h271-k-no - kgmid: /g/1tm69vy3 -- title: Due - description: Sophisticated Northern Italian cuisine in an elegant yet cozy eatery with rustic-chic accents. - price: $$ - categoryName: Northern Italian restaurant - address: 1396 3rd Ave #1, New York, NY 10075 - neighborhood: Manhattan - street: 1396 3rd Ave #1 - city: New York - postalCode: 10075 - state: New York - countryCode: US - website: http://www.duenyc.com/ - phone: (212) 772-3331 - phoneUnformatted: +12127723331 - claimThisBusiness: false - location: - lat: 40.7746951 - lng: -73.9573127 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJPxCuXL5YwokR4a1zLHSjau8 - categories: Northern Italian restaurant, Italian restaurant, Restaurant - fid: 0x89c258be5cae103f:0xef6aa3742c73ade1 - cid: 17251781041953418721 - reviewsCount: 212 - reviewsDistribution: - oneStar: 8 - twoStar: 2 - threeStar: 9 - fourStar: 46 - fiveStar: 147 - imagesCount: 156 - scrapedAt: 2025-09-19T16:26:24.728Z - openingHours: + - hours: 11 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Coffee, Comfort food, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options + - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: College students, Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Has changing table(s), High chairs, Kids' menu + - Parking: Free street parking, Usually plenty of parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 50 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noA4_Sj541ZELrSG7KK2rGlOLbn01CccI2IypYKiA7b57Lwd8tM_nxWu6OLqAqt2JHHdTprDbAKFxAqOSr4_ukUjVdVvBzQBaOzNVe-gtxWmCxM742y5x3_gWNg1stO2ByU1ho=w408-h544-k-no +- kgmid: /g/1hc1bh2nc + +## 40. IL Carino Restaurant +- description: Italian cuisine served in an intimate, elevated setting with exposed-brick walls & low lighting. +- price: $$ +- categoryName: Italian restaurant +- address: 1710 2nd Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1710 2nd Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: https://www.ilcarinorestaurantnyc.com/ +- phone: (646) 882-0487 +- phoneUnformatted: +16468820487 +- claimThisBusiness: false +- location: + - lat: 40.7794927 + - lng: -73.9501884 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJiTxP17pYwokR0Gj0Wrd5cOg +- categories: Italian restaurant +- fid: 0x89c258bad74f3c89:0xe87079b75af468d0 +- cid: 16749020842602817744 +- reviewsCount: 260 +- reviewsDistribution: + - oneStar: 13 + - twoStar: 8 + - threeStar: 16 + - fourStar: 18 + - fiveStar: 205 +- imagesCount: 393 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/72nfaEZ_lwY?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 4 to 10 PM + - day: Sunday + hours: 4 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Hard liquor, Vegetarian options, Wine + - Dining options: Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups, Locals + - Planning: Reservations required, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 43 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npgcLl47mqf_FLQCHwGJgAn0OS1wyy0a96wBO3tiNtZc4S-0SlyC6HnWg9XGN_0LccglMaQJc4uoF3IfC389uR8Wk1TLh_VQ-EvPjJvoweYyWX5KLno0bpQsWaS010bz6TylJMuEmCBJ9aD=w408-h305-k-no +- kgmid: /g/1tffq7sr + +## 41. Uva +- description: This cozy, rustic spot with a patio and back garden draws lively crowds for small plates and wine. +- price: $$ +- categoryName: Italian restaurant +- address: 1486 2nd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1486 2nd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.uvanyc.com/ +- phone: (212) 472-4552 +- phoneUnformatted: +12124724552 +- claimThisBusiness: false +- location: + - lat: 40.7721816 + - lng: -73.9556129 +- totalScore: 4.3 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJxYXIbL9YwokR7A8e89BZgGA +- categories: Italian restaurant, Bar, Wine bar +- fid: 0x89c258bf6cc885c5:0x608059d0f31e0fec +- cid: 6953656578626949100 +- reviewsCount: 2005 +- reviewsDistribution: + - oneStar: 82 + - twoStar: 64 + - threeStar: 167 + - fourStar: 459 + - fiveStar: 1233 +- imagesCount: 1421 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/TvaPnNSr9sc?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 3 PM to 12 AM + - day: Tuesday + hours: 3 PM to 1 AM + - day: Wednesday + hours: 3 PM to 1 AM + - day: Thursday + hours: 3 PM to 1 AM + - day: Friday + hours: 3 PM to 1 AM + - day: Saturday + hours: 11 AM to 1 AM + - day: Sunday + hours: 11 AM to 12 AM +- additionalOpeningHours: + - Brunch: + - day: Monday + - hours: Closed + - day: Tuesday + - hours: Closed + - day: Wednesday + - hours: Closed + - day: Thursday + - hours: Closed + - day: Friday + - hours: Closed + - day: Saturday + - hours: 11 AM–3 PM + - day: Sunday + - hours: 11 AM–3 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 44 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noXDahT9ejA8LzkMGukO5StLsDMa_KRaiBE7GEp8fn-856pVnMqGidhH86GiusydFN5zLi8MIbtEhNXNBnNg3QZ65AYBGodNoTotTBZhUk6PSADgjytbS_HAoDhESOKrqBy7KyILw=w408-h270-k-no +- kgmid: /g/1tm8fx6j + +## 42. Felice 64 +- description: Stylish wine bar supplying Italian vintages & fare in a rustic, date-friendly setting. +- price: $$ +- categoryName: Italian restaurant +- address: 1166 1st Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1166 1st Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: https://www.felicerestaurants.com/felice-64/ +- phone: (212) 593-2223 +- phoneUnformatted: +12125932223 +- claimThisBusiness: false +- location: + - lat: 40.7625672 + - lng: -73.9595639 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJa1dYp8JYwokRX2NCKS9MxvE +- categories: Italian restaurant, Brunch restaurant, Caterer, Delivery service, Fine dining restaurant, Pasta shop, Restaurant, Wine bar +- fid: 0x89c258c2a758576b:0xf1c64c2f2942635f +- cid: 17421695973968733023 +- reviewsCount: 617 +- reviewsDistribution: + - oneStar: 7 + - twoStar: 12 + - threeStar: 34 + - fourStar: 156 + - fiveStar: 408 +- imagesCount: 436 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/8IxjPHXMwf4?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 11:30 AM to 11 PM + - day: Sunday + hours: 11:30 AM to 10 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + - hours: 4 AM–6 PM + - day: Tuesday + - hours: 4 AM–6 PM + - day: Wednesday + - hours: 4 AM–6 PM + - day: Thursday + - hours: 4 AM–6 PM + - day: Friday + - hours: 4 AM–6 PM + - day: Saturday + - hours: 4 AM–6 PM + - day: Sunday + - hours: 4 AM–6 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Debit cards, NFC mobile payments + - Children: High chairs, Kids' menu + - Parking: Free street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 47 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npJ-Mm-9aPRmbUgeBKrk8WFBBydvbjCdQ2RuP_SYMMCD40dqTMLgNMm8zMLhAaL9-UN_RHTBTA0_TYhkdXBySBHaq1_5Jt8WXbnEnGHWoEpq-UKYhTyfVlAqgnlG5O-DKtsGIFO=w408-h282-k-no +- kgmid: /g/1tdzs15z + +## 43. Luna Rossa +- description: Cozy, white-tablecloth restaurant offering Italian dishes with homemade pasta & a sizable wine list. +- price: $$ +- categoryName: Italian restaurant +- address: 347 E 85th St, New York, NY 10028 +- neighborhood: Manhattan +- street: 347 E 85th St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.lunarossanyc.com/ +- phone: (212) 517-3118 +- phoneUnformatted: +12125173118 +- claimThisBusiness: false +- location: + - lat: 40.776594 + - lng: -73.950351 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJO9tKSrpYwokRZQ9lHjvqcfg +- categories: Italian restaurant, Dessert restaurant, Delivery Restaurant, Northern Italian restaurant, Seafood restaurant, Southern Italian restaurant, Vegetarian restaurant, Wine bar +- fid: 0x89c258ba4a4adb3b:0xf871ea3b1e650f65 +- cid: 17902347533408341861 +- reviewsCount: 201 +- reviewsDistribution: + - oneStar: 7 + - twoStar: 5 + - threeStar: 6 + - fourStar: 23 + - fiveStar: 160 +- imagesCount: 177 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/iMViCOyoAug?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3 to 10:30 PM + - day: Wednesday + hours: 3 to 10:30 PM + - day: Thursday + hours: 3 to 10:30 PM + - day: Friday + hours: 3 to 10:30 PM + - day: Saturday + hours: 3 to 10:30 PM + - day: Sunday + hours: 3 to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + - hours: Closed + - day: Tuesday + - hours: 3–9:45 PM + - day: Wednesday + - hours: 3–9:45 PM + - day: Thursday + - hours: 3–9:45 PM + - day: Friday + - hours: 3–9:45 PM + - day: Saturday + - hours: 12–9:45 PM + - day: Sunday + - hours: 12–9:45 PM + - Takeout: - day: Monday - hours: 12 to 10 PM + - hours: Closed - day: Tuesday - hours: 12 to 10 PM + - hours: 3–9:45 PM - day: Wednesday - hours: 12 to 10 PM + - hours: 3–9:45 PM - day: Thursday - hours: 12 to 10 PM + - hours: 3–9:45 PM - day: Friday - hours: 12 to 10 PM + - hours: 3–9:45 PM - day: Saturday - hours: 12 to 10 PM + - hours: 12–9:45 PM - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace - Planning: Reservations required, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, Credit cards - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 40 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-proxy/ALd4DhHI_XCAl4xQsg-qCRnH6tgX67x5hvcgkHrDbGIRHsKj2U7D0jLKG2d__XTy90D_lh7n9NtkDSsm1Kb3GRDZ9Wy-0bSYop4FkGcVdeb_5TXc4StGkPbsm19lexb9-PoBTosjNZMT7HPxOx4OOpnm_Nr1areXLmOCiv3-H6LRzFrpoB0IM9z8gBCq8M3rR5L5zQr2XW4=w408-h271-k-no - kgmid: /g/1tfk0ryh -- title: Elegante Restaurant & Pizzeria - description: Longtime pizza parlor doling out pies, pasta & other Italian classics in a modest setting. - price: $$ - categoryName: Italian restaurant - address: 92-01 Rockaway Beach Blvd, Rockaway Beach, NY 11693 - neighborhood: Rockaway Beach - street: 92-01 Rockaway Beach Blvd - city: Rockaway Beach - postalCode: 11693 - state: New York - countryCode: US - website: https://www.elegantepizzeriarestaurant.com/?utm_source=gbp - phone: (718) 634-3914 - phoneUnformatted: +17186343914 - claimThisBusiness: false - location: - lat: 40.5862659 - lng: -73.8154509 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJfdftHUdowokRVbCXKo_CjlQ - categories: Italian restaurant, Pizza restaurant, Delivery Restaurant - fid: 0x89c268471dedd77d:0x548ec28f2a97b055 - cid: 6093021266029555797 - reviewsCount: 696 - reviewsDistribution: - oneStar: 52 - twoStar: 18 - threeStar: 35 - fourStar: 86 - fiveStar: 505 - imagesCount: 782 - scrapedAt: 2025-09-19T16:26:25.627Z - openingHours: + - hours: 12–9:45 PM + - Online service hours: - day: Monday - hours: 11 AM to 10 PM + - hours: Closed - day: Tuesday - hours: 11 AM to 10 PM + - hours: 3–10 PM - day: Wednesday - hours: 11 AM to 10 PM + - hours: 3–10 PM - day: Thursday - hours: 11 AM to 10 PM + - hours: 3–10 PM - day: Friday - hours: 11 AM to 10 PM + - hours: 3–10 PM - day: Saturday - hours: 11 AM to 10 PM + - hours: 12–10 PM - day: Sunday - hours: 11 AM to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 11 AM–9:30 PM - - day: Tuesday - hours: 11 AM–9:30 PM - - day: Wednesday - hours: 11 AM–9:30 PM - - day: Thursday - hours: 11 AM–9:30 PM - - day: Friday - hours: 11 AM–10 PM - - day: Saturday - hours: 11 AM–9:30 PM - - day: Sunday - hours: 11 AM–9:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Coffee, Comfort food, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service - Amenities: Restroom - Atmosphere: Casual, Cozy, Trendy - Crowd: College students, Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, Has changing table(s), High chairs, Kids' menu - Parking: Free street parking, Usually plenty of parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en - searchString: italian restaurant - language: en - rank: 50 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noA4_Sj541ZELrSG7KK2rGlOLbn01CccI2IypYKiA7b57Lwd8tM_nxWu6OLqAqt2JHHdTprDbAKFxAqOSr4_ukUjVdVvBzQBaOzNVe-gtxWmCxM742y5x3_gWNg1stO2ByU1ho=w408-h544-k-no - kgmid: /g/1hc1bh2nc -- title: IL Carino Restaurant - description: Italian cuisine served in an intimate, elevated setting with exposed-brick walls & low lighting. - price: $$ - categoryName: Italian restaurant - address: 1710 2nd Ave, New York, NY 10128 - neighborhood: Manhattan - street: 1710 2nd Ave - city: New York - postalCode: 10128 - state: New York - countryCode: US - website: https://www.ilcarinorestaurantnyc.com/ - phone: (646) 882-0487 - phoneUnformatted: +16468820487 - claimThisBusiness: false - location: - lat: 40.7794927 - lng: -73.9501884 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJiTxP17pYwokR0Gj0Wrd5cOg - categories: Italian restaurant - fid: 0x89c258bad74f3c89:0xe87079b75af468d0 - cid: 16749020842602817744 - reviewsCount: 260 - reviewsDistribution: - oneStar: 13 - twoStar: 8 - threeStar: 16 - fourStar: 18 - fiveStar: 205 - imagesCount: 393 - scrapedAt: 2025-09-19T16:26:25.740Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/72nfaEZ_lwY?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–10 PM + - Dinner: - day: Monday - hours: 4 to 10 PM + - hours: Closed - day: Tuesday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Wednesday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Thursday - hours: 4 to 10 PM + - hours: 4–10 PM - day: Friday - hours: 4 to 10 PM + - hours: 4–10:30 PM - day: Saturday - hours: 4 to 10 PM + - hours: 3–10:30 PM - day: Sunday - hours: 4 to 10 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great wine list - Popular for: Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Hard liquor, Vegetarian options, Wine - Dining options: Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic - Crowd: Family-friendly, Groups, Locals - Planning: Reservations required, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Paid street parking - url: https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 43 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npgcLl47mqf_FLQCHwGJgAn0OS1wyy0a96wBO3tiNtZc4S-0SlyC6HnWg9XGN_0LccglMaQJc4uoF3IfC389uR8Wk1TLh_VQ-EvPjJvoweYyWX5KLno0bpQsWaS010bz6TylJMuEmCBJ9aD=w408-h305-k-no - kgmid: /g/1tffq7sr -- title: Uva - description: This cozy, rustic spot with a patio and back garden draws lively crowds for small plates and wine. - price: $$ - categoryName: Italian restaurant - address: 1486 2nd Ave, New York, NY 10075 - neighborhood: Manhattan - street: 1486 2nd Ave - city: New York - postalCode: 10075 - state: New York - countryCode: US - website: http://www.uvanyc.com/ - phone: (212) 472-4552 - phoneUnformatted: +12124724552 - claimThisBusiness: false - location: - lat: 40.7721816 - lng: -73.9556129 - totalScore: 4.3 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJxYXIbL9YwokR7A8e89BZgGA - categories: Italian restaurant, Bar, Wine bar - fid: 0x89c258bf6cc885c5:0x608059d0f31e0fec - cid: 6953656578626949100 - reviewsCount: 2005 - reviewsDistribution: - oneStar: 82 - twoStar: 64 - threeStar: 167 - fourStar: 459 - fiveStar: 1233 - imagesCount: 1421 - scrapedAt: 2025-09-19T16:26:25.740Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/TvaPnNSr9sc?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 3–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating + - Amenities: Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups, LGBTQ+ friendly + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs +- url: https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 48 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNPCpCPuqPAb1Mv6_fOP7cjb8Wu1rbqbk2sMBlh=w408-h271-k-no +- kgmid: /g/1tyt67_1 + +## 44. Botte UES +- price: $$ +- categoryName: Italian restaurant +- address: 1606 1st Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1606 1st Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.botterestaurants.com/ +- phone: (212) 207-0052 +- phoneUnformatted: +12122070052 +- claimThisBusiness: false +- location: + - lat: 40.7750676 + - lng: -73.9504538 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJI43xgLlYwokR9H-LXHs36gc +- categories: Italian restaurant +- fid: 0x89c258b980f18d23:0x7ea377b5c8b7ff4 +- cid: 570329305788940276 +- reviewsCount: 318 +- reviewsDistribution: + - oneStar: 19 + - twoStar: 15 + - threeStar: 13 + - fourStar: 33 + - fiveStar: 238 +- imagesCount: 236 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-GCSu0_Y210?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: 4 to 10 PM + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: - day: Monday - hours: 3 PM to 12 AM + - hours: 4–7 PM - day: Tuesday - hours: 3 PM to 1 AM + - hours: 4–7 PM - day: Wednesday - hours: 3 PM to 1 AM + - hours: 4–7 PM - day: Thursday - hours: 3 PM to 1 AM + - hours: 4–7 PM - day: Friday - hours: 3 PM to 1 AM + - hours: 3–7 PM - day: Saturday - hours: 11 AM to 1 AM + - hours: Closed - day: Sunday - hours: 11 AM to 12 AM - additionalOpeningHours: - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 11 AM–3 PM - - day: Sunday - hours: 11 AM–3 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Groups, Tourists - Planning: Usually a wait - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs - Parking: Free street parking, Paid street parking - url: https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 44 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noXDahT9ejA8LzkMGukO5StLsDMa_KRaiBE7GEp8fn-856pVnMqGidhH86GiusydFN5zLi8MIbtEhNXNBnNg3QZ65AYBGodNoTotTBZhUk6PSADgjytbS_HAoDhESOKrqBy7KyILw=w408-h270-k-no - kgmid: /g/1tm8fx6j -- title: Felice 64 - description: Stylish wine bar supplying Italian vintages & fare in a rustic, date-friendly setting. - price: $$ - categoryName: Italian restaurant - address: 1166 1st Ave, New York, NY 10065 - neighborhood: Manhattan - street: 1166 1st Ave - city: New York - postalCode: 10065 - state: New York - countryCode: US - website: https://www.felicerestaurants.com/felice-64/ - phone: (212) 593-2223 - phoneUnformatted: +12125932223 - claimThisBusiness: false - location: - lat: 40.7625672 - lng: -73.9595639 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJa1dYp8JYwokRX2NCKS9MxvE - categories: Italian restaurant, Brunch restaurant, Caterer, Delivery service, Fine dining restaurant, Pasta shop, Restaurant, Wine bar - fid: 0x89c258c2a758576b:0xf1c64c2f2942635f - cid: 17421695973968733023 - reviewsCount: 617 - reviewsDistribution: - oneStar: 7 - twoStar: 12 - threeStar: 34 - fourStar: 156 - fiveStar: 408 - imagesCount: 436 - scrapedAt: 2025-09-19T16:26:25.740Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/8IxjPHXMwf4?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: Closed + - Takeout: - day: Monday - hours: 12 to 10 PM + - hours: 4–9:45 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 4–9:45 PM - day: Wednesday - hours: 12 to 10:30 PM + - hours: 4–9:45 PM - day: Thursday - hours: 12 to 10:30 PM + - hours: 4–9:45 PM - day: Friday - hours: 12 to 11 PM + - hours: 12–10:45 PM - day: Saturday - hours: 11:30 AM to 11 PM + - hours: 12–10:45 PM - day: Sunday - hours: 11:30 AM to 10 PM - additionalOpeningHours: - Happy hours: - - day: Monday - hours: 4 AM–6 PM - - day: Tuesday - hours: 4 AM–6 PM - - day: Wednesday - hours: 4 AM–6 PM - - day: Thursday - hours: 4 AM–6 PM - - day: Friday - hours: 4 AM–6 PM - - day: Saturday - hours: 4 AM–6 PM - - day: Sunday - hours: 4 AM–6 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible restroom: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Tourists - Planning: Dinner reservations recommended, Accepts reservations - Payments: Debit cards, NFC mobile payments - Children: High chairs, Kids' menu - Parking: Free street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 47 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npJ-Mm-9aPRmbUgeBKrk8WFBBydvbjCdQ2RuP_SYMMCD40dqTMLgNMm8zMLhAaL9-UN_RHTBTA0_TYhkdXBySBHaq1_5Jt8WXbnEnGHWoEpq-UKYhTyfVlAqgnlG5O-DKtsGIFO=w408-h282-k-no - kgmid: /g/1tdzs15z -- title: Luna Rossa - description: Cozy, white-tablecloth restaurant offering Italian dishes with homemade pasta & a sizable wine list. - price: $$ - categoryName: Italian restaurant - address: 347 E 85th St, New York, NY 10028 - neighborhood: Manhattan - street: 347 E 85th St - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: http://www.lunarossanyc.com/ - phone: (212) 517-3118 - phoneUnformatted: +12125173118 - claimThisBusiness: false - location: - lat: 40.776594 - lng: -73.950351 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJO9tKSrpYwokRZQ9lHjvqcfg - categories: Italian restaurant, Dessert restaurant, Delivery Restaurant, Northern Italian restaurant, Seafood restaurant, Southern Italian restaurant, Vegetarian restaurant, Wine bar - fid: 0x89c258ba4a4adb3b:0xf871ea3b1e650f65 - cid: 17902347533408341861 - reviewsCount: 201 - reviewsDistribution: - oneStar: 7 - twoStar: 5 - threeStar: 6 - fourStar: 23 - fiveStar: 160 - imagesCount: 177 - scrapedAt: 2025-09-19T16:26:25.741Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/iMViCOyoAug?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–9:45 PM + - Brunch: - day: Monday - hours: Closed + - hours: Closed - day: Tuesday - hours: 3 to 10:30 PM + - hours: Closed - day: Wednesday - hours: 3 to 10:30 PM + - hours: Closed - day: Thursday - hours: 3 to 10:30 PM + - hours: Closed - day: Friday - hours: 3 to 10:30 PM + - hours: 12–4 PM - day: Saturday - hours: 3 to 10:30 PM + - hours: 12–4 PM - day: Sunday - hours: 3 to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: Closed - - day: Tuesday - hours: 3–9:45 PM - - day: Wednesday - hours: 3–9:45 PM - - day: Thursday - hours: 3–9:45 PM - - day: Friday - hours: 3–9:45 PM - - day: Saturday - hours: 12–9:45 PM - - day: Sunday - hours: 12–9:45 PM - Takeout: - - day: Monday - hours: Closed - - day: Tuesday - hours: 3–9:45 PM - - day: Wednesday - hours: 3–9:45 PM - - day: Thursday - hours: 3–9:45 PM - - day: Friday - hours: 3–9:45 PM - - day: Saturday - hours: 12–9:45 PM - - day: Sunday - hours: 12–9:45 PM - Online service hours: - - day: Monday - hours: Closed - - day: Tuesday - hours: 3–10 PM - - day: Wednesday - hours: 3–10 PM - - day: Thursday - hours: 3–10 PM - - day: Friday - hours: 3–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Dinner: - - day: Monday - hours: Closed - - day: Tuesday - hours: 4–10 PM - - day: Wednesday - hours: 4–10 PM - - day: Thursday - hours: 4–10 PM - - day: Friday - hours: 4–10:30 PM - - day: Saturday - hours: 3–10:30 PM - - day: Sunday - hours: 3–9:30 PM - additionalInfo: - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great coffee, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating - Amenities: Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic - Crowd: Family-friendly, Groups, LGBTQ+ friendly - Planning: Dinner reservations recommended, Accepts reservations - Payments: Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - url: https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 48 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipNPCpCPuqPAb1Mv6_fOP7cjb8Wu1rbqbk2sMBlh=w408-h271-k-no - kgmid: /g/1tyt67_1 -- title: Botte UES - price: $$ - categoryName: Italian restaurant - address: 1606 1st Ave, New York, NY 10028 - neighborhood: Manhattan - street: 1606 1st Ave - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: https://www.botterestaurants.com/ - phone: (212) 207-0052 - phoneUnformatted: +12122070052 - claimThisBusiness: false - location: - lat: 40.7750676 - lng: -73.9504538 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJI43xgLlYwokR9H-LXHs36gc - categories: Italian restaurant - fid: 0x89c258b980f18d23:0x7ea377b5c8b7ff4 - cid: 570329305788940276 - reviewsCount: 318 - reviewsDistribution: - oneStar: 19 - twoStar: 15 - threeStar: 13 - fourStar: 33 - fiveStar: 238 - imagesCount: 236 - scrapedAt: 2025-09-19T16:26:25.741Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-GCSu0_Y210?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great wine list, Live music, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Small plates, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 49 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolXzNEIFsN-ymw3m-53K2V-62jcB3ZG6xPQUBFhO0HVCbb8a-pYgrbAmZlrMqh5aWtgrK-JKnRgj976PVvNYOHw6SxleadrfcWD3FG_RbGTlXVy3yDRXI6WyJl5930Kt8q-Q=w408-h544-k-no +- kgmid: /g/11rcw3wyq2 + +## 45. Campagnola +- description: An old-school Italian eatery with an extensive menu & prime opportunities for people-watching. +- price: $$$ +- categoryName: Italian restaurant +- address: 1382 1st Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1382 1st Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.campagnola-nyc.com/ +- phone: (212) 861-1102 +- phoneUnformatted: +12128611102 +- claimThisBusiness: false +- location: + - lat: 40.7688172 + - lng: -73.954826 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJHZRr3cBYwokRAOvPS6LgVVI +- categories: Italian restaurant, Bar +- fid: 0x89c258c0dd6b941d:0x5255e0a24bcfeb00 +- cid: 5932895071791737600 +- reviewsCount: 448 +- reviewsDistribution: + - oneStar: 17 + - twoStar: 9 + - threeStar: 23 + - fourStar: 54 + - fiveStar: 345 +- imagesCount: 379 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/zf-38Zl8KIs?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 5 to 10:45 PM + - day: Tuesday + hours: 5 to 10:45 PM + - day: Wednesday + hours: 5 to 10:45 PM + - day: Thursday + hours: 5 to 10:45 PM + - day: Friday + hours: 5 to 10:45 PM + - day: Saturday + hours: 5 to 10:45 PM + - day: Sunday + hours: 5 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Locals, Tourists + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 50 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npq7cMI9AXFFQErpzum8CjIabtnWYL8YR_mZQ4iHDSaRlHciZov7wWXPITPcVvODwVdE4pEH2xOHC8MkrQWdSwZwkpScjxv78DIiAMRDUrObS7dWempaNzdF7O6FRENWrQFyeYw7w=w408-h271-k-no +- kgmid: /g/1v7pzd2k + +## 46. Finestra Restaurant +- description: Quiet, candlelit trattoria featuring familiar Italian flavors & occasional live music. +- price: $$ +- categoryName: Italian restaurant +- address: 1370 York Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1370 York Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.finestrarestaurant.com/ +- phone: (212) 717-8595 +- phoneUnformatted: +12127178595 +- claimThisBusiness: false +- location: + - lat: 40.7675573 + - lng: -73.95304 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJqZIo0MZYwokR91Ny6mmqVLQ +- categories: Italian restaurant, Seafood restaurant +- fid: 0x89c258c6d02892a9:0xb454aa69ea7253f7 +- cid: 12994198196752372727 +- reviewsCount: 313 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 8 + - threeStar: 19 + - fourStar: 67 + - fiveStar: 210 +- imagesCount: 974 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-D_Wh5V-520?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 12 to 9 PM + - day: Tuesday + hours: 12 to 9 PM + - day: Wednesday + hours: 12 to 9 PM + - day: Thursday + hours: 12 to 9 PM + - day: Friday + hours: 12 to 9 PM + - day: Saturday + hours: 12 to 9 PM + - day: Sunday + hours: 12 to 9 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 4 to 10 PM + - hours: 12–9 PM - day: Tuesday - hours: 4 to 10 PM + - hours: 12–9 PM - day: Wednesday - hours: 4 to 10 PM + - hours: 12–9 PM - day: Thursday - hours: 4 to 10 PM + - hours: 12–9 PM - day: Friday - hours: 12 to 11 PM + - hours: 12–9 PM - day: Saturday - hours: 12 to 11 PM + - hours: 12–9 PM - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Happy hours: - - day: Monday - hours: 4–7 PM - - day: Tuesday - hours: 4–7 PM - - day: Wednesday - hours: 4–7 PM - - day: Thursday - hours: 4–7 PM - - day: Friday - hours: 3–7 PM - - day: Saturday - hours: Closed - - day: Sunday - hours: Closed - Takeout: - - day: Monday - hours: 4–9:45 PM - - day: Tuesday - hours: 4–9:45 PM - - day: Wednesday - hours: 4–9:45 PM - - day: Thursday - hours: 4–9:45 PM - - day: Friday - hours: 12–10:45 PM - - day: Saturday - hours: 12–10:45 PM - - day: Sunday - hours: 12–9:45 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: 12–4 PM - - day: Saturday - hours: 12–4 PM - - day: Sunday - hours: 12–4 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great wine list, Live music, Sports - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Small plates, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Parking: Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 49 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolXzNEIFsN-ymw3m-53K2V-62jcB3ZG6xPQUBFhO0HVCbb8a-pYgrbAmZlrMqh5aWtgrK-JKnRgj976PVvNYOHw6SxleadrfcWD3FG_RbGTlXVy3yDRXI6WyJl5930Kt8q-Q=w408-h544-k-no - kgmid: /g/11rcw3wyq2 -- title: Campagnola - description: An old-school Italian eatery with an extensive menu & prime opportunities for people-watching. - price: $$$ - categoryName: Italian restaurant - address: 1382 1st Ave, New York, NY 10021 - neighborhood: Manhattan - street: 1382 1st Ave - city: New York - postalCode: 10021 - state: New York - countryCode: US - website: http://www.campagnola-nyc.com/ - phone: (212) 861-1102 - phoneUnformatted: +12128611102 - claimThisBusiness: false - location: - lat: 40.7688172 - lng: -73.954826 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJHZRr3cBYwokRAOvPS6LgVVI - categories: Italian restaurant, Bar - fid: 0x89c258c0dd6b941d:0x5255e0a24bcfeb00 - cid: 5932895071791737600 - reviewsCount: 448 - reviewsDistribution: - oneStar: 17 - twoStar: 9 - threeStar: 23 - fourStar: 54 - fiveStar: 345 - imagesCount: 379 - scrapedAt: 2025-09-19T16:26:25.741Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/zf-38Zl8KIs?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Live music, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Pets: Dogs allowed, Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 51 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNkteYTvZ5RQhRDA1ftYSmSIZ_AgBnaL-wcZ2qr=w426-h240-k-no +- kgmid: /g/1tdlj65t + +## 47. 314 - pizza,pasta&cocktailbar +- price: $$ +- categoryName: Italian restaurant +- address: 3143 Broadway, New York, NY 10027 +- neighborhood: Manhattan +- street: 3143 Broadway +- city: New York +- postalCode: 10027 +- state: New York +- countryCode: US +- website: https://www.bar314nyc.com/ +- phone: (646) 682-7645 +- phoneUnformatted: +16466827645 +- claimThisBusiness: false +- location: + - lat: 40.8141969 + - lng: -73.9598383 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJx1MYBV_3wokRjeYHCXgKrJ8 +- categories: Italian restaurant, Gluten-free restaurant, Pizza delivery, Pizza restaurant, Vegetarian restaurant +- fid: 0x89c2f75f051853c7:0x9fac0a780907e68d +- cid: 11505582658688640653 +- reviewsCount: 393 +- reviewsDistribution: + - oneStar: 16 + - twoStar: 5 + - threeStar: 8 + - fourStar: 41 + - fiveStar: 323 +- imagesCount: 372 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/hBW3mCgvci0?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 11 PM + - day: Saturday + hours: 12 to 11 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 55 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noGc3jryP4Hs8eOL-x3pi6LQlGM8sI8FdpRbCP7zWqCadwoy1-KIfk0vZKCK7laUpj_c-jZKSfPp6GA-1DXvmk0gO1n3VApn5YZuLz-XZD5NNKg1EkKA9mg2SCFb75E7q03O9YY=w408-h544-k-no +- kgmid: /g/11gwhc4n3m + +## 48. Bottega +- description: Italian staples including housemade pasta dishes served in a casual but stylish space with a patio. +- price: $$ +- categoryName: Italian restaurant +- address: 1331 2nd Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1331 2nd Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.bottegany.com/ +- phone: (212) 288-5282 +- phoneUnformatted: +12122885282 +- claimThisBusiness: false +- location: + - lat: 40.7678058 + - lng: -73.9593676 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJxR4H4cFYwokRM1RXHp-Cy5s +- categories: Italian restaurant, Bar +- fid: 0x89c258c1e1071ec5:0x9bcb829f1e575433 +- cid: 11226210116071543859 +- reviewsCount: 314 +- reviewsDistribution: + - oneStar: 11 + - twoStar: 10 + - threeStar: 20 + - fourStar: 69 + - fiveStar: 204 +- imagesCount: 107 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/XgnZqXjwZnk?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10 PM + - day: Wednesday + hours: 12 to 10 PM + - day: Thursday + hours: 12 to 10 PM + - day: Friday + hours: 12 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 56 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrbcjqFUIMgRhqP_S6d9scX9pAvynyWuMSj0Mt3h_k9RgFdClLs_BSmNZi7v60DUPlGDO4hwvXGYxbrtATMmfu3suVcEkiAiZTWh5_yhCNYo79EodLiC2aaRPHLlLdy4nGpqfDt6w=w413-h240-k-no +- kgmid: /g/1yl57jlmg + +## 49. L'Artista Italian Kitchen & Bar +- categoryName: Northern Italian restaurant +- address: 142 Hamilton Pl, New York, NY 10031 +- neighborhood: Manhattan +- street: 142 Hamilton Pl +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://www.lartistanyc.com/ +- phone: (646) 858-0312 +- phoneUnformatted: +16468580312 +- claimThisBusiness: false +- location: + - lat: 40.8243708 + - lng: -73.9486693 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJscGs5JD3wokRcU7HNiu5akM +- categories: Northern Italian restaurant, Cocktail bar, Dessert restaurant, Italian restaurant, Jazz club, Lounge, Wine bar +- fid: 0x89c2f790e4acc1b1:0x436ab92b36c74e71 +- cid: 4857898743326264945 +- reviewsCount: 260 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 13 + - threeStar: 9 + - fourStar: 22 + - fiveStar: 208 +- imagesCount: 429 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WeRZ2XWj8jU?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: + - day: Monday + hours: 4 to 10 PM + - day: Tuesday + hours: 4 to 10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4 to 10 PM + - day: Friday + hours: 4 to 10 PM + - day: Saturday + hours: 12 to 10 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: - day: Monday - hours: 5 to 10:45 PM + - hours: 4–7 PM - day: Tuesday - hours: 5 to 10:45 PM + - hours: 4–7 PM - day: Wednesday - hours: 5 to 10:45 PM + - hours: Closed - day: Thursday - hours: 5 to 10:45 PM + - hours: 4–7 PM - day: Friday - hours: 5 to 10:45 PM + - hours: 4–7 PM - day: Saturday - hours: 5 to 10:45 PM + - hours: 4–7 PM - day: Sunday - hours: 5 to 10 PM - additionalInfo: - Service options: Delivery, Takeout, Dine-in - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list, Live music - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine - Dining options: Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Groups, Locals, Tourists - Planning: Reservations required, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - url: https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 50 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npq7cMI9AXFFQErpzum8CjIabtnWYL8YR_mZQ4iHDSaRlHciZov7wWXPITPcVvODwVdE4pEH2xOHC8MkrQWdSwZwkpScjxv78DIiAMRDUrObS7dWempaNzdF7O6FRENWrQFyeYw7w=w408-h271-k-no - kgmid: /g/1v7pzd2k -- title: Finestra Restaurant - description: Quiet, candlelit trattoria featuring familiar Italian flavors & occasional live music. - price: $$ - categoryName: Italian restaurant - address: 1370 York Ave, New York, NY 10021 - neighborhood: Manhattan - street: 1370 York Ave - city: New York - postalCode: 10021 - state: New York - countryCode: US - website: http://www.finestrarestaurant.com/ - phone: (212) 717-8595 - phoneUnformatted: +12127178595 - claimThisBusiness: false - location: - lat: 40.7675573 - lng: -73.95304 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJqZIo0MZYwokR91Ny6mmqVLQ - categories: Italian restaurant, Seafood restaurant - fid: 0x89c258c6d02892a9:0xb454aa69ea7253f7 - cid: 12994198196752372727 - reviewsCount: 313 - reviewsDistribution: - oneStar: 9 - twoStar: 8 - threeStar: 19 - fourStar: 67 - fiveStar: 210 - imagesCount: 974 - scrapedAt: 2025-09-19T16:26:25.741Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-D_Wh5V-520?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 4–7 PM + - Takeout: - day: Monday - hours: 12 to 9 PM + - hours: 4–10 PM - day: Tuesday - hours: 12 to 9 PM + - hours: 4–10 PM - day: Wednesday - hours: 12 to 9 PM + - hours: Closed - day: Thursday - hours: 12 to 9 PM + - hours: 4–10 PM - day: Friday - hours: 12 to 9 PM + - hours: 4–10 PM - day: Saturday - hours: 12 to 9 PM + - hours: 12–10 PM - day: Sunday - hours: 12 to 9 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 12–9 PM - - day: Tuesday - hours: 12–9 PM - - day: Wednesday - hours: 12–9 PM - - day: Thursday - hours: 12–9 PM - - day: Friday - hours: 12–9 PM - - day: Saturday - hours: 12–9 PM - - day: Sunday - hours: 12–9 PM - additionalInfo: - From the business: Identifies as women-owned - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Live music, Serves local specialty - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs, Kids' menu - Pets: Dogs allowed, Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 51 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipNkteYTvZ5RQhRDA1ftYSmSIZ_AgBnaL-wcZ2qr=w426-h240-k-no - kgmid: /g/1tdlj65t -- title: 314 - pizza,pasta&cocktailbar - price: $$ - categoryName: Italian restaurant - address: 3143 Broadway, New York, NY 10027 - neighborhood: Manhattan - street: 3143 Broadway - city: New York - postalCode: 10027 - state: New York - countryCode: US - website: https://www.bar314nyc.com/ - phone: (646) 682-7645 - phoneUnformatted: +16466827645 - claimThisBusiness: false - location: - lat: 40.8141969 - lng: -73.9598383 - totalScore: 4.7 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJx1MYBV_3wokRjeYHCXgKrJ8 - categories: Italian restaurant, Gluten-free restaurant, Pizza delivery, Pizza restaurant, Vegetarian restaurant - fid: 0x89c2f75f051853c7:0x9fac0a780907e68d - cid: 11505582658688640653 - reviewsCount: 393 - reviewsDistribution: - oneStar: 16 - twoStar: 5 - threeStar: 8 - fourStar: 41 - fiveStar: 323 - imagesCount: 372 - scrapedAt: 2025-09-19T16:26:25.742Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/hBW3mCgvci0?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–10 PM + - Access: - day: Monday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Wednesday - hours: 12 to 10 PM + - hours: Closed - day: Thursday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Friday - hours: 12 to 11 PM + - hours: 4–10 PM - day: Saturday - hours: 12 to 11 PM + - hours: 12–10 PM - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Quick bite, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Casual, Cozy, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists - Planning: Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Parking: Free street parking, Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8 - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 55 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noGc3jryP4Hs8eOL-x3pi6LQlGM8sI8FdpRbCP7zWqCadwoy1-KIfk0vZKCK7laUpj_c-jZKSfPp6GA-1DXvmk0gO1n3VApn5YZuLz-XZD5NNKg1EkKA9mg2SCFb75E7q03O9YY=w408-h544-k-no - kgmid: /g/11gwhc4n3m -- title: Bottega - description: Italian staples including housemade pasta dishes served in a casual but stylish space with a patio. - price: $$ - categoryName: Italian restaurant - address: 1331 2nd Ave, New York, NY 10021 - neighborhood: Manhattan - street: 1331 2nd Ave - city: New York - postalCode: 10021 - state: New York - countryCode: US - website: http://www.bottegany.com/ - phone: (212) 288-5282 - phoneUnformatted: +12122885282 - claimThisBusiness: false - location: - lat: 40.7678058 - lng: -73.9593676 - totalScore: 4.4 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJxR4H4cFYwokRM1RXHp-Cy5s - categories: Italian restaurant, Bar - fid: 0x89c258c1e1071ec5:0x9bcb829f1e575433 - cid: 11226210116071543859 - reviewsCount: 314 - reviewsDistribution: - oneStar: 11 - twoStar: 10 - threeStar: 20 - fourStar: 69 - fiveStar: 204 - imagesCount: 107 - scrapedAt: 2025-09-19T16:26:25.742Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/XgnZqXjwZnk?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–10 PM + - Kitchen: - day: Monday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Tuesday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Wednesday - hours: 12 to 10 PM + - hours: Closed - day: Thursday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Friday - hours: 12 to 10 PM + - hours: 4–10 PM - day: Saturday - hours: 12 to 10 PM + - hours: 12–10 PM - day: Sunday - hours: 12 to 10 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale - Crowd: Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: High chairs, Kids' menu - Parking: Paid street parking - Pets: Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 56 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrbcjqFUIMgRhqP_S6d9scX9pAvynyWuMSj0Mt3h_k9RgFdClLs_BSmNZi7v60DUPlGDO4hwvXGYxbrtATMmfu3suVcEkiAiZTWh5_yhCNYo79EodLiC2aaRPHLlLdy4nGpqfDt6w=w413-h240-k-no - kgmid: /g/1yl57jlmg -- title: L'Artista Italian Kitchen & Bar - categoryName: Northern Italian restaurant - address: 142 Hamilton Pl, New York, NY 10031 - neighborhood: Manhattan - street: 142 Hamilton Pl - city: New York - postalCode: 10031 - state: New York - countryCode: US - website: http://www.lartistanyc.com/ - phone: (646) 858-0312 - phoneUnformatted: +16468580312 - claimThisBusiness: false - location: - lat: 40.8243708 - lng: -73.9486693 - totalScore: 4.6 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJscGs5JD3wokRcU7HNiu5akM - categories: Northern Italian restaurant, Cocktail bar, Dessert restaurant, Italian restaurant, Jazz club, Lounge, Wine bar - fid: 0x89c2f790e4acc1b1:0x436ab92b36c74e71 - cid: 4857898743326264945 - reviewsCount: 260 - reviewsDistribution: - oneStar: 8 - twoStar: 13 - threeStar: 9 - fourStar: 22 - fiveStar: 208 - imagesCount: 429 - scrapedAt: 2025-09-19T16:26:25.742Z - reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WeRZ2XWj8jU?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 - openingHours: + - hours: 12–10 PM + - Brunch: + - day: Monday + - hours: Closed + - day: Tuesday + - hours: Closed + - day: Wednesday + - hours: Closed + - day: Thursday + - hours: Closed + - day: Friday + - hours: Closed + - day: Saturday + - hours: 12–4 PM + - day: Sunday + - hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Pets: Dogs allowed, Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 59 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipO6j0I_9oCXkmj91OGfXksWfd3iHsWOQhdh2HJd=w408-h544-k-no +- kgmid: /g/11h39mlfsp + +## 50. Antonucci Cafe +- description: Refined venue offering elevated Italian fare, including homemade pastas, plus an ample wine list. +- price: $$$ +- categoryName: Italian restaurant +- address: 170 E 81st St, New York, NY 10028 +- neighborhood: Manhattan +- street: 170 E 81st St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://antonuccicafe81.com/ +- phone: (212) 570-5100 +- phoneUnformatted: +12125705100 +- claimThisBusiness: true +- location: + - lat: 40.7756958 + - lng: -73.9569247 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJmQKjfr5YwokRxETZofFe5hc +- categories: Italian restaurant, Bar & grill, Cafe, Restaurant +- fid: 0x89c258be7ea30299:0x17e65ef1a1d944c4 +- cid: 1722168299411293380 +- reviewsCount: 406 +- reviewsDistribution: + - oneStar: 18 + - twoStar: 12 + - threeStar: 18 + - fourStar: 52 + - fiveStar: 306 +- imagesCount: 256 +- scrapedAt: 2025-09-19T16:26:25.742Z +- openingHours: + - day: Monday + hours: 12 to 10 PM + - day: Tuesday + hours: 12 to 10:30 PM + - day: Wednesday + hours: 12 to 10:30 PM + - day: Thursday + hours: 12 to 10:30 PM + - day: Friday + hours: 12 to 10:30 PM + - day: Saturday + hours: 12 to 10:30 PM + - day: Sunday + hours: 12 to 10 PM +- additionalOpeningHours: + - Delivery: - day: Monday - hours: 4 to 10 PM + - hours: 5–10 PM - day: Tuesday - hours: 4 to 10 PM + - hours: 5–10 PM - day: Wednesday - hours: Closed + - hours: 5–10 PM - day: Thursday - hours: 4 to 10 PM + - hours: 5–10 PM - day: Friday - hours: 4 to 10 PM + - hours: 5–10 PM - day: Saturday - hours: 12 to 10 PM + - hours: 5–10 PM - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Happy hours: - - day: Monday - hours: 4–7 PM - - day: Tuesday - hours: 4–7 PM - - day: Wednesday - hours: Closed - - day: Thursday - hours: 4–7 PM - - day: Friday - hours: 4–7 PM - - day: Saturday - hours: 4–7 PM - - day: Sunday - hours: 4–7 PM - Takeout: - - day: Monday - hours: 4–10 PM - - day: Tuesday - hours: 4–10 PM - - day: Wednesday - hours: Closed - - day: Thursday - hours: 4–10 PM - - day: Friday - hours: 4–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Access: - - day: Monday - hours: 4–10 PM - - day: Tuesday - hours: 4–10 PM - - day: Wednesday - hours: Closed - - day: Thursday - hours: 4–10 PM - - day: Friday - hours: 4–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Kitchen: - - day: Monday - hours: 4–10 PM - - day: Tuesday - hours: 4–10 PM - - day: Wednesday - hours: Closed - - day: Thursday - hours: 4–10 PM - - day: Friday - hours: 4–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - Brunch: - - day: Monday - hours: Closed - - day: Tuesday - hours: Closed - - day: Wednesday - hours: Closed - - day: Thursday - hours: Closed - - day: Friday - hours: Closed - - day: Saturday - hours: 12–4 PM - - day: Sunday - hours: 12–4 PM - additionalInfo: - Service options: Outdoor seating, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music - Popular for: Lunch, Dinner, Solo dining - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi - Atmosphere: Cozy, Romantic, Trendy - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace - Planning: Reservations required, Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - Children: Good for kids, High chairs - Pets: Dogs allowed, Dogs allowed outside - url: https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 59 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/p/AF1QipO6j0I_9oCXkmj91OGfXksWfd3iHsWOQhdh2HJd=w408-h544-k-no - kgmid: /g/11h39mlfsp -- title: Antonucci Cafe - description: Refined venue offering elevated Italian fare, including homemade pastas, plus an ample wine list. - price: $$$ - categoryName: Italian restaurant - address: 170 E 81st St, New York, NY 10028 - neighborhood: Manhattan - street: 170 E 81st St - city: New York - postalCode: 10028 - state: New York - countryCode: US - website: https://antonuccicafe81.com/ - phone: (212) 570-5100 - phoneUnformatted: +12125705100 - claimThisBusiness: true - location: - lat: 40.7756958 - lng: -73.9569247 - totalScore: 4.5 - permanentlyClosed: false - temporarilyClosed: false - placeId: ChIJmQKjfr5YwokRxETZofFe5hc - categories: Italian restaurant, Bar & grill, Cafe, Restaurant - fid: 0x89c258be7ea30299:0x17e65ef1a1d944c4 - cid: 1722168299411293380 - reviewsCount: 406 - reviewsDistribution: - oneStar: 18 - twoStar: 12 - threeStar: 18 - fourStar: 52 - fiveStar: 306 - imagesCount: 256 - scrapedAt: 2025-09-19T16:26:25.742Z - openingHours: + - hours: 5–10 PM + - Takeout: - day: Monday - hours: 12 to 10 PM + - hours: 12–10 PM - day: Tuesday - hours: 12 to 10:30 PM + - hours: 12–10 PM - day: Wednesday - hours: 12 to 10:30 PM + - hours: 12–10 PM - day: Thursday - hours: 12 to 10:30 PM + - hours: 12–10 PM - day: Friday - hours: 12 to 10:30 PM + - hours: 12–10 PM - day: Saturday - hours: 12 to 10:30 PM + - hours: 12–10 PM - day: Sunday - hours: 12 to 10 PM - additionalOpeningHours: - Delivery: - - day: Monday - hours: 5–10 PM - - day: Tuesday - hours: 5–10 PM - - day: Wednesday - hours: 5–10 PM - - day: Thursday - hours: 5–10 PM - - day: Friday - hours: 5–10 PM - - day: Saturday - hours: 5–10 PM - - day: Sunday - hours: 5–10 PM - Takeout: - - day: Monday - hours: 12–10 PM - - day: Tuesday - hours: 12–10 PM - - day: Wednesday - hours: 12–10 PM - - day: Thursday - hours: 12–10 PM - - day: Friday - hours: 12–10 PM - - day: Saturday - hours: 12–10 PM - - day: Sunday - hours: 12–10 PM - additionalInfo: - Service options: Outdoor seating, Delivery, Takeout, Dine-in - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list - Popular for: Lunch, Dinner, Solo dining - Accessibility: - - Wheelchair accessible entrance: true - - Wheelchair accessible seating: true - - Wheelchair accessible parking lot: false - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service - Amenities: Bar onsite, Restroom - Atmosphere: Cozy, Romantic, Trendy, Upscale - Crowd: Groups - Planning: Dinner reservations recommended, Accepts reservations - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards - url: https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc - searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en - searchString: italian restaurant - language: en - rank: 60 - isAdvertisement: false - imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrorwSkoGQ6dwJaBkXAKbzdWyVnO6sPKoDJwRQ9otnkDGWYdWZzMQnlKcE2bTNytK4tE2CJFOJ4SGkP4of7Vy9h2Yxfr49IdtciphiOSDlhuF5Z5UIO8snTZwvU1k982yNRq3c-=w426-h240-k-no - kgmid: /g/1tf9p556" + - hours: 12–10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 60 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrorwSkoGQ6dwJaBkXAKbzdWyVnO6sPKoDJwRQ9otnkDGWYdWZzMQnlKcE2bTNytK4tE2CJFOJ4SGkP4of7Vy9h2Yxfr49IdtciphiOSDlhuF5Z5UIO8snTZwvU1k982yNRq3c-=w426-h240-k-no +- kgmid: /g/1tf9p556" `; diff --git a/tests/unit/json-to-markdown.test.ts b/tests/unit/json-to-markdown.test.ts index ff52d4a1..7cc97ad8 100644 --- a/tests/unit/json-to-markdown.test.ts +++ b/tests/unit/json-to-markdown.test.ts @@ -6,23 +6,40 @@ import { describe, expect, it } from 'vitest'; import { jsonToMarkdown } from '../../src/utils/json-to-markdown.js'; describe('jsonToMarkdown', () => { + it('should format simple types', () => { + expect(jsonToMarkdown(1)).toMatchInlineSnapshot(`"1"`); + expect(jsonToMarkdown('hello')).toMatchInlineSnapshot(`"hello"`); + expect(jsonToMarkdown(true)).toMatchInlineSnapshot(`"true"`); + expect(jsonToMarkdown(false)).toMatchInlineSnapshot(`"false"`); + expect(jsonToMarkdown(null)).toMatchInlineSnapshot(`""`); + }); + + it('should format complex types with simple types', () => { + expect(jsonToMarkdown({ a: 1, b: 'hello', c: true, d: false, e: null })).toMatchInlineSnapshot(` + "- a: 1 + - b: hello + - c: true + - d: false" + `); + }); + it('should format simple json object', () => { expect(jsonToMarkdown({ name: 'John Doe', age: 30, email: 'john.doe@example.com', })).toMatchInlineSnapshot(` - "name: John Doe - age: 30 - email: john.doe@example.com" + "- name: John Doe + - age: 30 + - email: john.doe@example.com" `); }); it('should format simple json array', () => { expect(jsonToMarkdown([1, 2, 3])).toMatchInlineSnapshot(`"1, 2, 3"`); expect(jsonToMarkdown({ a: [1, 2, 3], b: [4, 5] })).toMatchInlineSnapshot(` - "a: 1, 2, 3 - b: 4, 5" + "- a: 1, 2, 3 + - b: 4, 5" `); }); @@ -38,23 +55,6 @@ describe('jsonToMarkdown', () => { `); }); - it('should format json array with nested objects', () => { - expect(jsonToMarkdown([{ a: 1, b: 2 }, { a: 3, b: 4 }])).toMatchInlineSnapshot(` - "- a: 1 - b: 2 - - a: 3 - b: 4" - `); - - expect(jsonToMarkdown({ x: [{ a: 1, b: 2 }, { a: 3, b: 4 }] })).toMatchInlineSnapshot(` - "x: - - a: 1 - b: 2 - - a: 3 - b: 4" - `); - }); - it('should format json with nested objects', () => { expect(jsonToMarkdown({ name: 'John Doe', @@ -68,8 +68,8 @@ describe('jsonToMarkdown', () => { type: 'cat', }], })).toMatchInlineSnapshot(` - "name: John Doe - pets: + "- name: John Doe + - pets: - name: Rex age: 5 type: dog @@ -78,9 +78,9 @@ describe('jsonToMarkdown', () => { type: cat" `); expect(jsonToMarkdown({ location: { lat: 40, lng: -73 } })).toMatchInlineSnapshot(` - "location: - lat: 40 - lng: -73" + "- location: + - lat: 40 + - lng: -73" `); }); @@ -90,7 +90,11 @@ describe('jsonToMarkdown', () => { { b: [ { c: 1 }, ] } }, - )).toMatchInlineSnapshot(`"a: b: - c: 1"`); + )).toMatchInlineSnapshot(` + "- a: + - b: + - c: 1" + `); }); it('should format object object array object multiline', () => { @@ -101,8 +105,8 @@ describe('jsonToMarkdown', () => { { d: 2 }, ] } }, )).toMatchInlineSnapshot(` - "a: - b: + "- a: + - b: - c: 1 - d: 2" `); @@ -114,14 +118,69 @@ describe('jsonToMarkdown', () => { { Service_options: [ { Outdoor_seating: true }, ] } }, - )).toMatchInlineSnapshot('"additionalInfo: Service_options: Outdoor_seating"'); + )).toMatchInlineSnapshot(` + "- additionalInfo: + - Service_options: Outdoor_seating" + `); expect(jsonToMarkdown( { additionalInfo: { Service_options: [ { Outdoor_seating: true }, { Delivery: true }, ] } }, - )).toMatchInlineSnapshot(`"additionalInfo: Service_options: Outdoor_seating, Delivery"`); + )).toMatchInlineSnapshot(` + "- additionalInfo: + - Service_options: Outdoor_seating, Delivery" + `); + }); + + describe('top array of objects', () => { + it('should have heading by name', () => { + expect(jsonToMarkdown( + [ + { name: 'John Doe', age: 30, job: 'developer' }, + { name: 'Jane Doe', age: 25, job: 'designer' }, + ], + )).toMatchInlineSnapshot(` + "## 1. John Doe + - age: 30 + - job: developer + + ## 2. Jane Doe + - age: 25 + - job: designer" + `); + }); + + it('should have heading by title', () => { + expect(jsonToMarkdown( + [ + { title: 'USA Restaurant', address: 'USA' }, + { title: 'Europe Restaurant', address: 'Europe' }, + ], + )).toMatchInlineSnapshot(` + "## 1. USA Restaurant + - address: USA + + ## 2. Europe Restaurant + - address: Europe" + `); + }); + + it('should have heading by index', () => { + expect(jsonToMarkdown( + [ + { x: 10 }, + { x: 20 }, + ], + )).toMatchInlineSnapshot(` + "## 1. Item + - x: 10 + + ## 2. Item + - x: 20" + `); + }); }); it('should format real Google Maps dataset item', () => { From ad1ae164f173f24e4e4d183eb767b23b465d7fa7 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 15:31:28 +0200 Subject: [PATCH 6/9] fix: formatting a object in object --- src/utils/json-to-markdown.ts | 2 +- .../json-to-markdown.test.ts.snap | 4396 ++++++++++++++++- tests/unit/json-to-markdown.test.ts | 15 + 3 files changed, 4411 insertions(+), 2 deletions(-) diff --git a/src/utils/json-to-markdown.ts b/src/utils/json-to-markdown.ts index 85c1e6ef..2d79ea12 100644 --- a/src/utils/json-to-markdown.ts +++ b/src/utils/json-to-markdown.ts @@ -119,7 +119,7 @@ function serializeJson(json: JSON, pad: number): string { return Object.entries(json as Record) .filter(([key, value]) => !isEmpty(value)) .map(([key, value], index) => { - const indentLevel = pad === 0 ? 0 : 1; + const indentLevel = pad; const prefix = `${getIndent(indentLevel, true)}${key}:`; if (isOneLiner(value)) { return `${prefix} ${serializeJson(value, -1)}`; diff --git a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap index 350929e0..3a43cdfb 100644 --- a/tests/unit/__snapshots__/json-to-markdown.test.ts.snap +++ b/tests/unit/__snapshots__/json-to-markdown.test.ts.snap @@ -1,4 +1,4398 @@ -// Bun Snapshot v1, https://bun.sh/docs/test/snapshots +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`jsonToMarkdown > should format real Google Maps dataset item 1`] = ` +"## 1. Lena Trattoria +- price: $50–100 +- categoryName: Italian restaurant +- address: 3470 E Tremont Ave, Bronx, NY 10465 +- neighborhood: East Bronx +- street: 3470 E Tremont Ave +- city: Bronx +- postalCode: 10465 +- state: New York +- countryCode: US +- website: https://www.lenatrattoria.com/ +- phone: (718) 239-5362 +- phoneUnformatted: +17182395362 +- claimThisBusiness: false +- location: + - lat: 40.8315408 + - lng: -73.8273579 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJA4JRKzCLwokRHBTppuJxhpg +- categories: Italian restaurant +- fid: 0x89c28b302b518203:0x988671e2a6e9141c +- cid: 10990597158921114652 +- reviewsCount: 316 +- imagesCount: 500 +- scrapedAt: 2025-09-19T16:26:23.822Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/YtYEzY6K_pI?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 10:30 PM +- day: Tuesday +- hours: 12 to 10:30 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 11:30 PM +- day: Saturday +- hours: 12 to 11:30 PM +- day: Sunday +- hours: 12 to 11 PM +- additionalOpeningHours: + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Has changing table(s), High chairs, Kids' menu + - Parking: Free street parking, Valet parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Lena%20Trattoria&query_place_id=ChIJA4JRKzCLwokRHBTppuJxhpg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 1 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMyIj8Uqz4GF83nGPwJUQM8FiwfWl1SCrVEYIHl=w408-h272-k-no +- kgmid: /g/11krpqpnkk + +## 2. Trattoria Ora +- description: Homestyle pastas, seafood & meat dishes in a relaxed space with brick walls & a wine bar. +- price: $30–50 +- categoryName: Italian restaurant +- address: 18-01 Astoria Blvd, Astoria, NY 11102 +- neighborhood: Astoria +- street: 18-01 Astoria Blvd +- city: Astoria +- postalCode: 11102 +- state: New York +- countryCode: US +- phone: (718) 433-9680 +- phoneUnformatted: +17184339680 +- claimThisBusiness: false +- location: + - lat: 40.7723648 + - lng: -73.9272762 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJTUW3105fwokRTUXSiiya0gg +- categories: Italian restaurant +- fid: 0x89c25f4ed7b7454d:0x8d29a2c8ad2454d +- cid: 635740013510935885 +- reviewsCount: 193 +- imagesCount: 122 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 4 to 10 PM +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 4 to 10 PM +- day: Saturday +- hours: 4 to 10 PM +- day: Sunday +- hours: 4 to 9 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Trattoria%20Ora&query_place_id=ChIJTUW3105fwokRTUXSiiya0gg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 2 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4np0dfTUFPfnaxynhB6Qo5odcsfvDT3medXWCx0tCjO9LnAKN1BtCAeT2ceq8GER77UpfaOqHVpO3lKvnGtCtO5Oc-crMntYibyLI-h3UeITQjKLMYwBatOWhe13ycU4g5TtWrWfkA=w426-h240-k-no +- kgmid: /g/11f3tyq4w3 + +## 3. Sotto la Luna +- price: $30–50 +- categoryName: Italian restaurant +- address: 34-39 31st St, Astoria, NY 11106 +- neighborhood: Astoria +- street: 34-39 31st St +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: https://www.sottolalunanyc.com/ +- phone: (631) 380-3569 +- phoneUnformatted: +16313803569 +- claimThisBusiness: false +- location: + - lat: 40.7582411 + - lng: -73.9281794 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJBTuSXqhfwokRpjEVqzy1U6U +- categories: Italian restaurant +- fid: 0x89c25fa85e923b05:0xa553b53cab1531a6 +- cid: 11913064711498052006 +- reviewsCount: 778 +- imagesCount: 1287 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/Y5WODzhav_U?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Drive-through, Takeout, Dine-in + - Highlights: Fast service, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Sotto%20la%20Luna&query_place_id=ChIJBTuSXqhfwokRpjEVqzy1U6U +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 3 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqLPPG4gUHad5-56OgX1jULHAre4IBYzvj_Bh4QBgMLCUDwUpa2Gd0JrEWD_M8q_hrWDjL-XyxWq5kLgIGtqqBIReUX9NPQFpihEqvKpy-ptIrdm8WLZLZfi4JV7VFTpces0S2a=w408-h544-k-no +- kgmid: /g/11nxnzbrf1 + +## 4. Pine Restaurant +- description: Longtime Italian eatery featuring a raw bar & classic entrees, including steak & seafood dishes. +- price: $$ +- categoryName: Italian restaurant +- address: 1913 Bronxdale Ave, Bronx, NY 10462 +- neighborhood: East Bronx +- street: 1913 Bronxdale Ave +- city: Bronx +- postalCode: 10462 +- state: New York +- countryCode: US +- website: http://fjpine.com/ +- phone: (718) 792-5956 +- phoneUnformatted: +17187925956 +- claimThisBusiness: false +- location: + - lat: 40.8487296 + - lng: -73.8622597 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJIcUqAKP0wokRJzfqJIeeYkA +- categories: Italian restaurant, Banquet hall, Bar, Caterer, Event venue +- fid: 0x89c2f4a3002ac521:0x40629e8724ea3727 +- cid: 4639444869422135079 +- reviewsCount: 4625 +- imagesCount: 3457 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/PCWagUGpapQ?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 11 AM to 10 PM +- day: Tuesday +- hours: 11 AM to 10 PM +- day: Wednesday +- hours: 11 AM to 10 PM +- day: Thursday +- hours: 11 AM to 10 PM +- day: Friday +- hours: 11 AM to 11 PM +- day: Saturday +- hours: 11 AM to 11 PM +- day: Sunday +- hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 10 AM–9:30 PM + - day: Tuesday + hours: 10 AM–9:30 PM + - day: Wednesday + hours: 10 AM–9:30 PM + - day: Thursday + hours: 10 AM–9:30 PM + - day: Friday + hours: 10 AM–10:30 PM + - day: Saturday + hours: 10 AM–10:30 PM + - day: Sunday + hours: 10 AM–9:30 PM + - Takeout: + - day: Monday + hours: 10 AM–9:30 PM + - day: Tuesday + hours: 10 AM–9:30 PM + - day: Wednesday + hours: 10 AM–9:30 PM + - day: Thursday + hours: 10 AM–9:30 PM + - day: Friday + hours: 10 AM–10:30 PM + - day: Saturday + hours: 10 AM–10:30 PM + - day: Sunday + hours: 10 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Fireplace, Great beer selection, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Private dining room, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Historic, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Good for kids birthday, High chairs, Kids' menu + - Parking: Free street parking, Usually plenty of parking, Valet parking +- url: https://www.google.com/maps/search/?api=1&query=Pine%20Restaurant&query_place_id=ChIJIcUqAKP0wokRJzfqJIeeYkA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 4 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqiMHLnk8HOuxz6mjpHd0YAIb5Embyavz95RcgF348wDNWBOT0hoLGIb2RxqFERGp34k6nRL2qzM1u9BvcIsEUYf6sQspDpn5jDEKFoNsBNAicrkQVF30hYjBoXCn5Kk7kEjZhFJQ=w408-h306-k-no +- kgmid: /g/1tl8ln63 + +## 5. Uncle Peter's +- description: Relaxing, brick-lined bar & eatery serves up filling Italian dishes & lunch specials. +- price: $$ +- categoryName: Italian restaurant +- address: 83-15 Northern Blvd, Jackson Heights, NY 11372 +- neighborhood: Jackson Heights +- street: 83-15 Northern Blvd +- city: Jackson Heights +- postalCode: 11372 +- state: New York +- countryCode: US +- website: http://www.unclepetersrestaurant.com/ +- phone: (718) 651-8600 +- phoneUnformatted: +17186518600 +- claimThisBusiness: false +- location: + - lat: 40.7559179 + - lng: -73.8838536 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ-RWrUqFfwokRBdK7GCBreRw +- categories: Italian restaurant +- fid: 0x89c25fa152ab15f9:0x1c796b2018bbd205 +- cid: 2051788890842059269 +- reviewsCount: 807 +- imagesCount: 868 +- scrapedAt: 2025-09-19T16:26:23.823Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/UHB8aU5NZjs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + hours: 4–6 PM + - day: Tuesday + hours: 4–6 PM + - day: Wednesday + hours: 4–6 PM + - day: Thursday + hours: 4–6 PM + - day: Friday + hours: 4–6 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + - Delivery: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9:30 PM + - day: Saturday + hours: 12–9:30 PM + - day: Sunday + hours: 12–9 PM + - Takeout: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9:30 PM + - day: Saturday + hours: 12–9:30 PM + - day: Sunday + hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Braille menu, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Uncle%20Peter's&query_place_id=ChIJ-RWrUqFfwokRBdK7GCBreRw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 5 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npEfOTq2zJ73-eddnKZBQO8TjjlswntyctrI-EEhLHzOReRbgyHYDMYoQXA0oGhLq9DNKtDkdSGZIXzuPlvY6cMTGG_885x4Gr1870voAHI183xyLpUA0AN_Pd90m8lZIOlCLl3=w408-h306-k-no +- kgmid: /g/1tkp5xcc + +## 6. Porto Salvo +- description: Cozy spot resembling an old port tavern offering Italian fare, local draft beers & outdoor seating. +- price: $30–50 +- categoryName: Italian restaurant +- address: 424 E 161st St, Bronx, NY 10451 +- neighborhood: Melrose +- street: 424 E 161st St +- city: Bronx +- postalCode: 10451 +- state: New York +- countryCode: US +- website: https://portosalvonyc.com/?utm_source=google +- phone: (929) 376-7866 +- phoneUnformatted: +19293767866 +- claimThisBusiness: false +- location: + - lat: 40.8236957 + - lng: -73.9129382 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJx-zorsr1wokR5a-0j2bBtPI +- categories: Italian restaurant, Brunch restaurant, Cocktail bar, Fine dining restaurant, Oyster bar restaurant, Pizza restaurant, Seafood restaurant, Wine bar +- fid: 0x89c2f5caaee8ecc7:0xf2b4c1668fb4afe5 +- cid: 17488815899228286949 +- reviewsCount: 845 +- imagesCount: 943 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 1–9 PM + - day: Tuesday + hours: 1–9 PM + - day: Wednesday + hours: 1–9 PM + - day: Thursday + hours: 1–9 PM + - day: Friday + hours: 1–9 PM + - day: Saturday + hours: 1–9 PM + - day: Sunday + hours: 1–9 PM + - Takeout: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9 PM + - day: Saturday + hours: 12–9 PM + - day: Sunday + hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as Asian-owned, Identifies as LGBTQ+ owned + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great beer selection, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Healthy options, Late-night food, Organic dishes, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid parking garage +- url: https://www.google.com/maps/search/?api=1&query=Porto%20Salvo&query_place_id=ChIJx-zorsr1wokR5a-0j2bBtPI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 6 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noBw1FVHhrlZf1LnLpyh5daCdK2aTCg5q4VKeoyTMjkOFicx74L1JXWR5TYuPgTJU9gKv0Mpiy3d_DK5Klttu8WRYStIRSZU5-nd_0vhl-jtNyguz1KxZteK5xoxkWpxHv4Ji6B=w408-h306-k-no +- kgmid: /g/11dfqw4b3t + +## 7. Napoli's +- description: Unpretentious restaurant serving up Italian & Balkan dishes like pizza, pasta, burek & goulash. +- price: $10–20 +- categoryName: Italian restaurant +- address: 28-51 42nd St, Astoria, NY 11103 +- neighborhood: Astoria +- street: 28-51 42nd St +- city: Astoria +- postalCode: 11103 +- state: New York +- countryCode: US +- phone: (347) 531-0202 +- phoneUnformatted: +13475310202 +- claimThisBusiness: false +- location: + - lat: 40.7633718 + - lng: -73.9130096 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ69B93D9fwokRpdmphb9tDMs +- categories: Italian restaurant, Delivery Restaurant +- fid: 0x89c25f3fdc7dd0eb:0xcb0c6dbf85a9d9a5 +- cid: 14631189958768581029 +- reviewsCount: 160 +- imagesCount: 84 +- scrapedAt: 2025-09-19T16:26:23.823Z +- openingHours: +- day: Monday +- hours: 8 AM to 10 PM +- day: Tuesday +- hours: 8 AM to 10 PM +- day: Wednesday +- hours: 8 AM to 10 PM +- day: Thursday +- hours: 8 AM to 10 PM +- day: Friday +- hours: 8 AM to 10 PM +- day: Saturday +- hours: 8 AM to 10 PM +- day: Sunday +- hours: 8 AM to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Coffee, Comfort food, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options + - Dining options: Breakfast, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Kids' menu + - Parking: Free street parking +- url: https://www.google.com/maps/search/?api=1&query=Napoli's&query_place_id=ChIJ69B93D9fwokRpdmphb9tDMs +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 7 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipP_WOoL_M9mf1weLBGCZhv9DRsQP1-B3orU26YW=w426-h240-k-no +- kgmid: /g/11fyzd9th8 + +## 8. VITE vinosteria +- description: Rustic-chic neighborhood joint with homestyle Italian fare, a variety of wines & a weekend brunch. +- price: $50–100 +- categoryName: Italian restaurant +- address: 31-05 34th St, Astoria, NY 11106 +- neighborhood: Astoria +- street: 31-05 34th St +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: http://www.vitevinosteria.com/ +- phone: (718) 278-8483 +- phoneUnformatted: +17182788483 +- claimThisBusiness: false +- location: + - lat: 40.7629318 + - lng: -73.9211655 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJu_ZPCDlfwokRNS7856uUxDk +- categories: Italian restaurant, Caterer, Cocktail bar, Delivery Restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Wine bar +- fid: 0x89c25f39084ff6bb:0x39c494abe7fc2e35 +- cid: 4162615421649563189 +- reviewsCount: 724 +- imagesCount: 1126 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: +- day: Monday +- hours: 4 to 10:30 PM +- day: Tuesday +- hours: 4 to 10:30 PM +- day: Wednesday +- hours: 4 to 10:30 PM +- day: Thursday +- hours: 4 to 10:30 PM +- day: Friday +- hours: 4 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10:30 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 5–10:30 PM + - day: Tuesday + hours: 5–10:30 PM + - day: Wednesday + hours: 5–10:30 PM + - day: Thursday + hours: 5–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 12–11 PM + - day: Sunday + hours: 12–10:30 PM + - Takeout: + - day: Monday + hours: 4–10:30 PM + - day: Tuesday + hours: 4–10:30 PM + - day: Wednesday + hours: 4–10:30 PM + - day: Thursday + hours: 4–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 12–11 PM + - day: Sunday + hours: 12–10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=VITE%20vinosteria&query_place_id=ChIJu_ZPCDlfwokRNS7856uUxDk +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 8 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCOyJR1v0uWAzCZg7o0bk6AM7Zj1m3fcxKpDcmOUXeEJZHBN64dcaJ8yeZsUfDOPEZFbTnU9pt4T4cZaKU97b7DvRsqoWP-98ETrPLiAlGkt40l1Fl2_JlCl14sckXDd2KyZpw=w408-h306-k-no +- kgmid: /g/1q6kk4p_m + +## 9. Piccolo Sogno +- description: Charming, chef-owned restaurant serving Italian cuisine & pizza in an intimate environment. +- price: $20–30 +- categoryName: Italian restaurant +- address: 195-14 47th Ave, Flushing, NY 11358 +- neighborhood: Flushing +- street: 195-14 47th Ave +- city: Flushing +- postalCode: 11358 +- state: New York +- countryCode: US +- website: https://www.piccolosognony.com/ +- phone: (718) 224-1717 +- phoneUnformatted: +17182241717 +- claimThisBusiness: false +- location: + - lat: 40.752459 + - lng: -73.785769 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU8dOIc9hwokRcYOEBJXggc0 +- categories: Italian restaurant, Caterer, Fine dining restaurant, Takeout Restaurant, Northern Italian restaurant, Pizza Takeout, Restaurant +- fid: 0x89c261cf214ec753:0xcd81e09504848371 +- cid: 14808363980401443697 +- reviewsCount: 480 +- imagesCount: 388 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: Closed +- day: Wednesday +- hours: 11 AM to 8 PM +- day: Thursday +- hours: 11 AM to 8 PM +- day: Friday +- hours: 11 AM to 9 PM +- day: Saturday +- hours: 11 AM to 9 PM +- day: Sunday +- hours: 11 AM to 8 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 5–8 PM + - day: Thursday + hours: 5–8 PM + - day: Friday + hours: 5–9 PM + - day: Saturday + hours: 5–9 PM + - day: Sunday + hours: 11 AM–8 PM + - Takeout: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11 AM–8 PM + - day: Thursday + hours: 11 AM–8 PM + - day: Friday + hours: 11 AM–9 PM + - day: Saturday + hours: 11 AM–9 PM + - day: Sunday + hours: 11 AM–8 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Beer, Coffee, Comfort food, Healthy options, Quick bite, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Quiet, Romantic + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Piccolo%20Sogno&query_place_id=ChIJU8dOIc9hwokRcYOEBJXggc0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 9 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqsE8ucmgrKR4BdPoDePAVgCO3ATznshCfGfOikObRl52az29a5t4HRrOVbcSJbUJbo-ory9T9pLXO-7qm_cw5DN4PJCX2BAyFCqNokINCl7YG-OF9ySq-4i_T0Zbk8Qol-97UnFQ=w513-h240-k-no +- kgmid: /g/1tdvqntx + +## 10. Palermo +- description: Brick-oven pizzas, pasta & other Italian eats in a casual space with a full bar & patio seating. +- price: $$ +- categoryName: Italian restaurant +- address: 23-92 21st St, Astoria, NY 11105 +- neighborhood: Astoria +- street: 23-92 21st St +- city: Astoria +- postalCode: 11105 +- state: New York +- countryCode: US +- website: http://palermoastoria.com/ +- phone: (718) 267-0010 +- phoneUnformatted: +17182670010 +- claimThisBusiness: false +- location: + - lat: 40.7770481 + - lng: -73.9214503 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJV1Gg2FpfwokRS6XpD37qw8E +- categories: Italian restaurant +- fid: 0x89c25f5ad8a05157:0xc1c3ea7e0fe9a54b +- cid: 13962261096932418891 +- reviewsCount: 663 +- imagesCount: 506 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/kBAv8B6pJiU?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 10:30 PM +- day: Saturday +- hours: 11 AM to 11 PM +- day: Sunday +- hours: 11 AM to 9:30 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 12–9:45 PM + - day: Tuesday + hours: 12–9:45 PM + - day: Wednesday + hours: 12–9:45 PM + - day: Thursday + hours: 12–9:45 PM + - day: Friday + hours: 12–10:30 PM + - day: Saturday + hours: 11 AM–10:30 PM + - day: Sunday + hours: 11 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups, LGBTQ+ friendly + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Palermo&query_place_id=ChIJV1Gg2FpfwokRS6XpD37qw8E +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 10 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nos8RzEvGfPSN_W8PnoSszfnY_UmiQVMRo4a_hYlB6hUpXboeO-p6ozTFPnHxjcB3D4lYbpJQOLZ5JG0DvtIMCU46lCrjrZKoYdjlcXl95qIwmtHsMsi8o1eG_65tStjxg1Xct1=w408-h306-k-no +- kgmid: /g/1pxq42syy + +## 11. Riviera Ristorante +- description: Warm, casual venue offering Northern & Southern Italian fare, including pasta, veal & seafood. +- price: $30–50 +- categoryName: Italian restaurant +- address: 17-12 Utopia Pkwy, Whitestone, NY 11357 +- neighborhood: Whitestone +- street: 17-12 Utopia Pkwy +- city: Whitestone +- postalCode: 11357 +- state: New York +- countryCode: US +- website: http://www.rivieraristorante.com/ +- phone: (718) 352-2225 +- phoneUnformatted: +17183522225 +- claimThisBusiness: false +- location: + - lat: 40.7822521 + - lng: -73.7947252 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJM1jHAGKKwokRF7ZyZYvOiQQ +- categories: Italian restaurant, Restaurant +- fid: 0x89c28a6200c75833:0x489ce8b6572b617 +- cid: 327019546058864151 +- reviewsCount: 651 +- imagesCount: 298 +- scrapedAt: 2025-09-19T16:26:23.824Z +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 12 to 9 PM +- day: Wednesday +- hours: 12 to 9 PM +- day: Thursday +- hours: 12 to 9 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 9 PM +- additionalInfo: + - Service options: Outdoor seating, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking +- url: https://www.google.com/maps/search/?api=1&query=Riviera%20Ristorante&query_place_id=ChIJM1jHAGKKwokRF7ZyZYvOiQQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 11 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npnM0VIakTj8BctsRSIobxTNXGLmHD_bVY3QPXZ6dQ5-pGOFpuQwJwjlKmNYf6oEzE9G1tl7oxOrpBLymapRZNDoO5cdtbWcKWJz1-h_0AW8gOtfott4P-eOhucDpZVitK1fcbK=w408-h544-k-no +- kgmid: /g/1td72y7w + +## 12. Da Franco & Tony Ristorante +- description: Casual, brick-clad stop offering Italian-American fare such as fresh gnocchi & chicken scarpariello. +- price: $50–100 +- categoryName: Italian restaurant +- address: 2815 Middletown Rd, Bronx, NY 10461 +- neighborhood: East Bronx +- street: 2815 Middletown Rd +- city: Bronx +- postalCode: 10461 +- state: New York +- countryCode: US +- website: http://dafrancoandtony.com/ +- phone: (718) 684-2815 +- phoneUnformatted: +17186842815 +- claimThisBusiness: false +- location: + - lat: 40.8435906 + - lng: -73.8360552 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ7WHfHVKLwokRGB9Q__vhY18 +- categories: Italian restaurant +- fid: 0x89c28b521ddf61ed:0x5f63e1fbff501f18 +- cid: 6873585928733990680 +- reviewsCount: 398 +- imagesCount: 196 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/VJl_nGToR40?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 9 PM +- day: Tuesday +- hours: 12 to 9 PM +- day: Wednesday +- hours: 12 to 9 PM +- day: Thursday +- hours: 12 to 9 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 9 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 2–9:30 PM + - Takeout: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 2–9:30 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free parking lot, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Da%20Franco%20%26%20Tony%20Ristorante&query_place_id=ChIJ7WHfHVKLwokRGB9Q__vhY18 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 12 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr1oPmQsMBxsBmvY8pRGxGthRlMGP0xNpS3mY4YvgaN_nIx4XvO6WcnPoN52wcbD1YJKxV4YgcOSbedMmxUfsdsduYCJxVZwT03U5awD0f_tHBescwlzjBvD3X7h4VpZc4YHGVllQ=w408-h306-k-no +- kgmid: /g/11b6q5ddy9 + +## 13. Sac's Place +- description: Family-run local mainstay serving up crispy coal-oven pizzas plus pastas in a simple setting. +- price: $30–50 +- categoryName: Italian restaurant +- address: 35-11 35th Ave, Astoria, NY 11106 +- neighborhood: Astoria +- street: 35-11 35th Ave +- city: Astoria +- postalCode: 11106 +- state: New York +- countryCode: US +- website: http://sacsplace.com/ +- phone: (718) 204-5002 +- phoneUnformatted: +17182045002 +- claimThisBusiness: false +- location: + - lat: 40.7567144 + - lng: -73.9246701 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ9yi_ITdfwokR-NlVT6D9tMw +- categories: Italian restaurant, Bar, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Pizza delivery, Pizza restaurant, Pizza Takeout, Restaurant +- fid: 0x89c25f3721bf28f7:0xccb4fda04f55d9f8 +- cid: 14750693544512838136 +- reviewsCount: 561 +- imagesCount: 405 +- scrapedAt: 2025-09-19T16:26:23.824Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/pihn6Zlu3tA?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: Closed +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Takeout: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:45 PM + - day: Saturday + hours: 11:30 AM–10:45 PM + - day: Sunday + hours: 11:30 AM–10 PM + - Delivery: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: 5–11 PM + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:45 PM + - day: Saturday + hours: 11:30 AM–10:45 PM + - day: Sunday + hours: 11:30 AM–10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great wine list, Live music, Serves local specialty, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Quick bite, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy + - Crowd: Family-friendly, Groups, Tourists + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Paid street parking, Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Sac's%20Place&query_place_id=ChIJ9yi_ITdfwokR-NlVT6D9tMw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 13 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipP47RQWdWHoLaIUXKuoUq-QKeU3JbkmczNACeuq=w408-h271-k-no +- kgmid: /g/11b6bdn4fn + +## 14. Vesta Trattoria & Wine Bar +- description: Pizza & Italian comfort food with a sustainable, seasonal bent are served at this neighborhood spot. +- price: $$ +- categoryName: Italian restaurant +- address: 21-02 30th Ave., Astoria, NY 11102 +- neighborhood: Astoria +- street: 21-02 30th Ave. +- city: Astoria +- postalCode: 11102 +- state: New York +- countryCode: US +- website: http://vestavino.com/ +- phone: (718) 545-5550 +- phoneUnformatted: +17185455550 +- claimThisBusiness: false +- location: + - lat: 40.7696576 + - lng: -73.9277667 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJGc-LBklfwokR4pON1Ije2Ls +- categories: Italian restaurant +- fid: 0x89c25f49068bcf19:0xbbd8de88d48d93e2 +- cid: 13535813359324992482 +- reviewsCount: 613 +- imagesCount: 412 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/bG3Q72M7BBs?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12:30 to 10 PM +- day: Tuesday +- hours: 5 to 10 PM +- day: Wednesday +- hours: 5 to 10 PM +- day: Thursday +- hours: 12:30 to 10 PM +- day: Friday +- hours: 12:30 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Tourists + - Planning: Brunch reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Vesta%20Trattoria%20%26%20Wine%20Bar&query_place_id=ChIJGc-LBklfwokR4pON1Ije2Ls +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 14 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4no6AANqK6HPbmJVfZ3-foZqak33PNLbnO8XUq5pJMlh2BOKG0zgeUxvYrFgOwBTGZN1S9EpmyzGmwJuNmQa8rid0C8awy_J8zLV3ipfH1-G4kdYPr4e8zu-lLQlfHy76-pOtc0cVQ=w408-h544-k-no +- kgmid: /g/1thct7ty + +## 15. Armondo's Italian Resturant +- description: A husband-&-wife team runs this eatery that offers Italian classics in serene dark-wood environs. +- price: $30–50 +- categoryName: Italian restaurant +- address: 73-16 Northern Blvd, Jackson Heights, NY 11372 +- neighborhood: Jackson Heights +- street: 73-16 Northern Blvd +- city: Jackson Heights +- postalCode: 11372 +- state: New York +- countryCode: US +- website: http://www.armondositalian.com/ +- phone: (718) 898-0113 +- phoneUnformatted: +17188980113 +- claimThisBusiness: false +- location: + - lat: 40.754547 + - lng: -73.8931029 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJt_uMBQdfwokRHQ0oIx2-9XI +- categories: Italian restaurant, Restaurant +- fid: 0x89c25f07058cfbb7:0x72f5be1d23280d1d +- cid: 8283736121971051805 +- reviewsCount: 248 +- imagesCount: 214 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: Closed +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 4 to 11 PM +- day: Saturday +- hours: 1 to 11 PM +- day: Sunday +- hours: 1 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Free parking lot +- url: https://www.google.com/maps/search/?api=1&query=Armondo's%20Italian%20Resturant&query_place_id=ChIJt_uMBQdfwokRHQ0oIx2-9XI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 15 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrQmHNdTMyiY2edHwr86F2UAeYd5s8eh3hMCYEC3kf9pEjsM2-t0VgQUy8D0neq_GaK1igswyl_9KWf_4TfpG7VLy5IdxZzJ4pgRQ0j9ngWyEn2VXSrK7KdMU8ie0eAZ6DTUIwO=w408-h544-k-no +- kgmid: /g/1tdzmgrl + +## 16. Giovanna's Kitchen, Inc +- price: $20–30 +- categoryName: Italian restaurant +- address: 12-40 Clintonville St, Whitestone, NY 11357 +- neighborhood: Whitestone +- street: 12-40 Clintonville St +- city: Whitestone +- postalCode: 11357 +- state: New York +- countryCode: US +- website: http://toastab.com/giovannaskitchennyc +- phone: (718) 767-4444 +- phoneUnformatted: +17187674444 +- claimThisBusiness: false +- location: + - lat: 40.7900774 + - lng: -73.8121074 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ_evdIQ6LwokRDeECmeiUAmM +- categories: Italian restaurant +- fid: 0x89c28b0e21ddebfd:0x630294e89902e10d +- cid: 7134428486428713229 +- reviewsCount: 36 +- imagesCount: 24 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: +- day: Monday +- hours: 7 AM to 8 PM +- day: Tuesday +- hours: 7 AM to 8 PM +- day: Wednesday +- hours: 7 AM to 8 PM +- day: Thursday +- hours: 7 AM to 8 PM +- day: Friday +- hours: 7 AM to 8 PM +- day: Saturday +- hours: 7 AM to 8 PM +- day: Sunday +- hours: 7 AM to 8 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance + - Offerings: Alcohol, Coffee, Comfort food, Quick bite, Wine + - Dining options: Lunch, Dinner, Dessert + - Atmosphere: Casual, Cozy + - Payments: Credit cards, Debit cards + - Children: Good for kids +- url: https://www.google.com/maps/search/?api=1&query=Giovanna's%20Kitchen%2C%20Inc&query_place_id=ChIJ_evdIQ6LwokRDeECmeiUAmM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 16 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npb7qoTpaWmWECfT9t8GsIEqyRCIvjPVefgR6k50s0QTzbIR8mHSuczkAYhKqg1q2tVw3qHzkbQiVZO2RYlSa54tzPPXDXaR2vfEbdM-ma_4TBsq7ykkgG0OfqleWa1TZfowM8=w408-h306-k-no +- kgmid: /g/11n5g8jl99 + +## 17. Trattoria 35 +- description: Intimate restaurant featuring wood-fired pizzas & traditional Italian cuisine in a warm atmosphere. +- price: $$ +- categoryName: Italian restaurant +- address: 213-15 35th Ave, Bayside, NY 11361 +- neighborhood: Bayside +- street: 213-15 35th Ave +- city: Bayside +- postalCode: 11361 +- state: New York +- countryCode: US +- website: http://www.trattoria35.com/ +- phone: (718) 352-3800 +- phoneUnformatted: +17183523800 +- claimThisBusiness: false +- location: + - lat: 40.7690275 + - lng: -73.7742846 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJv58SiHSKwokRhxrcu3o_zfw +- categories: Italian restaurant, Restaurant +- fid: 0x89c28a7488129fbf:0xfccd3f7abbdc1a87 +- cid: 18216285864153848455 +- reviewsCount: 1136 +- imagesCount: 624 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: +- day: Monday +- hours: 11:30 AM to 10 PM +- day: Tuesday +- hours: 11:30 AM to 10 PM +- day: Wednesday +- hours: 11:30 AM to 10 PM +- day: Thursday +- hours: 11:30 AM to 10 PM +- day: Friday +- hours: 11 AM to 11 PM +- day: Saturday +- hours: 11 AM to 11 PM +- day: Sunday +- hours: 11:30 AM to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Brunch reservations recommended, Lunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, On-site parking, Usually plenty of parking, Valet parking +- url: https://www.google.com/maps/search/?api=1&query=Trattoria%2035&query_place_id=ChIJv58SiHSKwokRhxrcu3o_zfw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 17 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npi0pLEwAzTeFdPjr_QHrgJJWKHMpN3Qo-faeEb6nC6E8nt6myEZHl0AfcRsdvg7Lzu-_Sk_pOdewDXPAXDIP0O9XO1Vw_L_UD3WaQyEnuBNFJmSPfTsfHcQIySE4sibLnGUNzF=w408-h306-k-no +- kgmid: /g/11b6dm_gc1 + +## 18. Via Trenta Osteria & Wine Bar +- description: Gourmet pizza & artisinal pasta paired with wine, beer & cocktails in a warm, refined setting. +- price: $50–100 +- categoryName: Italian restaurant +- address: 36-19 30th Ave., Astoria, NY 11103 +- neighborhood: Astoria +- street: 36-19 30th Ave. +- city: Astoria +- postalCode: 11103 +- state: New York +- countryCode: US +- website: http://viatrenta.com/ +- phone: (718) 545-2090 +- phoneUnformatted: +17185452090 +- claimThisBusiness: false +- location: + - lat: 40.7648674 + - lng: -73.9165828 +- totalScore: 4.3 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJCyZ3Zj9fwokRu-73fD6aIWA +- categories: Italian restaurant, Catering food and drink supplier, Cocktail bar, Delivery service, Northern Italian restaurant, Pasta shop, Pizza restaurant, Seafood restaurant, Wine bar, Wine cellar +- fid: 0x89c25f3f6677260b:0x60219a3e7cf7eebb +- cid: 6926987295047806651 +- reviewsCount: 618 +- imagesCount: 464 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/yb-AoyP5i6g?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 12 to 10:30 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10:30 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–7 PM + - day: Wednesday + hours: 12–7 PM + - day: Thursday + hours: 12–7 PM + - day: Friday + hours: 12–6 PM + - day: Saturday + hours: 12–6 PM + - day: Sunday + hours: 12–6 PM + - Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–9:30 PM + - day: Wednesday + hours: 12–9:30 PM + - day: Thursday + hours: 12–9:30 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–9:30 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–4 PM + - day: Wednesday + hours: 12–4 PM + - day: Thursday + hours: 12–4 PM + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–3:30 PM + - day: Sunday + hours: 12–3:30 PM + - Kitchen: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Online service hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Lunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 12–4 PM + - day: Wednesday + hours: 12–4 PM + - day: Thursday + hours: 12–4 PM + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM + - Dinner: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4–10:30 PM + - day: Wednesday + hours: 4–10:30 PM + - day: Thursday + hours: 4–10:30 PM + - day: Friday + hours: 4–11 PM + - day: Saturday + hours: 4–11 PM + - day: Sunday + hours: 4–10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Fireplace, Great cocktails, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Comfort food, Happy hour drinks, Hard liquor, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Via%20Trenta%20Osteria%20%26%20Wine%20Bar&query_place_id=ChIJCyZ3Zj9fwokRu-73fD6aIWA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 18 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNhjVO1_j-lL6u7-kml_S7zaTtw7Cvynih8JbJq=w426-h240-k-no +- kgmid: /g/1tcygcxj + +## 19. Fiorentina Steakhouse +- price: $50–100 +- categoryName: Steak house +- address: 3617 E Tremont Ave, Bronx, NY 10465 +- neighborhood: East Bronx +- street: 3617 E Tremont Ave +- city: Bronx +- postalCode: 10465 +- state: New York +- countryCode: US +- website: http://www.fiorentina-steakhouse.com/ +- phone: (718) 812-1112 +- phoneUnformatted: +17188121112 +- claimThisBusiness: false +- location: + - lat: 40.8287124 + - lng: -73.8240553 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ5znu7hSLwokRLpLh1Z8dXa0 +- categories: Steak house +- fid: 0x89c28b14eeee39e7:0xad5d1d9fd5e1922e +- cid: 12492173513720959534 +- reviewsCount: 293 +- imagesCount: 239 +- scrapedAt: 2025-09-19T16:26:23.825Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mi7cW2niy_8?source=pa&opi=79508299&hl=en-US&gei=LoTNaMfINb6EkvQP2-270A0&sourceurl=https://www.google.com/service/MapsSearchService/Search?hl%3Den%26authuser%3D0%26gl%3Dus%26q%3Ditalian%2Brestaurant%26tbm%3Dmap +- openingHours: +- day: Monday +- hours: 12 to 9:30 PM +- day: Tuesday +- hours: 12 to 9:30 PM +- day: Wednesday +- hours: 12 to 9:30 PM +- day: Thursday +- hours: 12 to 9:30 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 9 PM +- additionalInfo: + - Service options: + - Takeout: true + - Dine-in: true + - Delivery: false + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Parking: Free parking lot, Free street parking, Paid street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Fiorentina%20Steakhouse&query_place_id=ChIJ5znu7hSLwokRLpLh1Z8dXa0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 19 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipPCac3DsFdUls470WBzgt5WweIVg5NX90ga7Y2T=w408-h362-k-no +- kgmid: /g/11sxgdyn_x + +## 20. Figlia +- price: $30–50 +- categoryName: Italian restaurant +- address: 23-02 31st St, Queens, NY 11105 +- neighborhood: Astoria +- street: 23-02 31st St +- city: Queens +- postalCode: 11105 +- state: New York +- countryCode: US +- website: http://figlianyc.com/ +- phone: (347) 730-5117 +- phoneUnformatted: +13477305117 +- claimThisBusiness: false +- location: + - lat: 40.7744867 + - lng: -73.9132566 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJS5UFORVfwokRKG9pzggm8Cg +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c25f153905954b:0x28f02608ce696f28 +- cid: 2949899575192284968 +- reviewsCount: 194 +- imagesCount: 123 +- scrapedAt: 2025-09-19T16:26:23.825Z +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: Closed +- day: Wednesday +- hours: 5 to 10 PM +- day: Thursday +- hours: 5 to 10 PM +- day: Friday +- hours: 5 to 10 PM +- day: Saturday +- hours: 4 to 10 PM +- day: Sunday +- hours: 4 to 9 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Figlia&query_place_id=ChIJS5UFORVfwokRKG9pzggm8Cg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 20 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipM8RvgWvfOTMbTWvO5C2ASH9xt5D8krXxhytZxD=w408-h271-k-no +- kgmid: /g/11tjmbwtcx + +## 21. Adrienne's NYC +- price: $$ +- categoryName: Italian restaurant +- address: 25 Van Brunt Rd, Queens, NY 11693 +- neighborhood: Broad Channel +- street: 25 Van Brunt Rd +- city: Queens +- postalCode: 11693 +- state: New York +- countryCode: US +- website: http://adriennes-nyc.com/ +- phone: (718) 945-2525 +- phoneUnformatted: +17189452525 +- claimThisBusiness: false +- location: + - lat: 40.5973398 + - lng: -73.819623 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJe4j4G9ZpwokR8CBPcLU44Sk +- categories: Italian restaurant +- fid: 0x89c269d61bf8887b:0x29e138b5704f20f0 +- cid: 3017755577239412976 +- reviewsCount: 321 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 2 + - threeStar: 14 + - fourStar: 21 + - fiveStar: 275 +- imagesCount: 408 +- scrapedAt: 2025-09-19T16:26:24.657Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/wK4TxdpdbhA?source=pa&opi=79508299&hl=en-US&gei=L4TNaM-GMs6IwbkPreGkqAc&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaO6pOJXEp84PkvmOgAM.1758299183708.1%26hl%3Den%26pb%3D!4m12!1m3!1d48474.59250524153!2d-73.70638644734598!3d40.59321488768417!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaO6pOJXEp84PkvmOgAM!2s1i:0,t:20588,p:LoTNaO6pOJXEp84PkvmOgAM:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjA_tXxnuWPAxUV4skDHZK8AzAQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 4 to 9 PM +- day: Tuesday +- hours: Closed +- day: Wednesday +- hours: Closed +- day: Thursday +- hours: 4 to 9 PM +- day: Friday +- hours: 4 to 10 PM +- day: Saturday +- hours: 11 AM to 10 PM +- day: Sunday +- hours: 11 AM to 9 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 4–9 PM + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–9 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 11:30 AM–10 PM + - day: Sunday + hours: 11:30 AM–9 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–2:30 PM + - day: Sunday + hours: 11 AM–2:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations, Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Has changing table(s), High chairs, Kids' menu + - Parking: Free parking lot, Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Adrienne's%20NYC&query_place_id=ChIJe4j4G9ZpwokR8CBPcLU44Sk +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 21 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipORPuVEPXpaWRvRkdl1wMzXeiIUbDCRC4oy8fj5=w408-h271-k-no +- kgmid: /g/11kq1gmr83 + +## 22. La Pecora Bianca UES +- description: Stylish, bright eatery featuring market-driven Italian cuisine, regional wines & apéritifs. +- price: $$ +- categoryName: Italian restaurant +- address: 1562 2nd Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1562 2nd Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.lapecorabianca.com/ +- phone: (212) 300-9840 +- phoneUnformatted: +12123009840 +- claimThisBusiness: false +- location: + - lat: 40.7746825 + - lng: -73.9538686 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ9YlInwlZwokRDb-WWDZkU1s +- categories: Italian restaurant +- fid: 0x89c259099f4889f5:0x5b5364365896bf0d +- cid: 6580713665095712525 +- reviewsCount: 1926 +- reviewsDistribution: + - oneStar: 26 + - twoStar: 18 + - threeStar: 27 + - fourStar: 127 + - fiveStar: 1728 +- imagesCount: 479 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/AuNWrcQ6pNQ?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 11:30 AM to 10 PM +- day: Tuesday +- hours: 11:30 AM to 10 PM +- day: Wednesday +- hours: 11:30 AM to 10 PM +- day: Thursday +- hours: 11:30 AM to 10:30 PM +- day: Friday +- hours: 11:30 AM to 10:30 PM +- day: Saturday +- hours: 10 AM to 10:30 PM +- day: Sunday +- hours: 10 AM to 9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Locals, Tourists, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=La%20Pecora%20Bianca%20UES&query_place_id=ChIJ9YlInwlZwokRDb-WWDZkU1s +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 21 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipPAKFjb04AGunRve4ZOvo8eSCYT1aC3Q2XLfUSs=w408-h612-k-no +- kgmid: /g/11s861srkf + +## 23. L'Osteria +- price: $$$ +- categoryName: Italian restaurant +- address: 1219 Lexington Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1219 Lexington Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.losterianyc.com/ +- phone: (646) 524-6294 +- phoneUnformatted: +16465246294 +- claimThisBusiness: false +- location: + - lat: 40.777137 + - lng: -73.957094 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJBRyejVJZwokReyLI3g24DLU +- categories: Italian restaurant +- fid: 0x89c259528d9e1c05:0xb50cb80ddec8227b +- cid: 13046004590297227899 +- reviewsCount: 327 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 1 + - threeStar: 8 + - fourStar: 34 + - fiveStar: 275 +- imagesCount: 271 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/oV6l_i5WrYw?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Tuesday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Wednesday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Thursday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Friday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Saturday +- hours: 12 to 3:30 PM, 5 to 10 PM +- day: Sunday +- hours: 12 to 3:30 PM, 5 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Locals + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=L'Osteria&query_place_id=ChIJBRyejVJZwokReyLI3g24DLU +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 22 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrF8x6TbM_FIS6Kj7XkEY27pONqv3Rhr19hZNa5C9rF_0jvPxMHKAmvAaf6ZEmHncajR7Z3nkPkzGN442xSlPqf-JZdjqmEuFmyWH_cO0qKlcHb64H3Pf_B6ZjVsdZPMf6xFt2LLg=w408-h306-k-no +- kgmid: /g/11s0pvy0z5 + +## 24. da Adriano +- price: $$ +- categoryName: Italian restaurant +- address: 1198 1st Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1198 1st Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: http://daadriano.com/ +- phone: (646) 371-9412 +- phoneUnformatted: +16463719412 +- claimThisBusiness: false +- location: + - lat: 40.7631126 + - lng: -73.9591556 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU0dUbtNZwokRvLMgVDaVuA0 +- categories: Italian restaurant +- fid: 0x89c259d36e544753:0xdb895365420b3bc +- cid: 988704178780025788 +- reviewsCount: 277 +- reviewsDistribution: + - oneStar: 4 + - twoStar: 6 + - threeStar: 4 + - fourStar: 17 + - fiveStar: 246 +- imagesCount: 244 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-vydkfxJaoI?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 7:30 AM to 9:30 PM +- day: Tuesday +- hours: 7:30 AM to 9:30 PM +- day: Wednesday +- hours: 7:30 AM to 10 PM +- day: Thursday +- hours: 7:30 AM to 10 PM +- day: Friday +- hours: 7:30 AM to 10 PM +- day: Saturday +- hours: 7:30 AM to 10 PM +- day: Sunday +- hours: 7:30 AM to 9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Halal food, Happy hour drinks, Organic dishes, Salad bar, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Breakfast, Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=da%20Adriano&query_place_id=ChIJU0dUbtNZwokRvLMgVDaVuA0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 23 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npCrOrz-H9nSJWiFUV49NnwyfhvSvB3Jao2pMfScP54e3PCdVkBn5VuCWyw8avF-Ruvxma4NJ3HzAIRL7HF1uFPl70hTXealM0kP9HkkmbY3UOf3JheBiNC6pNiXDj2XyhLLWAL=w408-h306-k-no +- kgmid: /g/11stj6v3jf + +## 25. Donna Margherita +- price: $$ +- categoryName: Italian restaurant +- address: 1304A 2nd Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1304A 2nd Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: https://www.donnamargheritany.com/ +- phone: (212) 772-1169 +- phoneUnformatted: +12127721169 +- claimThisBusiness: false +- location: + - lat: 40.7664653 + - lng: -73.9598606 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ_yzV_ulYwokRYpG_tbXMpqw +- categories: Italian restaurant, Delivery Restaurant +- fid: 0x89c258e9fed52cff:0xaca6ccb5b5bf9162 +- cid: 12440856101467951458 +- reviewsCount: 568 +- reviewsDistribution: + - oneStar: 11 + - twoStar: 13 + - threeStar: 17 + - fourStar: 40 + - fiveStar: 487 +- imagesCount: 527 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 1 to 9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Beer, Coffee, Comfort food, Healthy options, Organic dishes, Quick bite, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Gender-neutral restroom, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids + - Parking: Paid parking lot, Paid street parking, Usually somewhat difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Donna%20Margherita&query_place_id=ChIJ_yzV_ulYwokRYpG_tbXMpqw +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 24 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr2Vxqr1rX1TVl9Hnk1mfRF-w1eAyzPn8kNOFuMhYOLZ8E3i640Y9bLfNzVRMpB9Ulcj-3jX3oMTYt6gTIKveYVeYvMpcQFF79C-LNPXpdAP2NGCfaHIiSOcsJ2PDoJihy82D0u=w408-h544-k-no +- kgmid: /g/11g7_5xcnb + +## 26. Pastitalia +- price: $$ +- categoryName: Italian restaurant +- address: 264 Lenox Ave, New York, NY 10027 +- neighborhood: Manhattan +- street: 264 Lenox Ave +- city: New York +- postalCode: 10027 +- state: New York +- countryCode: US +- website: https://www.pastitaliaus.com/ +- phone: (917) 522-3434 +- phoneUnformatted: +19175223434 +- claimThisBusiness: false +- location: + - lat: 40.8065175 + - lng: -73.9459371 +- totalScore: 4.9 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJW1uxcSr3wokRhxS_Ai4H8GU +- categories: Italian restaurant, Catering food and drink supplier, Coffee shop, Espresso bar, Italian grocery store, Pasta shop, Lunch restaurant, Pastry shop +- fid: 0x89c2f72a71b15b5b:0x65f0072e02bf1487 +- cid: 7345378886437246087 +- reviewsCount: 248 +- reviewsDistribution: + - oneStar: 1 + - twoStar: 0 + - threeStar: 3 + - fourStar: 12 + - fiveStar: 232 +- imagesCount: 478 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 11 AM to 9:30 PM +- day: Wednesday +- hours: 11 AM to 9:30 PM +- day: Thursday +- hours: 11 AM to 9:30 PM +- day: Friday +- hours: 11 AM to 9:30 PM +- day: Saturday +- hours: 9:30 AM to 9:30 PM +- day: Sunday +- hours: 9:30 AM to 9:30 PM +- additionalOpeningHours: + - Lunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: 11 AM–9:30 PM + - day: Wednesday + hours: 11 AM–9:30 PM + - day: Thursday + hours: 11 AM–9:30 PM + - day: Friday + hours: 11 AM–9:30 PM + - day: Saturday + hours: 9:30 AM–8:30 PM + - day: Sunday + hours: 9:30 AM–9:30 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Delivery, In-store pickup, In-store shopping, Onsite services, Takeout, Dine-in + - Popular for: Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible parking lot: false + - Dining options: Counter service, Dessert, Seating + - Amenities: Gender-neutral restroom, Restroom + - Crowd: Family-friendly + - Planning: Quick visit + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Kids' menu + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Pastitalia&query_place_id=ChIJW1uxcSr3wokRhxS_Ai4H8GU +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 25 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npanH_kxwfPB_5GW2tgnFrUvmxeGJeRwc2ySsQS3p0OBmj3xWFuIDr_9ZtqbjxYadMgNOCSDeUmBgyXZTagB22MhxJShdnQ7oh4wO6cJ-fC3L9gRIOI9lJIqaDZwjcMgc-uuw_hcEqvrLic=w408-h544-k-no +- kgmid: /g/11q46pmj5r + +## 27. Masseria East +- description: Straightforward Italian fare from a longtime local standby. +- price: $$$ +- categoryName: Italian restaurant +- address: 1404 3rd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1404 3rd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.masseriaeast.com/ +- phone: (212) 535-3520 +- phoneUnformatted: +12125353520 +- claimThisBusiness: false +- location: + - lat: 40.77491 + - lng: -73.957163 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJfUbyZ75YwokRMi96wHTiLBA +- categories: Italian restaurant, Fine dining restaurant, Delivery Restaurant, Takeout Restaurant, Mediterranean restaurant, Restaurant, Seafood restaurant, Vegetarian restaurant, Wine bar +- fid: 0x89c258be67f2467d:0x102ce274c07a2f32 +- cid: 1165555394655432498 +- reviewsCount: 313 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 6 + - threeStar: 12 + - fourStar: 30 + - fiveStar: 256 +- imagesCount: 306 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WQUuhqHMVZ8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Tuesday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Wednesday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Thursday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Friday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Saturday +- hours: 12 to 3 PM, 5 to 9:30 PM +- day: Sunday +- hours: 12 to 9:30 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 12–2:30 PM + - day: Tuesday + hours: 12–2:30 PM + - day: Wednesday + hours: 12–2:30 PM + - day: Thursday + hours: 12–2:30 PM + - day: Friday + hours: 12–2:30 PM + - day: Saturday + hours: 12–2:30 PM + - day: Sunday + hours: 12–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Comfort food, Hard liquor, Organic dishes, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Free parking lot, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=Masseria%20East&query_place_id=ChIJfUbyZ75YwokRMi96wHTiLBA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 26 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMpOy2JiLh2USfvFc-vyIHWgXLz3Lphothp7aL4=w408-h276-k-no +- kgmid: /g/1vnnk9rm + +## 28. Bigoi Venezia +- description: Hearty, housemade noodles in traditional Italian sauces offered in a snug counter-serve eatery. +- price: $ +- categoryName: Italian restaurant +- address: 1415 2nd Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1415 2nd Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.bigoivenezia.com/ +- phone: (917) 262-0680 +- phoneUnformatted: +19172620680 +- claimThisBusiness: false +- location: + - lat: 40.7700264 + - lng: -73.9577755 +- totalScore: 4.8 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJgdnYQcBYwokRDEGzKagrEfE +- categories: Italian restaurant +- fid: 0x89c258c041d8d981:0xf1112ba829b3410c +- cid: 17370713238998827276 +- reviewsCount: 757 +- reviewsDistribution: + - oneStar: 16 + - twoStar: 7 + - threeStar: 16 + - fourStar: 55 + - fiveStar: 663 +- imagesCount: 369 +- scrapedAt: 2025-09-19T16:26:24.726Z +- openingHours: +- day: Monday +- hours: 11 AM to 10 PM +- day: Tuesday +- hours: 11 AM to 10 PM +- day: Wednesday +- hours: 11 AM to 10 PM +- day: Thursday +- hours: 11 AM to 10 PM +- day: Friday +- hours: 11 AM to 10 PM +- day: Saturday +- hours: 11 AM to 10 PM +- day: Sunday +- hours: 11 AM to 10 PM +- additionalInfo: + - Service options: No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible parking lot: false + - Offerings: Comfort food, Quick bite, Vegan options, Vegetarian options + - Dining options: Lunch, Dinner, Catering + - Amenities: + - Restroom: false + - Atmosphere: Casual, Cozy + - Crowd: Locals + - Planning: + - Accepts reservations: false + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Kids' menu +- url: https://www.google.com/maps/search/?api=1&query=Bigoi%20Venezia&query_place_id=ChIJgdnYQcBYwokRDEGzKagrEfE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 27 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipOnno3KFrA4bCUoUWAn1syS_a-XCD8T_L4h1rc1=w408-h408-k-no +- kgmid: /g/11g9n3t4gt + +## 29. Fumo Harlem +- description: Bright, modern neighborhood Italian destination serving upmarket pizza, pasta & cocktails. +- price: $$ +- categoryName: Italian restaurant +- address: 1600 Amsterdam Ave, New York, NY 10031 +- neighborhood: Manhattan +- street: 1600 Amsterdam Ave +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://fumorestaurant.com/ +- phone: (646) 692-6675 +- phoneUnformatted: +16466926675 +- claimThisBusiness: false +- location: + - lat: 40.8214251 + - lng: -73.9506357 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJLe70p2X2wokReDA-X8LGqZE +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c2f665a7f4ee2d:0x91a9c6c25f3e3078 +- cid: 10496138944687517816 +- reviewsCount: 1829 +- reviewsDistribution: + - oneStar: 79 + - twoStar: 41 + - threeStar: 88 + - fourStar: 368 + - fiveStar: 1253 +- imagesCount: 1220 +- scrapedAt: 2025-09-19T16:26:24.726Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/j4TAgWiPxBg?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 11 AM to 10 PM +- day: Tuesday +- hours: 11 AM to 10:30 PM +- day: Wednesday +- hours: 11 AM to 10:30 PM +- day: Thursday +- hours: 11 AM to 10:30 PM +- day: Friday +- hours: 11 AM to 11 PM +- day: Saturday +- hours: 11 AM to 11 PM +- day: Sunday +- hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 11:30 AM–9:30 PM + - day: Tuesday + hours: 11:30 AM–10 PM + - day: Wednesday + hours: 11:30 AM–10 PM + - day: Thursday + hours: 11:30 AM–10 PM + - day: Friday + hours: 11:30 AM–10:30 PM + - day: Saturday + hours: 11:30 AM–10:30 PM + - day: Sunday + hours: 11:30 AM–9:30 PM + - Takeout: + - day: Monday + hours: 11:30 AM–10 PM + - day: Tuesday + hours: 11:30 AM–10:30 PM + - day: Wednesday + hours: 11:30 AM–10:30 PM + - day: Thursday + hours: 11:30 AM–10:30 PM + - day: Friday + hours: 11:30 AM–11 PM + - day: Saturday + hours: 11:30 AM–11 PM + - day: Sunday + hours: 11:30 AM–10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Healthy options, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: College students, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Brunch reservations recommended, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Fumo%20Harlem&query_place_id=ChIJLe70p2X2wokReDA-X8LGqZE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 28 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noxn3BXjD-VrGWsESjzfnAMqQvj7MO7f9CdxhUpjDh2QXMSh12x_D-VtAqUbm2CRKHxCbMuJgWl_AtcTGdxBeOrfWKXQR_m2Nrj3-w5KIWDyZWKk1wt6YOJemgWDxJZp2PehuNK=w408-h306-k-no +- kgmid: /g/11cm3nhnr6 + +## 30. Briciola Harlem +- price: $$$ +- categoryName: Italian restaurant +- address: 398 W 145th St, New York, NY 10031 +- neighborhood: Manhattan +- street: 398 W 145th St +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: https://briciolawinebar.com/ +- phone: (212) 315-3315 +- phoneUnformatted: +12123153315 +- claimThisBusiness: false +- location: + - lat: 40.8240899 + - lng: -73.9452634 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ2054MAz3wokR13Q2g5LfV_E +- categories: Italian restaurant +- fid: 0x89c2f70c30784edb:0xf157df92833674d7 +- cid: 17390614306474063063 +- reviewsCount: 206 +- reviewsDistribution: + - oneStar: 10 + - twoStar: 9 + - threeStar: 5 + - fourStar: 14 + - fiveStar: 168 +- imagesCount: 335 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: +- day: Monday +- hours: 12 PM to 12 AM +- day: Tuesday +- hours: 12 PM to 12 AM +- day: Wednesday +- hours: 12 PM to 12 AM +- day: Thursday +- hours: 12 PM to 12 AM +- day: Friday +- hours: 12 PM to 12 AM +- day: Saturday +- hours: 12 PM to 12 AM +- day: Sunday +- hours: 12 PM to 12 AM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Parking: Usually difficult to find a space +- url: https://www.google.com/maps/search/?api=1&query=Briciola%20Harlem&query_place_id=ChIJ2054MAz3wokR13Q2g5LfV_E +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 29 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqlKu1vBUzXiHX7rOWUo3L6-tsEFRasfyBqE7YHv-kAGrJPF1Q-yrvtGp7EM5MZ4MxawEkHGgrhjmeSHPXtEDU9dMBCJJfQ2CJquJoTc-9MUndj-LtfV03kd0GP2fRqV57NK8CLoQ=w408-h306-k-no +- kgmid: /g/11t_m1qd_p + +## 31. La Voglia NYC +- price: $$$ +- categoryName: Italian restaurant +- address: 1645 3rd Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1645 3rd Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: http://www.lavoglianyc.com/ +- phone: (212) 417-0181 +- phoneUnformatted: +12124170181 +- claimThisBusiness: false +- location: + - lat: 40.7826745 + - lng: -73.9508638 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJ2Z_EuD9ZwokRB_t-ovxEzxI +- categories: Italian restaurant +- fid: 0x89c2593fb8c49fd9:0x12cf44fca27efb07 +- cid: 1355377864710486791 +- reviewsCount: 410 +- reviewsDistribution: + - oneStar: 32 + - twoStar: 13 + - threeStar: 12 + - fourStar: 40 + - fiveStar: 313 +- imagesCount: 399 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/rYAZF2X_o_Q?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 11 AM to 11 PM +- day: Tuesday +- hours: 11 AM to 11 PM +- day: Wednesday +- hours: 11 AM to 11 PM +- day: Thursday +- hours: 11 AM to 11 PM +- day: Friday +- hours: 11 AM to 11 PM +- day: Saturday +- hours: 11 AM to 11 PM +- day: Sunday +- hours: 11 AM to 11 PM +- additionalOpeningHours: + - Lunch: + - day: Monday + hours: 11 AM–3:30 PM + - day: Tuesday + hours: 11 AM–3:30 PM + - day: Wednesday + hours: 11 AM–3:30 PM + - day: Thursday + hours: 11 AM–3:30 PM + - day: Friday + hours: 11 AM–3:30 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + - Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 9 AM–7 PM + - day: Wednesday + hours: 4–7 PM + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 4–7 PM + - day: Saturday + hours: 4–7 PM + - day: Sunday + hours: 4–7 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–3:30 PM + - day: Sunday + hours: 11 AM–3:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking, Usually somewhat difficult to find a space + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=La%20Voglia%20NYC&query_place_id=ChIJ2Z_EuD9ZwokRB_t-ovxEzxI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 30 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrrjR5BdMAcOnsqWdiXtAE9JBH6qeDUcyIJiKWSU0xdIB2BJ0pxjBClHl7S2Lzclgv60X4fPenp321DycWf0K0qedSM0f1l52UOOCTYKJQeqbDdalTU3_W1x508oqzFL0qE-AYc=w426-h240-k-no +- kgmid: /g/11shvf20lq + +## 32. Lex Restaurant +- description: Understated eatery turning out Italian & American dishes, from red-sauce standards to grilled steak. +- price: $$ +- categoryName: Italian restaurant +- address: 1370 Lexington Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1370 Lexington Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: http://lexrestaurant.com/ +- phone: (212) 860-5903 +- phoneUnformatted: +12128605903 +- claimThisBusiness: false +- location: + - lat: 40.7825 + - lng: -73.9536111 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJRS-PgqRYwokRg6Ej6VCpx2o +- categories: Italian restaurant, Bar, Brunch restaurant, Lunch restaurant, Restaurant +- fid: 0x89c258a4828f2f45:0x6ac7a950e923a183 +- cid: 7694304653359686019 +- reviewsCount: 325 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 2 + - threeStar: 12 + - fourStar: 66 + - fiveStar: 236 +- imagesCount: 261 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/ezPg7DUEY3o?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 12 to 10:30 PM +- day: Tuesday +- hours: 12 to 10:30 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 10:30 PM +- day: Saturday +- hours: 12 to 10:30 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Lex%20Restaurant&query_place_id=ChIJRS-PgqRYwokRg6Ej6VCpx2o +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 31 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNrsR0F-0D62XUo-ow5sgTrcX4QDaKT1OIJTYHJ=w408-h408-k-no +- kgmid: /g/1tfryd4_ + +## 33. A&S Cucina +- price: $$ +- categoryName: Italian restaurant +- address: 610 Exterior St Floor 4, Bronx, NY 10451 +- neighborhood: West Bronx +- street: 610 Exterior St Floor 4 +- city: Bronx +- postalCode: 10451 +- state: New York +- countryCode: US +- phone: (718) 534-0880 +- phoneUnformatted: +17185340880 +- claimThisBusiness: false +- location: + - lat: 40.8205131 + - lng: -73.9301496 +- totalScore: 5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJU2-XmLX1wokRQt2Kd8NsckM +- categories: Italian restaurant +- fid: 0x89c2f5b598976f53:0x43726cc3778add42 +- cid: 4860066534666198338 +- reviewsCount: 16 +- reviewsDistribution: + - oneStar: 0 + - twoStar: 0 + - threeStar: 0 + - fourStar: 0 + - fiveStar: 16 +- imagesCount: 65 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: +- day: Monday +- hours: 11 AM to 7 PM +- day: Tuesday +- hours: 11 AM to 8 PM +- day: Wednesday +- hours: 11 AM to 8 PM +- day: Thursday +- hours: 11 AM to 9 PM +- day: Friday +- hours: 11 AM to 9:30 PM +- day: Saturday +- hours: 11 AM to 9:30 PM +- day: Sunday +- hours: 11 AM to 8 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Fast service + - Popular for: Lunch, Dinner, Solo dining + - Offerings: Comfort food, Quick bite + - Dining options: Lunch, Dinner + - Atmosphere: Casual + - Payments: Credit cards, Debit cards + - Parking: Paid parking lot +- url: https://www.google.com/maps/search/?api=1&query=A%26S%20Cucina&query_place_id=ChIJU2-XmLX1wokRQt2Kd8NsckM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 32 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolHXk24Kk3t-tfUxLdPBH3NZQkulvACP2H6ftRHJEPkQonCc2Eqf9eO9dyTklFGpe-ostrsL8VQ-IQOHLEah3rlLOEZvIX1697vE2y1ZXwF3zvApUVbHno6-Hubf3A8SVw_frQaA=w408-h544-k-no +- kgmid: /g/11yc58qq1s + +## 34. L’incontro by Rocco +- description: Upscale Italian restaurant with a special-occasion setting & a long list of specials. +- price: $$$ +- categoryName: Italian restaurant +- address: 1572 2nd Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1572 2nd Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.lincontrobyrocco.com/ +- phone: (718) 721-3532 +- phoneUnformatted: +17187213532 +- claimThisBusiness: false +- location: + - lat: 40.7749695 + - lng: -73.9535474 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJFb-9qGdfwokRi14Wngdo12o +- categories: Italian restaurant +- fid: 0x89c25f67a8bdbf15:0x6ad768079e165e8b +- cid: 7698736469939478155 +- reviewsCount: 1444 +- reviewsDistribution: + - oneStar: 30 + - twoStar: 14 + - threeStar: 39 + - fourStar: 145 + - fiveStar: 1216 +- imagesCount: 1006 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/mSOOTQsITkA?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 4:30 to 10:30 PM +- day: Wednesday +- hours: 4:30 to 10:30 PM +- day: Thursday +- hours: 4:30 to 10:30 PM +- day: Friday +- hours: 4:30 to 10:30 PM +- day: Saturday +- hours: 4:30 to 10:30 PM +- day: Sunday +- hours: 4:30 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Organic dishes, Vegetarian options, Wine + - Dining options: Dinner, Catering, Dessert, Seating, Table service + - Amenities: Gender-neutral restroom, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Usually plenty of parking +- url: https://www.google.com/maps/search/?api=1&query=L%E2%80%99incontro%20by%20Rocco&query_place_id=ChIJFb-9qGdfwokRi14Wngdo12o +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 33 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMF8b8zEt6hh5qSvd3RId1OHMVorvXGkS98vMcy=w426-h240-k-no +- kgmid: /g/1td2vts7 + +## 35. Bono Trattoria +- description: Italian dishes & pizza served in cool industrial digs with a tin ceiling, brick oven & rustic bar. +- price: $$ +- categoryName: Italian restaurant +- address: 3658 Broadway, New York, NY 10031 +- neighborhood: Manhattan +- street: 3658 Broadway +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://www.bononyc.com/ +- phone: (646) 682-9249 +- phoneUnformatted: +16466829249 +- claimThisBusiness: false +- location: + - lat: 40.830224 + - lng: -73.947329 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJNbJQ54f2wokRPxHl6aTGio0 +- categories: Italian restaurant, Pizza restaurant +- fid: 0x89c2f687e750b235:0x8d8ac6a4e9e5113f +- cid: 10199182717734949183 +- reviewsCount: 940 +- reviewsDistribution: + - oneStar: 17 + - twoStar: 10 + - threeStar: 42 + - fourStar: 194 + - fiveStar: 677 +- imagesCount: 703 +- scrapedAt: 2025-09-19T16:26:24.727Z +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: 4 to 10 PM +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 4 to 10 PM +- day: Saturday +- hours: 11 AM to 10 PM +- day: Sunday +- hours: 11 AM to 10 PM +- additionalOpeningHours: + - Dinner: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: 4–10 PM + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 4–10 PM + - day: Sunday + hours: 4–10 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–4 PM + - day: Sunday + hours: 11 AM–4 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Healthy options, Late-night food, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy + - Crowd: Groups, Locals + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs +- url: https://www.google.com/maps/search/?api=1&query=Bono%20Trattoria&query_place_id=ChIJNbJQ54f2wokRPxHl6aTGio0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 34 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noPjN6sJqa1D0HTMjRF_oLsdsPRIpqwRPYqFG_bDQY-ShewHuHYvPEZH1tB6WbucoPWFCnqTiHIXiGdzoDLuCYPf8Yvwg1iAIz3l4CVENtvW4wTI4nDduEPE1XBMRDQkRme8a3H=w408-h265-k-no +- kgmid: /g/11b808d0t2 + +## 36. Lusardi's +- description: Longtime eatery with an old-world vibe featuring pastas, fish & meats, plus a lengthy wine list. +- price: $$$ +- categoryName: Italian restaurant +- address: 1494 2nd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1494 2nd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.lusardis.com/ +- phone: (212) 249-2020 +- phoneUnformatted: +12122492020 +- claimThisBusiness: true +- location: + - lat: 40.7724018 + - lng: -73.9554555 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJVdduFL9YwokRGn2EFWZDLBs +- categories: Italian restaurant +- fid: 0x89c258bf146ed755:0x1b2c436615847d1a +- cid: 1958014043726052634 +- reviewsCount: 309 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 4 + - threeStar: 22 + - fourStar: 45 + - fiveStar: 230 +- imagesCount: 212 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0VIligoJUAs?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 12 to 10:30 PM +- day: Tuesday +- hours: 12 to 10:30 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10:30 PM +- additionalInfo: + - Service options: Outdoor seating, Takeout, Dine-in + - Highlights: Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Late-night food, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Upscale + - Crowd: Groups + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Lusardi's&query_place_id=ChIJVdduFL9YwokRGn2EFWZDLBs +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 35 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrmzsu0XEkeNphvyqLohNt_6p_QJ1IDf47ZEFVccMkHymYtz05Eg6X8Vq7nnQIbFQyrNu935VunLLcgpcWdjoz29n547x4wEoKyEm815ziu46KWhpT3gPmQXhk-COWG50QXAQYe=w408-h408-k-no +- kgmid: /g/1q6h_z98k + +## 37. Sandro's +- description: This intimate neighborhood Italian restaurant featuring Roman cuisine draws a lively crowd. +- price: $$$ +- categoryName: Italian restaurant +- address: 322 East 86th St, New York, NY 10028 +- neighborhood: Manhattan +- street: 322 East 86th St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.sandrosrestaurant.com/ +- phone: (212) 288-7374 +- phoneUnformatted: +12122887374 +- claimThisBusiness: false +- location: + - lat: 40.7772444 + - lng: -73.9508955 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJj9dKtb5YwokRHtC1_HyFZG0 +- categories: Italian restaurant, Bar, Northern Italian restaurant, Roman restaurant +- fid: 0x89c258beb54ad78f:0x6d64857cfcb5d01e +- cid: 7882572019667423262 +- reviewsCount: 278 +- reviewsDistribution: + - oneStar: 3 + - twoStar: 4 + - threeStar: 12 + - fourStar: 27 + - fiveStar: 232 +- imagesCount: 312 +- scrapedAt: 2025-09-19T16:26:24.727Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/0aEVt87ect8?source=pa&opi=79508299&hl=en-US&gei=MITNaJnCAfyAwN4Ps5u6oQM&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i0!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBcoAw!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwjHl9HxnuWPAxU-goQIHdv2DtoQ_KkBCBYoAg!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675 +- openingHours: +- day: Monday +- hours: 5 to 9 PM +- day: Tuesday +- hours: 5 to 9 PM +- day: Wednesday +- hours: 5 to 9 PM +- day: Thursday +- hours: 5 to 9 PM +- day: Friday +- hours: 5 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 9 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Sandro's&query_place_id=ChIJj9dKtb5YwokRHtC1_HyFZG0 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 38 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipMhoz37pG6i3NCSux0Y4_wqOnNICJJnoO0kUhIw=w408-h271-k-no +- kgmid: /g/1tm69vy3 + +## 38. Due +- description: Sophisticated Northern Italian cuisine in an elegant yet cozy eatery with rustic-chic accents. +- price: $$ +- categoryName: Northern Italian restaurant +- address: 1396 3rd Ave #1, New York, NY 10075 +- neighborhood: Manhattan +- street: 1396 3rd Ave #1 +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.duenyc.com/ +- phone: (212) 772-3331 +- phoneUnformatted: +12127723331 +- claimThisBusiness: false +- location: + - lat: 40.7746951 + - lng: -73.9573127 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJPxCuXL5YwokR4a1zLHSjau8 +- categories: Northern Italian restaurant, Italian restaurant, Restaurant +- fid: 0x89c258be5cae103f:0xef6aa3742c73ade1 +- cid: 17251781041953418721 +- reviewsCount: 212 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 2 + - threeStar: 9 + - fourStar: 46 + - fiveStar: 147 +- imagesCount: 156 +- scrapedAt: 2025-09-19T16:26:24.728Z +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegan options, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, Credit cards + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Due&query_place_id=ChIJPxCuXL5YwokR4a1zLHSjau8 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 40 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-proxy/ALd4DhHI_XCAl4xQsg-qCRnH6tgX67x5hvcgkHrDbGIRHsKj2U7D0jLKG2d__XTy90D_lh7n9NtkDSsm1Kb3GRDZ9Wy-0bSYop4FkGcVdeb_5TXc4StGkPbsm19lexb9-PoBTosjNZMT7HPxOx4OOpnm_Nr1areXLmOCiv3-H6LRzFrpoB0IM9z8gBCq8M3rR5L5zQr2XW4=w408-h271-k-no +- kgmid: /g/1tfk0ryh + +## 39. Elegante Restaurant & Pizzeria +- description: Longtime pizza parlor doling out pies, pasta & other Italian classics in a modest setting. +- price: $$ +- categoryName: Italian restaurant +- address: 92-01 Rockaway Beach Blvd, Rockaway Beach, NY 11693 +- neighborhood: Rockaway Beach +- street: 92-01 Rockaway Beach Blvd +- city: Rockaway Beach +- postalCode: 11693 +- state: New York +- countryCode: US +- website: https://www.elegantepizzeriarestaurant.com/?utm_source=gbp +- phone: (718) 634-3914 +- phoneUnformatted: +17186343914 +- claimThisBusiness: false +- location: + - lat: 40.5862659 + - lng: -73.8154509 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJfdftHUdowokRVbCXKo_CjlQ +- categories: Italian restaurant, Pizza restaurant, Delivery Restaurant +- fid: 0x89c268471dedd77d:0x548ec28f2a97b055 +- cid: 6093021266029555797 +- reviewsCount: 696 +- reviewsDistribution: + - oneStar: 52 + - twoStar: 18 + - threeStar: 35 + - fourStar: 86 + - fiveStar: 505 +- imagesCount: 782 +- scrapedAt: 2025-09-19T16:26:25.627Z +- openingHours: +- day: Monday +- hours: 11 AM to 10 PM +- day: Tuesday +- hours: 11 AM to 10 PM +- day: Wednesday +- hours: 11 AM to 10 PM +- day: Thursday +- hours: 11 AM to 10 PM +- day: Friday +- hours: 11 AM to 10 PM +- day: Saturday +- hours: 11 AM to 10 PM +- day: Sunday +- hours: 11 AM to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 11 AM–9:30 PM + - day: Tuesday + hours: 11 AM–9:30 PM + - day: Wednesday + hours: 11 AM–9:30 PM + - day: Thursday + hours: 11 AM–9:30 PM + - day: Friday + hours: 11 AM–10 PM + - day: Saturday + hours: 11 AM–9:30 PM + - day: Sunday + hours: 11 AM–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Coffee, Comfort food, Late-night food, Quick bite, Small plates, Vegan options, Vegetarian options + - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: College students, Family-friendly, Groups, LGBTQ+ friendly, Tourists, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, Has changing table(s), High chairs, Kids' menu + - Parking: Free street parking, Usually plenty of parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Elegante%20Restaurant%20%26%20Pizzeria&query_place_id=ChIJfdftHUdowokRVbCXKo_CjlQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.59321488768417,-73.70638644734598,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 50 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noA4_Sj541ZELrSG7KK2rGlOLbn01CccI2IypYKiA7b57Lwd8tM_nxWu6OLqAqt2JHHdTprDbAKFxAqOSr4_ukUjVdVvBzQBaOzNVe-gtxWmCxM742y5x3_gWNg1stO2ByU1ho=w408-h544-k-no +- kgmid: /g/1hc1bh2nc + +## 40. IL Carino Restaurant +- description: Italian cuisine served in an intimate, elevated setting with exposed-brick walls & low lighting. +- price: $$ +- categoryName: Italian restaurant +- address: 1710 2nd Ave, New York, NY 10128 +- neighborhood: Manhattan +- street: 1710 2nd Ave +- city: New York +- postalCode: 10128 +- state: New York +- countryCode: US +- website: https://www.ilcarinorestaurantnyc.com/ +- phone: (646) 882-0487 +- phoneUnformatted: +16468820487 +- claimThisBusiness: false +- location: + - lat: 40.7794927 + - lng: -73.9501884 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJiTxP17pYwokR0Gj0Wrd5cOg +- categories: Italian restaurant +- fid: 0x89c258bad74f3c89:0xe87079b75af468d0 +- cid: 16749020842602817744 +- reviewsCount: 260 +- reviewsDistribution: + - oneStar: 13 + - twoStar: 8 + - threeStar: 16 + - fourStar: 18 + - fiveStar: 205 +- imagesCount: 393 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/72nfaEZ_lwY?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: 4 to 10 PM +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 4 to 10 PM +- day: Saturday +- hours: 4 to 10 PM +- day: Sunday +- hours: 4 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great wine list + - Popular for: Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Hard liquor, Vegetarian options, Wine + - Dining options: Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups, Locals + - Planning: Reservations required, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=IL%20Carino%20Restaurant&query_place_id=ChIJiTxP17pYwokR0Gj0Wrd5cOg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 43 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npgcLl47mqf_FLQCHwGJgAn0OS1wyy0a96wBO3tiNtZc4S-0SlyC6HnWg9XGN_0LccglMaQJc4uoF3IfC389uR8Wk1TLh_VQ-EvPjJvoweYyWX5KLno0bpQsWaS010bz6TylJMuEmCBJ9aD=w408-h305-k-no +- kgmid: /g/1tffq7sr + +## 41. Uva +- description: This cozy, rustic spot with a patio and back garden draws lively crowds for small plates and wine. +- price: $$ +- categoryName: Italian restaurant +- address: 1486 2nd Ave, New York, NY 10075 +- neighborhood: Manhattan +- street: 1486 2nd Ave +- city: New York +- postalCode: 10075 +- state: New York +- countryCode: US +- website: http://www.uvanyc.com/ +- phone: (212) 472-4552 +- phoneUnformatted: +12124724552 +- claimThisBusiness: false +- location: + - lat: 40.7721816 + - lng: -73.9556129 +- totalScore: 4.3 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJxYXIbL9YwokR7A8e89BZgGA +- categories: Italian restaurant, Bar, Wine bar +- fid: 0x89c258bf6cc885c5:0x608059d0f31e0fec +- cid: 6953656578626949100 +- reviewsCount: 2005 +- reviewsDistribution: + - oneStar: 82 + - twoStar: 64 + - threeStar: 167 + - fourStar: 459 + - fiveStar: 1233 +- imagesCount: 1421 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/TvaPnNSr9sc?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 3 PM to 12 AM +- day: Tuesday +- hours: 3 PM to 1 AM +- day: Wednesday +- hours: 3 PM to 1 AM +- day: Thursday +- hours: 3 PM to 1 AM +- day: Friday +- hours: 3 PM to 1 AM +- day: Saturday +- hours: 11 AM to 1 AM +- day: Sunday +- hours: 11 AM to 12 AM +- additionalOpeningHours: + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 11 AM–3 PM + - day: Sunday + hours: 11 AM–3 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Breakfast, Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Tourists + - Planning: Usually a wait + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs + - Parking: Free street parking, Paid street parking +- url: https://www.google.com/maps/search/?api=1&query=Uva&query_place_id=ChIJxYXIbL9YwokR7A8e89BZgGA +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 44 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noXDahT9ejA8LzkMGukO5StLsDMa_KRaiBE7GEp8fn-856pVnMqGidhH86GiusydFN5zLi8MIbtEhNXNBnNg3QZ65AYBGodNoTotTBZhUk6PSADgjytbS_HAoDhESOKrqBy7KyILw=w408-h270-k-no +- kgmid: /g/1tm8fx6j + +## 42. Felice 64 +- description: Stylish wine bar supplying Italian vintages & fare in a rustic, date-friendly setting. +- price: $$ +- categoryName: Italian restaurant +- address: 1166 1st Ave, New York, NY 10065 +- neighborhood: Manhattan +- street: 1166 1st Ave +- city: New York +- postalCode: 10065 +- state: New York +- countryCode: US +- website: https://www.felicerestaurants.com/felice-64/ +- phone: (212) 593-2223 +- phoneUnformatted: +12125932223 +- claimThisBusiness: false +- location: + - lat: 40.7625672 + - lng: -73.9595639 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJa1dYp8JYwokRX2NCKS9MxvE +- categories: Italian restaurant, Brunch restaurant, Caterer, Delivery service, Fine dining restaurant, Pasta shop, Restaurant, Wine bar +- fid: 0x89c258c2a758576b:0xf1c64c2f2942635f +- cid: 17421695973968733023 +- reviewsCount: 617 +- reviewsDistribution: + - oneStar: 7 + - twoStar: 12 + - threeStar: 34 + - fourStar: 156 + - fiveStar: 408 +- imagesCount: 436 +- scrapedAt: 2025-09-19T16:26:25.740Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/8IxjPHXMwf4?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 11:30 AM to 11 PM +- day: Sunday +- hours: 11:30 AM to 10 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + hours: 4 AM–6 PM + - day: Tuesday + hours: 4 AM–6 PM + - day: Wednesday + hours: 4 AM–6 PM + - day: Thursday + hours: 4 AM–6 PM + - day: Friday + hours: 4 AM–6 PM + - day: Saturday + hours: 4 AM–6 PM + - day: Sunday + hours: 4 AM–6 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible restroom: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Happy hour drinks, Hard liquor, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Tourists + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Debit cards, NFC mobile payments + - Children: High chairs, Kids' menu + - Parking: Free street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Felice%2064&query_place_id=ChIJa1dYp8JYwokRX2NCKS9MxvE +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 47 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npJ-Mm-9aPRmbUgeBKrk8WFBBydvbjCdQ2RuP_SYMMCD40dqTMLgNMm8zMLhAaL9-UN_RHTBTA0_TYhkdXBySBHaq1_5Jt8WXbnEnGHWoEpq-UKYhTyfVlAqgnlG5O-DKtsGIFO=w408-h282-k-no +- kgmid: /g/1tdzs15z + +## 43. Luna Rossa +- description: Cozy, white-tablecloth restaurant offering Italian dishes with homemade pasta & a sizable wine list. +- price: $$ +- categoryName: Italian restaurant +- address: 347 E 85th St, New York, NY 10028 +- neighborhood: Manhattan +- street: 347 E 85th St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: http://www.lunarossanyc.com/ +- phone: (212) 517-3118 +- phoneUnformatted: +12125173118 +- claimThisBusiness: false +- location: + - lat: 40.776594 + - lng: -73.950351 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJO9tKSrpYwokRZQ9lHjvqcfg +- categories: Italian restaurant, Dessert restaurant, Delivery Restaurant, Northern Italian restaurant, Seafood restaurant, Southern Italian restaurant, Vegetarian restaurant, Wine bar +- fid: 0x89c258ba4a4adb3b:0xf871ea3b1e650f65 +- cid: 17902347533408341861 +- reviewsCount: 201 +- reviewsDistribution: + - oneStar: 7 + - twoStar: 5 + - threeStar: 6 + - fourStar: 23 + - fiveStar: 160 +- imagesCount: 177 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/iMViCOyoAug?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: Closed +- day: Tuesday +- hours: 3 to 10:30 PM +- day: Wednesday +- hours: 3 to 10:30 PM +- day: Thursday +- hours: 3 to 10:30 PM +- day: Friday +- hours: 3 to 10:30 PM +- day: Saturday +- hours: 3 to 10:30 PM +- day: Sunday +- hours: 3 to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–9:45 PM + - day: Wednesday + hours: 3–9:45 PM + - day: Thursday + hours: 3–9:45 PM + - day: Friday + hours: 3–9:45 PM + - day: Saturday + hours: 12–9:45 PM + - day: Sunday + hours: 12–9:45 PM + - Takeout: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–9:45 PM + - day: Wednesday + hours: 3–9:45 PM + - day: Thursday + hours: 3–9:45 PM + - day: Friday + hours: 3–9:45 PM + - day: Saturday + hours: 12–9:45 PM + - day: Sunday + hours: 12–9:45 PM + - Online service hours: + - day: Monday + hours: Closed + - day: Tuesday + hours: 3–10 PM + - day: Wednesday + hours: 3–10 PM + - day: Thursday + hours: 3–10 PM + - day: Friday + hours: 3–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Dinner: + - day: Monday + hours: Closed + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: 4–10 PM + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10:30 PM + - day: Saturday + hours: 3–10:30 PM + - day: Sunday + hours: 3–9:30 PM +- additionalInfo: + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great coffee, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating + - Amenities: Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic + - Crowd: Family-friendly, Groups, LGBTQ+ friendly + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs +- url: https://www.google.com/maps/search/?api=1&query=Luna%20Rossa&query_place_id=ChIJO9tKSrpYwokRZQ9lHjvqcfg +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 48 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNPCpCPuqPAb1Mv6_fOP7cjb8Wu1rbqbk2sMBlh=w408-h271-k-no +- kgmid: /g/1tyt67_1 + +## 44. Botte UES +- price: $$ +- categoryName: Italian restaurant +- address: 1606 1st Ave, New York, NY 10028 +- neighborhood: Manhattan +- street: 1606 1st Ave +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://www.botterestaurants.com/ +- phone: (212) 207-0052 +- phoneUnformatted: +12122070052 +- claimThisBusiness: false +- location: + - lat: 40.7750676 + - lng: -73.9504538 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJI43xgLlYwokR9H-LXHs36gc +- categories: Italian restaurant +- fid: 0x89c258b980f18d23:0x7ea377b5c8b7ff4 +- cid: 570329305788940276 +- reviewsCount: 318 +- reviewsDistribution: + - oneStar: 19 + - twoStar: 15 + - threeStar: 13 + - fourStar: 33 + - fiveStar: 238 +- imagesCount: 236 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-GCSu0_Y210?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: 4 to 10 PM +- day: Wednesday +- hours: 4 to 10 PM +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 4–7 PM + - day: Wednesday + hours: 4–7 PM + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 3–7 PM + - day: Saturday + hours: Closed + - day: Sunday + hours: Closed + - Takeout: + - day: Monday + hours: 4–9:45 PM + - day: Tuesday + hours: 4–9:45 PM + - day: Wednesday + hours: 4–9:45 PM + - day: Thursday + hours: 4–9:45 PM + - day: Friday + hours: 12–10:45 PM + - day: Saturday + hours: 12–10:45 PM + - day: Sunday + hours: 12–9:45 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: 12–4 PM + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great wine list, Live music, Sports + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Hard liquor, Small plates, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Counter service, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Botte%20UES&query_place_id=ChIJI43xgLlYwokR9H-LXHs36gc +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 49 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nolXzNEIFsN-ymw3m-53K2V-62jcB3ZG6xPQUBFhO0HVCbb8a-pYgrbAmZlrMqh5aWtgrK-JKnRgj976PVvNYOHw6SxleadrfcWD3FG_RbGTlXVy3yDRXI6WyJl5930Kt8q-Q=w408-h544-k-no +- kgmid: /g/11rcw3wyq2 + +## 45. Campagnola +- description: An old-school Italian eatery with an extensive menu & prime opportunities for people-watching. +- price: $$$ +- categoryName: Italian restaurant +- address: 1382 1st Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1382 1st Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.campagnola-nyc.com/ +- phone: (212) 861-1102 +- phoneUnformatted: +12128611102 +- claimThisBusiness: false +- location: + - lat: 40.7688172 + - lng: -73.954826 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJHZRr3cBYwokRAOvPS6LgVVI +- categories: Italian restaurant, Bar +- fid: 0x89c258c0dd6b941d:0x5255e0a24bcfeb00 +- cid: 5932895071791737600 +- reviewsCount: 448 +- reviewsDistribution: + - oneStar: 17 + - twoStar: 9 + - threeStar: 23 + - fourStar: 54 + - fiveStar: 345 +- imagesCount: 379 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/zf-38Zl8KIs?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 5 to 10:45 PM +- day: Tuesday +- hours: 5 to 10:45 PM +- day: Wednesday +- hours: 5 to 10:45 PM +- day: Thursday +- hours: 5 to 10:45 PM +- day: Friday +- hours: 5 to 10:45 PM +- day: Saturday +- hours: 5 to 10:45 PM +- day: Sunday +- hours: 5 to 10 PM +- additionalInfo: + - Service options: Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Vegetarian options, Wine + - Dining options: Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups, Locals, Tourists + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Campagnola&query_place_id=ChIJHZRr3cBYwokRAOvPS6LgVVI +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 50 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4npq7cMI9AXFFQErpzum8CjIabtnWYL8YR_mZQ4iHDSaRlHciZov7wWXPITPcVvODwVdE4pEH2xOHC8MkrQWdSwZwkpScjxv78DIiAMRDUrObS7dWempaNzdF7O6FRENWrQFyeYw7w=w408-h271-k-no +- kgmid: /g/1v7pzd2k + +## 46. Finestra Restaurant +- description: Quiet, candlelit trattoria featuring familiar Italian flavors & occasional live music. +- price: $$ +- categoryName: Italian restaurant +- address: 1370 York Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1370 York Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.finestrarestaurant.com/ +- phone: (212) 717-8595 +- phoneUnformatted: +12127178595 +- claimThisBusiness: false +- location: + - lat: 40.7675573 + - lng: -73.95304 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJqZIo0MZYwokR91Ny6mmqVLQ +- categories: Italian restaurant, Seafood restaurant +- fid: 0x89c258c6d02892a9:0xb454aa69ea7253f7 +- cid: 12994198196752372727 +- reviewsCount: 313 +- reviewsDistribution: + - oneStar: 9 + - twoStar: 8 + - threeStar: 19 + - fourStar: 67 + - fiveStar: 210 +- imagesCount: 974 +- scrapedAt: 2025-09-19T16:26:25.741Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/-D_Wh5V-520?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 12 to 9 PM +- day: Tuesday +- hours: 12 to 9 PM +- day: Wednesday +- hours: 12 to 9 PM +- day: Thursday +- hours: 12 to 9 PM +- day: Friday +- hours: 12 to 9 PM +- day: Saturday +- hours: 12 to 9 PM +- day: Sunday +- hours: 12 to 9 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 12–9 PM + - day: Tuesday + hours: 12–9 PM + - day: Wednesday + hours: 12–9 PM + - day: Thursday + hours: 12–9 PM + - day: Friday + hours: 12–9 PM + - day: Saturday + hours: 12–9 PM + - day: Sunday + hours: 12–9 PM +- additionalInfo: + - From the business: Identifies as women-owned + - Service options: Outdoor seating, Curbside pickup, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list, Live music, Serves local specialty + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Organic dishes, Private dining room, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs, Kids' menu + - Pets: Dogs allowed, Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Finestra%20Restaurant&query_place_id=ChIJqZIo0MZYwokR91Ny6mmqVLQ +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 51 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipNkteYTvZ5RQhRDA1ftYSmSIZ_AgBnaL-wcZ2qr=w426-h240-k-no +- kgmid: /g/1tdlj65t + +## 47. 314 - pizza,pasta&cocktailbar +- price: $$ +- categoryName: Italian restaurant +- address: 3143 Broadway, New York, NY 10027 +- neighborhood: Manhattan +- street: 3143 Broadway +- city: New York +- postalCode: 10027 +- state: New York +- countryCode: US +- website: https://www.bar314nyc.com/ +- phone: (646) 682-7645 +- phoneUnformatted: +16466827645 +- claimThisBusiness: false +- location: + - lat: 40.8141969 + - lng: -73.9598383 +- totalScore: 4.7 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJx1MYBV_3wokRjeYHCXgKrJ8 +- categories: Italian restaurant, Gluten-free restaurant, Pizza delivery, Pizza restaurant, Vegetarian restaurant +- fid: 0x89c2f75f051853c7:0x9fac0a780907e68d +- cid: 11505582658688640653 +- reviewsCount: 393 +- reviewsDistribution: + - oneStar: 16 + - twoStar: 5 + - threeStar: 8 + - fourStar: 41 + - fiveStar: 323 +- imagesCount: 372 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/hBW3mCgvci0?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 11 PM +- day: Saturday +- hours: 12 to 11 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Quick bite, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Casual, Cozy, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Tourists + - Planning: Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Parking: Free street parking, Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=314%20-%20pizza%2Cpasta%26cocktailbar&query_place_id=ChIJx1MYBV_3wokRjeYHCXgKrJ8 +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 55 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4noGc3jryP4Hs8eOL-x3pi6LQlGM8sI8FdpRbCP7zWqCadwoy1-KIfk0vZKCK7laUpj_c-jZKSfPp6GA-1DXvmk0gO1n3VApn5YZuLz-XZD5NNKg1EkKA9mg2SCFb75E7q03O9YY=w408-h544-k-no +- kgmid: /g/11gwhc4n3m + +## 48. Bottega +- description: Italian staples including housemade pasta dishes served in a casual but stylish space with a patio. +- price: $$ +- categoryName: Italian restaurant +- address: 1331 2nd Ave, New York, NY 10021 +- neighborhood: Manhattan +- street: 1331 2nd Ave +- city: New York +- postalCode: 10021 +- state: New York +- countryCode: US +- website: http://www.bottegany.com/ +- phone: (212) 288-5282 +- phoneUnformatted: +12122885282 +- claimThisBusiness: false +- location: + - lat: 40.7678058 + - lng: -73.9593676 +- totalScore: 4.4 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJxR4H4cFYwokRM1RXHp-Cy5s +- categories: Italian restaurant, Bar +- fid: 0x89c258c1e1071ec5:0x9bcb829f1e575433 +- cid: 11226210116071543859 +- reviewsCount: 314 +- reviewsDistribution: + - oneStar: 11 + - twoStar: 10 + - threeStar: 20 + - fourStar: 69 + - fiveStar: 204 +- imagesCount: 107 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/XgnZqXjwZnk?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10 PM +- day: Wednesday +- hours: 12 to 10 PM +- day: Thursday +- hours: 12 to 10 PM +- day: Friday +- hours: 12 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Healthy options, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Casual, Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: High chairs, Kids' menu + - Parking: Paid street parking + - Pets: Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=Bottega&query_place_id=ChIJxR4H4cFYwokRM1RXHp-Cy5s +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 56 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrbcjqFUIMgRhqP_S6d9scX9pAvynyWuMSj0Mt3h_k9RgFdClLs_BSmNZi7v60DUPlGDO4hwvXGYxbrtATMmfu3suVcEkiAiZTWh5_yhCNYo79EodLiC2aaRPHLlLdy4nGpqfDt6w=w413-h240-k-no +- kgmid: /g/1yl57jlmg + +## 49. L'Artista Italian Kitchen & Bar +- categoryName: Northern Italian restaurant +- address: 142 Hamilton Pl, New York, NY 10031 +- neighborhood: Manhattan +- street: 142 Hamilton Pl +- city: New York +- postalCode: 10031 +- state: New York +- countryCode: US +- website: http://www.lartistanyc.com/ +- phone: (646) 858-0312 +- phoneUnformatted: +16468580312 +- claimThisBusiness: false +- location: + - lat: 40.8243708 + - lng: -73.9486693 +- totalScore: 4.6 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJscGs5JD3wokRcU7HNiu5akM +- categories: Northern Italian restaurant, Cocktail bar, Dessert restaurant, Italian restaurant, Jazz club, Lounge, Wine bar +- fid: 0x89c2f790e4acc1b1:0x436ab92b36c74e71 +- cid: 4857898743326264945 +- reviewsCount: 260 +- reviewsDistribution: + - oneStar: 8 + - twoStar: 13 + - threeStar: 9 + - fourStar: 22 + - fiveStar: 208 +- imagesCount: 429 +- scrapedAt: 2025-09-19T16:26:25.742Z +- reserveTableUrl: https://www.google.com/maps/reserve/v/dine/c/WeRZ2XWj8jU?source=pa&opi=79508299&hl=en-US&gei=MITNaOT_N76sw8cPj6mr4Qg&sourceurl=https://www.google.com/search?authuser%3D0%26tbm%3Dmap%26q%3Ditalian%2Brestaurant%26psi%3DLoTNaJO-M76EkvQP2-270A0.1758299183927.1%26hl%3Den%26pb%3D!4m12!1m3!1d48323.64085031484!2d-73.84296222367298!3d40.80099311231582!2m3!1f0!2f0!3f0!3m2!1i1920!2i1080!4f13.1!7i20!8i20!10b1!12m36!1m1!18b1!2m3!5m1!6e2!20e3!6m18!4b1!49b1!63m0!73m0!74i150000!75b1!85b1!89b1!91b1!101i97!110m0!114b1!149b1!171b1!176f8!179f90!182b1!183m0!10b1!12b1!13b1!14b1!16b1!17m1!3e1!20m3!5e2!6b1!14b1!19m4!2m3!1i360!2i120!4i8!20m57!2m2!1i203!2i100!3m2!2i4!5b1!6m6!1m2!1i86!2i86!1m2!1i408!2i240!7m42!1m3!1e1!2b0!3e3!1m3!1e2!2b1!3e2!1m3!1e2!2b0!3e3!1m3!1e8!2b0!3e3!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e9!2b1!3e2!1m3!1e10!2b0!3e3!1m3!1e10!2b1!3e2!1m3!1e10!2b0!3e4!2b1!4b1!9b0!22m6!1sLoTNaJO-M76EkvQP2-270A0!2s1i:0,t:20588,p:LoTNaJO-M76EkvQP2-270A0:22!4m1!2i20588!7e81!12e3!24m92!1m26!13m9!2b1!3b1!4b1!6i1!8b1!9b1!14b1!20b1!25b1!18m15!3b1!4b1!5b1!6b1!13b1!14b1!15b1!17b1!21b1!22b0!25b1!27m1!1b0!28b0!31b0!2b1!5m5!2b1!5b1!6b1!7b1!10b1!10m1!8e3!11m1!3e1!14m1!3b1!17b1!20m2!1e3!1e6!24b1!25b1!26b1!29b1!30m1!2b1!36b1!39m3!2m2!2i1!3i1!43b1!52b1!55b1!56m2!1b1!3b1!65m5!3m4!1m3!1m2!1i224!2i298!71b1!72m17!1m5!1b1!2b1!3b1!5b1!7b1!4b1!8m8!1m6!4m1!1e1!4m1!1e3!4m1!1e4!3sother_user_reviews!9b1!89b1!103b1!113b1!117b1!122m1!1b1!26m4!2m3!1i80!2i92!4i8!30m28!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!1m6!1m2!1i0!2i0!2m2!1i0!2i0!31b1!34m19!2b1!3b1!4b1!6b1!7b1!8m6!1b1!3b1!4b1!5b1!6b1!7b1!9b1!12b1!14b1!20b1!23b1!25b1!26b1!37m1!1e81!42b1!46m1!1e10!47m0!49m7!3b1!6m2!1b1!2b1!7m2!1e3!2b1!50m25!1m21!2m7!1u3!4zT3RldsWZZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJgHKBc!10m2!3m1!1e1!2m7!1u2!4zTmVqbMOpcGUgaG9kbm9jZW7DqQ!5e1!9s0ahUKEwiZmpfynuWPAxV8ANAFHbONLjQQ_KkBCJcHKBY!10m2!2m1!1e1!3m1!1u2!3m1!1u3!4BIAE!2e2!3m1!3b1!59BQ2dBd0Fn!61b1!67m3!7b1!10b1!14b0!69i675%26ech%3D1 +- openingHours: +- day: Monday +- hours: 4 to 10 PM +- day: Tuesday +- hours: 4 to 10 PM +- day: Wednesday +- hours: Closed +- day: Thursday +- hours: 4 to 10 PM +- day: Friday +- hours: 4 to 10 PM +- day: Saturday +- hours: 12 to 10 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Happy hours: + - day: Monday + hours: 4–7 PM + - day: Tuesday + hours: 4–7 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–7 PM + - day: Friday + hours: 4–7 PM + - day: Saturday + hours: 4–7 PM + - day: Sunday + hours: 4–7 PM + - Takeout: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Access: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Kitchen: + - day: Monday + hours: 4–10 PM + - day: Tuesday + hours: 4–10 PM + - day: Wednesday + hours: Closed + - day: Thursday + hours: 4–10 PM + - day: Friday + hours: 4–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM + - Brunch: + - day: Monday + hours: Closed + - day: Tuesday + hours: Closed + - day: Wednesday + hours: Closed + - day: Thursday + hours: Closed + - day: Friday + hours: Closed + - day: Saturday + hours: 12–4 PM + - day: Sunday + hours: 12–4 PM +- additionalInfo: + - Service options: Outdoor seating, No-contact delivery, Delivery, Onsite services, Takeout, Dine-in + - Highlights: Fast service, Great cocktails, Great dessert, Great wine list, Live music + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: Wheelchair accessible entrance, Wheelchair accessible parking lot, Wheelchair accessible restroom, Wheelchair accessible seating + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Happy hour drinks, Happy hour food, Hard liquor, Late-night food, Organic dishes, Small plates, Vegetarian options, Wine + - Dining options: Brunch, Lunch, Dinner, Catering, Dessert, Seating, Table service + - Amenities: Bar onsite, Gender-neutral restroom, Restroom, Wi-Fi, Free Wi-Fi + - Atmosphere: Cozy, Romantic, Trendy + - Crowd: Family-friendly, Groups, LGBTQ+ friendly, Transgender safespace + - Planning: Reservations required, Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards + - Children: Good for kids, High chairs + - Pets: Dogs allowed, Dogs allowed outside +- url: https://www.google.com/maps/search/?api=1&query=L'Artista%20Italian%20Kitchen%20%26%20Bar&query_place_id=ChIJscGs5JD3wokRcU7HNiu5akM +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 59 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/p/AF1QipO6j0I_9oCXkmj91OGfXksWfd3iHsWOQhdh2HJd=w408-h544-k-no +- kgmid: /g/11h39mlfsp + +## 50. Antonucci Cafe +- description: Refined venue offering elevated Italian fare, including homemade pastas, plus an ample wine list. +- price: $$$ +- categoryName: Italian restaurant +- address: 170 E 81st St, New York, NY 10028 +- neighborhood: Manhattan +- street: 170 E 81st St +- city: New York +- postalCode: 10028 +- state: New York +- countryCode: US +- website: https://antonuccicafe81.com/ +- phone: (212) 570-5100 +- phoneUnformatted: +12125705100 +- claimThisBusiness: true +- location: + - lat: 40.7756958 + - lng: -73.9569247 +- totalScore: 4.5 +- permanentlyClosed: false +- temporarilyClosed: false +- placeId: ChIJmQKjfr5YwokRxETZofFe5hc +- categories: Italian restaurant, Bar & grill, Cafe, Restaurant +- fid: 0x89c258be7ea30299:0x17e65ef1a1d944c4 +- cid: 1722168299411293380 +- reviewsCount: 406 +- reviewsDistribution: + - oneStar: 18 + - twoStar: 12 + - threeStar: 18 + - fourStar: 52 + - fiveStar: 306 +- imagesCount: 256 +- scrapedAt: 2025-09-19T16:26:25.742Z +- openingHours: +- day: Monday +- hours: 12 to 10 PM +- day: Tuesday +- hours: 12 to 10:30 PM +- day: Wednesday +- hours: 12 to 10:30 PM +- day: Thursday +- hours: 12 to 10:30 PM +- day: Friday +- hours: 12 to 10:30 PM +- day: Saturday +- hours: 12 to 10:30 PM +- day: Sunday +- hours: 12 to 10 PM +- additionalOpeningHours: + - Delivery: + - day: Monday + hours: 5–10 PM + - day: Tuesday + hours: 5–10 PM + - day: Wednesday + hours: 5–10 PM + - day: Thursday + hours: 5–10 PM + - day: Friday + hours: 5–10 PM + - day: Saturday + hours: 5–10 PM + - day: Sunday + hours: 5–10 PM + - Takeout: + - day: Monday + hours: 12–10 PM + - day: Tuesday + hours: 12–10 PM + - day: Wednesday + hours: 12–10 PM + - day: Thursday + hours: 12–10 PM + - day: Friday + hours: 12–10 PM + - day: Saturday + hours: 12–10 PM + - day: Sunday + hours: 12–10 PM +- additionalInfo: + - Service options: Outdoor seating, Delivery, Takeout, Dine-in + - Highlights: Great cocktails, Great coffee, Great dessert, Great wine list + - Popular for: Lunch, Dinner, Solo dining + - Accessibility: + - Wheelchair accessible entrance: true + - Wheelchair accessible seating: true + - Wheelchair accessible parking lot: false + - Offerings: Alcohol, Beer, Cocktails, Coffee, Comfort food, Hard liquor, Small plates, Wine + - Dining options: Brunch, Lunch, Dinner, Dessert, Seating, Table service + - Amenities: Bar onsite, Restroom + - Atmosphere: Cozy, Romantic, Trendy, Upscale + - Crowd: Groups + - Planning: Dinner reservations recommended, Accepts reservations + - Payments: Credit cards, Debit cards, NFC mobile payments, Credit cards +- url: https://www.google.com/maps/search/?api=1&query=Antonucci%20Cafe&query_place_id=ChIJmQKjfr5YwokRxETZofFe5hc +- searchPageUrl: https://www.google.com/maps/search/italian%20restaurant/@40.80099311231582,-73.84296222367298,13z?hl=en +- searchString: italian restaurant +- language: en +- rank: 60 +- isAdvertisement: false +- imageUrl: https://lh3.googleusercontent.com/gps-cs-s/AC9h4nrorwSkoGQ6dwJaBkXAKbzdWyVnO6sPKoDJwRQ9otnkDGWYdWZzMQnlKcE2bTNytK4tE2CJFOJ4SGkP4of7Vy9h2Yxfr49IdtciphiOSDlhuF5Z5UIO8snTZwvU1k982yNRq3c-=w426-h240-k-no +- kgmid: /g/1tf9p556" +`; exports[`jsonToMarkdown should format real Google Maps dataset item 1`] = ` "## 1. Lena Trattoria diff --git a/tests/unit/json-to-markdown.test.ts b/tests/unit/json-to-markdown.test.ts index 7cc97ad8..0c8d0820 100644 --- a/tests/unit/json-to-markdown.test.ts +++ b/tests/unit/json-to-markdown.test.ts @@ -183,6 +183,21 @@ describe('jsonToMarkdown', () => { }); }); + it('should format more extended objects', () => { + expect(jsonToMarkdown( + { a: { b: { c: { d: { e: { f: { g: { h: 1 } } } } } } } }, + )).toMatchInlineSnapshot(` + "- a: + - b: + - c: + - d: + - e: + - f: + - g: + - h: 1" + `); + }); + it('should format real Google Maps dataset item', () => { const jsonString = readFileSync(path.join(__dirname, 'dataset_google-maps-extractor_2025-09-19_16-26-25-793.json'), 'utf8'); From 1ef2be75a3e2974c3adb13d0840f6d2346852d7d Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 17:54:40 +0200 Subject: [PATCH 7/9] fix: generate two level json schema --- src/utils/input-schema-to-markdown.ts | 78 ++++++++++++++------- tests/unit/input-schema-to-markdown.test.ts | 66 ++++++++++++++++- 2 files changed, 118 insertions(+), 26 deletions(-) diff --git a/src/utils/input-schema-to-markdown.ts b/src/utils/input-schema-to-markdown.ts index 6174a507..e7f2e811 100644 --- a/src/utils/input-schema-to-markdown.ts +++ b/src/utils/input-schema-to-markdown.ts @@ -4,41 +4,71 @@ function visibleEmpty(value: string) { return value === '' ? '' : value; } -export function inputSchemaToMarkdown(inputSchema: IActorInputSchema) { - const requiredFields = new Set(inputSchema.required || []); +function formatProperty(key: string, value: any, requiredFields: Set, level = 2): string { + const isRequired = requiredFields.has(key); + const requiredText = isRequired ? 'required' : 'optional'; - let markdown = '# Input Schema'; - if (inputSchema.description) { - markdown += '\n\n'; - markdown += inputSchema.description; - } + let result = `${'#'.repeat(level)} \`${key}\` ${requiredText} ${value.type}`; - for (const [key, value] of Object.entries(inputSchema.properties)) { - const isRequired = requiredFields.has(key); - const requiredText = isRequired ? 'required' : 'optional'; + if (value.format) { + result += ` format:${value.format}`; + } - let line = `## \`${key}\` ${requiredText} ${value.type}`; + if (value.prefill !== undefined && !Array.isArray(value.prefill)) { + result += ' prefill:'; + result += visibleEmpty(String(value.prefill)); + } else if (value.default !== undefined) { + result += ' default:'; + result += visibleEmpty(String(value.default)); + } - if (value.prefill !== undefined && !Array.isArray(value.prefill)) { - line += ' prefill:'; - line += visibleEmpty(String(value.prefill)); - } else if (value.default !== undefined) { - line += ' default:'; - line += visibleEmpty(String(value.default)); + // Handle nested properties for objects + if (value.type === 'object' && value.properties) { + result += '\n'; + const nestedEntries = Object.entries(value.properties); + for (let i = 0; i < nestedEntries.length; i++) { + const [nestedKey, nestedValue] = nestedEntries[i]; + result += formatProperty(nestedKey, nestedValue, requiredFields, level + 1); + if (i < nestedEntries.length - 1) { + result += '\n'; + } } + return result; + } - markdown += '\n\n'; - markdown += line; - markdown += '\n'; - + if (value.enum || value.description) { + result += '\n'; if (value.enum) { let enumLine = 'options: '; enumLine += value.enum.map(visibleEmpty).join(', '); - markdown += enumLine; - markdown += '\n'; + result += enumLine; + result += '\n'; + } + if (value.description) { + result += value.description; } + } + + return result; +} + +export function inputSchemaToMarkdown(inputSchema: IActorInputSchema) { + const requiredFields = new Set(inputSchema.required || []); - markdown += value.description; + let markdown = '# JSON Schema'; + if (inputSchema.description) { + markdown += '\n\n'; + markdown += inputSchema.description; + } + markdown += '\n\n'; // Add blank line after title/description + + const properties = Object.entries(inputSchema.properties); + for (let i = 0; i < properties.length; i++) { + const [key, value] = properties[i]; + markdown += formatProperty(key, value, requiredFields); + if (i < properties.length - 1) { + markdown += '\n\n'; // Add blank line between properties + } } return markdown; diff --git a/tests/unit/input-schema-to-markdown.test.ts b/tests/unit/input-schema-to-markdown.test.ts index 9f3daec6..bd0c24dc 100644 --- a/tests/unit/input-schema-to-markdown.test.ts +++ b/tests/unit/input-schema-to-markdown.test.ts @@ -43,7 +43,7 @@ describe('inputSchemaToMarkdown', () => { const result = inputSchemaToMarkdown(schema); expect(result).toMatchInlineSnapshot(` - "# Input Schema + "# JSON Schema This scraper will get post and page details from Facebook pages of your choice. To try it out, just paste a Facebook Page URL and click ▷ Start. If you need any guidance, just follow this tutorial. @@ -176,7 +176,7 @@ describe('inputSchemaToMarkdown', () => { const result = inputSchemaToMarkdown(schema); expect(result).toMatchInlineSnapshot(` - "# Input Schema + "# JSON Schema To extract contact details from Google places, simply enter 🔍 Search term, add 📍 Location, and 💯 Number of places to extract. Section 🎯 Filters contains various extra features, filters, and sorting options.

Sections with asterisk* are just alternative ways to start the input (📡 Geolocation parameters, 🛰 Polygons, 🔗 URLs). They can be combined with any of the features and sorting options from the Filters section. @@ -234,4 +234,66 @@ describe('inputSchemaToMarkdown', () => { Max 300 results per search URL. Valid format for URLs contains google.com/maps/. This feature also supports uncommon URL formats such as: google.com?cid=***, goo.gl/maps, and custom place list URL." `); }); + + it('should format schema for rag web browser results', () => { + const schema = { + type: 'object', + properties: { + crawl: { + type: 'object', + properties: { + httpStatusCode: { + type: 'integer', + }, + httpStatusMessage: { + type: 'string', + }, + loadedAt: { + type: 'string', + format: 'date-time', + }, + uniqueKey: { + type: 'string', + }, + requestStatus: { + type: 'string', + }, + }, + }, + searchResult: { + type: 'object', + }, + metadata: { + type: 'object', + }, + query: { + type: 'string', + }, + markdown: { + type: 'string', + format: 'style', + }, + }, + }; + + const result = inputSchemaToMarkdown(schema); + expect(result).toMatchInlineSnapshot(` + "# JSON Schema + + ## \`crawl\` optional object + ### \`httpStatusCode\` optional integer + ### \`httpStatusMessage\` optional string + ### \`loadedAt\` optional string format:date-time + ### \`uniqueKey\` optional string + ### \`requestStatus\` optional string + + ## \`searchResult\` optional object + + ## \`metadata\` optional object + + ## \`query\` optional string + + ## \`markdown\` optional string format:style" + `); + }); }); From 4dbd41da206a6087a13bb1c13c289c6e3f96a778 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Mon, 22 Sep 2025 20:15:36 +0200 Subject: [PATCH 8/9] feat: use markdown every time for all json data --- src/tools/actor.ts | 7 ++++--- src/tools/build.ts | 3 ++- src/tools/dataset.ts | 8 +++++--- src/tools/dataset_collection.ts | 3 ++- src/tools/fetch-actor-details.ts | 4 ++-- src/tools/get-actor-output.ts | 3 ++- src/tools/key_value_store.ts | 7 ++++--- src/tools/key_value_store_collection.ts | 3 ++- src/tools/run.ts | 5 +++-- src/tools/run_collection.ts | 3 ++- src/utils/actor-response.ts | 6 +++--- ...chema-to-markdown.ts => json-schema-to-markdown.ts} | 2 +- ...arkdown.test.ts => json-schema-to-markdown.test.ts} | 10 +++++----- 13 files changed, 37 insertions(+), 27 deletions(-) rename src/utils/{input-schema-to-markdown.ts => json-schema-to-markdown.ts} (97%) rename tests/unit/{input-schema-to-markdown.test.ts => json-schema-to-markdown.test.ts} (98%) diff --git a/src/tools/actor.ts b/src/tools/actor.ts index 200c3545..cad06573 100644 --- a/src/tools/actor.ts +++ b/src/tools/actor.ts @@ -22,6 +22,7 @@ import { ensureOutputWithinCharLimit, getActorDefinitionStorageFieldNames, getAc import { fetchActorDetails } from '../utils/actor-details.js'; import { buildActorResponseContent } from '../utils/actor-response.js'; import { ajv } from '../utils/ajv.js'; +import { jsonSchemaToMarkdown } from '../utils/json-schema-to-markdown.js'; import { buildMCPResponse } from '../utils/mcp.js'; import type { ProgressTracker } from '../utils/progress.js'; import type { JsonSchemaProperty } from '../utils/schema-generation.js'; @@ -388,7 +389,7 @@ The step parameter enforces this workflow - you cannot call an Actor without fir client = await connectMCPClient(mcpServerUrl, apifyToken); const toolsResponse = await client.listTools(); - const toolsInfo = toolsResponse.tools.map((tool) => `**${tool.name}**\n${tool.description || 'No description'}\nInput Schema: ${JSON.stringify(tool.inputSchema, null, 2)}`, + const toolsInfo = toolsResponse.tools.map((tool) => `**${tool.name}**\n${tool.description || 'No description'}\n\n${jsonSchemaToMarkdown(tool.inputSchema)}`, ).join('\n\n'); return buildMCPResponse([`This is an MCP Server Actor with the following tools:\n\n${toolsInfo}\n\nTo call a tool, use step="call" with actor name format: "${baseActorName}:{toolName}"`]); @@ -402,7 +403,7 @@ The step parameter enforces this workflow - you cannot call an Actor without fir return buildMCPResponse([`Actor information for '${baseActorName}' was not found. Please check the Actor ID or name and ensure the Actor exists.`]); } const content = [ - { type: 'text', text: `**Input Schema:**\n${JSON.stringify(details.inputSchema, null, 0)}` }, + { type: 'text', text: jsonSchemaToMarkdown(details.inputSchema) }, ]; /** * Add Skyfire instructions also in the info step since clients are most likely truncating the long tool description of the call-actor. @@ -478,7 +479,7 @@ The step parameter enforces this workflow - you cannot call an Actor without fir if (errors && errors.length > 0) { return buildMCPResponse([ `Input validation failed for Actor '${actorName}': ${errors.map((e) => e.message).join(', ')}`, - `Input Schema:\n${JSON.stringify(actor.tool.inputSchema)}`, + jsonSchemaToMarkdown(actor.tool.inputSchema), ]); } } diff --git a/src/tools/build.ts b/src/tools/build.ts index be6044db..1107d879 100644 --- a/src/tools/build.ts +++ b/src/tools/build.ts @@ -13,6 +13,7 @@ import type { ToolEntry, } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonSchemaToMarkdown } from '../utils/json-schema-to-markdown.js'; import { filterSchemaProperties, shortenProperties } from './utils.js'; /** @@ -131,7 +132,7 @@ export const actorDefinitionTool: ToolEntry = { const properties = filterSchemaProperties(v.input.properties as { [key: string]: ISchemaProperties }); v.input.properties = shortenProperties(properties); } - return { content: [{ type: 'text', text: JSON.stringify(v) }] }; + return { content: [{ type: 'text', text: jsonSchemaToMarkdown(v.input) }] }; }, } as InternalTool, }; diff --git a/src/tools/dataset.ts b/src/tools/dataset.ts index 48766fb7..5dee8180 100644 --- a/src/tools/dataset.ts +++ b/src/tools/dataset.ts @@ -6,6 +6,8 @@ import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; import { parseCommaSeparatedList } from '../utils/generic.js'; +import { jsonSchemaToMarkdown } from '../utils/json-schema-to-markdown.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; import { generateSchemaFromItems } from '../utils/schema-generation.js'; const getDatasetArgs = z.object({ @@ -61,7 +63,7 @@ export const getDataset: ToolEntry = { if (!v) { return { content: [{ type: 'text', text: `Dataset '${parsed.datasetId}' not found.` }] }; } - return { content: [{ type: 'text', text: JSON.stringify(v) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(v) }] }; }, } as InternalTool, }; @@ -108,7 +110,7 @@ export const getDatasetItems: ToolEntry = { if (!v) { return { content: [{ type: 'text', text: `Dataset '${parsed.datasetId}' not found.` }] }; } - return { content: [{ type: 'text', text: JSON.stringify(v) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(v) }] }; }, } as InternalTool, }; @@ -176,7 +178,7 @@ export const getDatasetSchema: ToolEntry = { return { content: [{ type: 'text', - text: JSON.stringify(schema), + text: jsonSchemaToMarkdown(schema), }], }; }, diff --git a/src/tools/dataset_collection.ts b/src/tools/dataset_collection.ts index 7126c3ef..4ac23018 100644 --- a/src/tools/dataset_collection.ts +++ b/src/tools/dataset_collection.ts @@ -5,6 +5,7 @@ import { ApifyClient } from '../apify-client.js'; import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; const getUserDatasetsListArgs = z.object({ offset: z.number() @@ -48,7 +49,7 @@ export const getUserDatasetsList: ToolEntry = { desc: parsed.desc, unnamed: parsed.unnamed, }); - return { content: [{ type: 'text', text: JSON.stringify(datasets) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(datasets) }] }; }, } as InternalTool, }; diff --git a/src/tools/fetch-actor-details.ts b/src/tools/fetch-actor-details.ts index c21c36d9..5c229647 100644 --- a/src/tools/fetch-actor-details.ts +++ b/src/tools/fetch-actor-details.ts @@ -6,7 +6,7 @@ import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { fetchActorDetails } from '../utils/actor-details.js'; import { ajv } from '../utils/ajv.js'; -import { inputSchemaToMarkdown } from '../utils/input-schema-to-markdown.js'; +import { jsonSchemaToMarkdown } from '../utils/json-schema-to-markdown.js'; const fetchActorDetailsToolArgsSchema = z.object({ actor: z.string() @@ -43,7 +43,7 @@ export const fetchActorDetailsTool: ToolEntry = { content: [ { type: 'text', text: `**Actor card**:\n${details.actorCard}` }, { type: 'text', text: `**README:**\n${details.readme}` }, - { type: 'text', text: inputSchemaToMarkdown(details.inputSchema) }, + { type: 'text', text: jsonSchemaToMarkdown(details.inputSchema) }, ], }; }, diff --git a/src/tools/get-actor-output.ts b/src/tools/get-actor-output.ts index b6b6b1fe..c49a6657 100644 --- a/src/tools/get-actor-output.ts +++ b/src/tools/get-actor-output.ts @@ -6,6 +6,7 @@ import { HelperTools, SKYFIRE_TOOL_INSTRUCTIONS, TOOL_MAX_OUTPUT_CHARS } from '. import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; import { getValuesByDotKeys, parseCommaSeparatedList } from '../utils/generic.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; /** * Zod schema for get-actor-output tool arguments @@ -134,7 +135,7 @@ Note: This tool is automatically included if the Apify MCP Server is configured .map((item) => cleanEmptyProperties(item)) .filter((item) => item !== undefined); - let outputText = JSON.stringify(cleanedItems); + let outputText = jsonToMarkdown(cleanedItems); let truncated = false; if (outputText.length > TOOL_MAX_OUTPUT_CHARS) { outputText = outputText.slice(0, TOOL_MAX_OUTPUT_CHARS); diff --git a/src/tools/key_value_store.ts b/src/tools/key_value_store.ts index fe21d7e6..b8bd094b 100644 --- a/src/tools/key_value_store.ts +++ b/src/tools/key_value_store.ts @@ -5,6 +5,7 @@ import { ApifyClient } from '../apify-client.js'; import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; const getKeyValueStoreArgs = z.object({ storeId: z.string() @@ -30,7 +31,7 @@ export const getKeyValueStore: ToolEntry = { const parsed = getKeyValueStoreArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const store = await client.keyValueStore(parsed.storeId).get(); - return { content: [{ type: 'text', text: JSON.stringify(store) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(store) }] }; }, } as InternalTool, }; @@ -70,7 +71,7 @@ export const getKeyValueStoreKeys: ToolEntry = { exclusiveStartKey: parsed.exclusiveStartKey, limit: parsed.limit, }); - return { content: [{ type: 'text', text: JSON.stringify(keys) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(keys) }] }; }, } as InternalTool, }; @@ -104,7 +105,7 @@ export const getKeyValueStoreRecord: ToolEntry = { const parsed = getKeyValueStoreRecordArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const record = await client.keyValueStore(parsed.storeId).getRecord(parsed.recordKey); - return { content: [{ type: 'text', text: JSON.stringify(record) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(record) }] }; }, } as InternalTool, }; diff --git a/src/tools/key_value_store_collection.ts b/src/tools/key_value_store_collection.ts index 9d82983d..bcb39d40 100644 --- a/src/tools/key_value_store_collection.ts +++ b/src/tools/key_value_store_collection.ts @@ -5,6 +5,7 @@ import { ApifyClient } from '../apify-client.js'; import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; const getUserKeyValueStoresListArgs = z.object({ offset: z.number() @@ -48,7 +49,7 @@ export const getUserKeyValueStoresList: ToolEntry = { desc: parsed.desc, unnamed: parsed.unnamed, }); - return { content: [{ type: 'text', text: JSON.stringify(stores) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(stores) }] }; }, } as InternalTool, }; diff --git a/src/tools/run.ts b/src/tools/run.ts index 0319b192..00d606f0 100644 --- a/src/tools/run.ts +++ b/src/tools/run.ts @@ -5,6 +5,7 @@ import { ApifyClient } from '../apify-client.js'; import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; const getActorRunArgs = z.object({ runId: z.string() @@ -40,7 +41,7 @@ export const getActorRun: ToolEntry = { if (!v) { return { content: [{ type: 'text', text: `Run with ID '${parsed.runId}' not found.` }] }; } - return { content: [{ type: 'text', text: JSON.stringify(v) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(v) }] }; }, } as InternalTool, }; @@ -96,7 +97,7 @@ export const abortActorRun: ToolEntry = { const parsed = abortRunArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const v = await client.run(parsed.runId).abort({ gracefully: parsed.gracefully }); - return { content: [{ type: 'text', text: JSON.stringify(v) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(v) }] }; }, } as InternalTool, }; diff --git a/src/tools/run_collection.ts b/src/tools/run_collection.ts index 2c564221..5bc5daba 100644 --- a/src/tools/run_collection.ts +++ b/src/tools/run_collection.ts @@ -5,6 +5,7 @@ import { ApifyClient } from '../apify-client.js'; import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; +import { jsonToMarkdown } from '../utils/json-to-markdown.js'; const getUserRunsListArgs = z.object({ offset: z.number() @@ -40,7 +41,7 @@ export const getUserRunsList: ToolEntry = { const parsed = getUserRunsListArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const runs = await client.runs().list({ limit: parsed.limit, offset: parsed.offset, desc: parsed.desc, status: parsed.status }); - return { content: [{ type: 'text', text: JSON.stringify(runs) }] }; + return { content: [{ type: 'text', text: jsonToMarkdown(runs) }] }; }, } as InternalTool, }; diff --git a/src/utils/actor-response.ts b/src/utils/actor-response.ts index fe998655..e526d6b9 100644 --- a/src/utils/actor-response.ts +++ b/src/utils/actor-response.ts @@ -1,4 +1,5 @@ import type { CallActorGetDatasetResult } from '../tools/actor.js'; +import { jsonSchemaToMarkdown } from './json-schema-to-markdown.js'; /** * Builds the response content for Actor tool calls. @@ -37,9 +38,8 @@ Results summary: Actor output data schema: * You can use this schema to understand the structure of the output data and, for example, retrieve specific fields based on your current task. -\`\`\`json -${JSON.stringify(displaySchema, null, 2)} -\`\`\` + +${jsonSchemaToMarkdown(displaySchema)} Above this text block is a preview of the Actor output containing ${result.previewItems.length} item(s).${itemCount !== result.previewItems.length ? ` You have access only to a limited preview of the Actor output. Do not present this as the full output, as you have only ${result.previewItems.length} item(s) available instead of the full ${itemCount} item(s). Be aware of this and inform users about the currently loaded count and the total available output items count.` : ''} diff --git a/src/utils/input-schema-to-markdown.ts b/src/utils/json-schema-to-markdown.ts similarity index 97% rename from src/utils/input-schema-to-markdown.ts rename to src/utils/json-schema-to-markdown.ts index e7f2e811..5b5b4250 100644 --- a/src/utils/input-schema-to-markdown.ts +++ b/src/utils/json-schema-to-markdown.ts @@ -52,7 +52,7 @@ function formatProperty(key: string, value: any, requiredFields: Set, le return result; } -export function inputSchemaToMarkdown(inputSchema: IActorInputSchema) { +export function jsonSchemaToMarkdown(inputSchema: IActorInputSchema) { const requiredFields = new Set(inputSchema.required || []); let markdown = '# JSON Schema'; diff --git a/tests/unit/input-schema-to-markdown.test.ts b/tests/unit/json-schema-to-markdown.test.ts similarity index 98% rename from tests/unit/input-schema-to-markdown.test.ts rename to tests/unit/json-schema-to-markdown.test.ts index bd0c24dc..84b0e749 100644 --- a/tests/unit/input-schema-to-markdown.test.ts +++ b/tests/unit/json-schema-to-markdown.test.ts @@ -1,9 +1,9 @@ /* eslint-disable max-len */ import { describe, expect, it } from 'vitest'; -import { inputSchemaToMarkdown } from '../../src/utils/input-schema-to-markdown.js'; +import { jsonSchemaToMarkdown } from '../../src/utils/json-schema-to-markdown.js'; -describe('inputSchemaToMarkdown', () => { +describe('jsonSchemaToMarkdown', () => { it('should format schema for Actor apify/facebook-posts-scraper', () => { const schema = { title: 'Input schema for the empty project actor.', description: "This scraper will get post and page details from Facebook pages of your choice. To try it out, just paste a Facebook Page URL and click ▷ Start. If you need any guidance, just follow this tutorial.", @@ -41,7 +41,7 @@ describe('inputSchemaToMarkdown', () => { }, required: ['startUrls'] }; - const result = inputSchemaToMarkdown(schema); + const result = jsonSchemaToMarkdown(schema); expect(result).toMatchInlineSnapshot(` "# JSON Schema @@ -174,7 +174,7 @@ describe('inputSchemaToMarkdown', () => { }, }; - const result = inputSchemaToMarkdown(schema); + const result = jsonSchemaToMarkdown(schema); expect(result).toMatchInlineSnapshot(` "# JSON Schema @@ -276,7 +276,7 @@ describe('inputSchemaToMarkdown', () => { }, }; - const result = inputSchemaToMarkdown(schema); + const result = jsonSchemaToMarkdown(schema); expect(result).toMatchInlineSnapshot(` "# JSON Schema From 152048efb7f7b8c05a270b45819375e6b1694444 Mon Sep 17 00:00:00 2001 From: Michal Kalita Date: Tue, 23 Sep 2025 12:52:32 +0200 Subject: [PATCH 9/9] fix: type errors --- src/tools/actor.ts | 6 +++--- src/tools/build.ts | 3 ++- src/tools/dataset.ts | 3 +-- src/tools/key_value_store.ts | 4 ++-- src/types.ts | 1 + src/utils/actor-response.ts | 9 +++++---- src/utils/json-schema-to-markdown.ts | 8 ++++---- src/utils/json-to-markdown.ts | 19 +++++++------------ 8 files changed, 25 insertions(+), 28 deletions(-) diff --git a/src/tools/actor.ts b/src/tools/actor.ts index cad06573..442814ca 100644 --- a/src/tools/actor.ts +++ b/src/tools/actor.ts @@ -17,7 +17,7 @@ import { getActorMCPServerPath, getActorMCPServerURL } from '../mcp/actors.js'; import { connectMCPClient } from '../mcp/client.js'; import { getMCPServerTools } from '../mcp/proxy.js'; import { actorDefinitionPrunedCache } from '../state.js'; -import type { ActorDefinitionStorage, ActorInfo, ApifyToken, DatasetItem, ToolEntry } from '../types.js'; +import type { ActorDefinitionStorage, ActorInfo, ApifyToken, DatasetItem, IActorInputSchema, ToolEntry } from '../types.js'; import { ensureOutputWithinCharLimit, getActorDefinitionStorageFieldNames, getActorMcpUrlCached } from '../utils/actor.js'; import { fetchActorDetails } from '../utils/actor-details.js'; import { buildActorResponseContent } from '../utils/actor-response.js'; @@ -389,7 +389,7 @@ The step parameter enforces this workflow - you cannot call an Actor without fir client = await connectMCPClient(mcpServerUrl, apifyToken); const toolsResponse = await client.listTools(); - const toolsInfo = toolsResponse.tools.map((tool) => `**${tool.name}**\n${tool.description || 'No description'}\n\n${jsonSchemaToMarkdown(tool.inputSchema)}`, + const toolsInfo = toolsResponse.tools.map((tool) => `**${tool.name}**\n${tool.description || 'No description'}\n\n${jsonSchemaToMarkdown(tool.inputSchema as IActorInputSchema)}`, ).join('\n\n'); return buildMCPResponse([`This is an MCP Server Actor with the following tools:\n\n${toolsInfo}\n\nTo call a tool, use step="call" with actor name format: "${baseActorName}:{toolName}"`]); @@ -479,7 +479,7 @@ The step parameter enforces this workflow - you cannot call an Actor without fir if (errors && errors.length > 0) { return buildMCPResponse([ `Input validation failed for Actor '${actorName}': ${errors.map((e) => e.message).join(', ')}`, - jsonSchemaToMarkdown(actor.tool.inputSchema), + jsonSchemaToMarkdown(actor.tool.inputSchema as IActorInputSchema), ]); } } diff --git a/src/tools/build.ts b/src/tools/build.ts index 1107d879..7c9edbdb 100644 --- a/src/tools/build.ts +++ b/src/tools/build.ts @@ -8,6 +8,7 @@ import { ACTOR_README_MAX_LENGTH, HelperTools } from '../const.js'; import type { ActorDefinitionPruned, ActorDefinitionWithDesc, + IActorInputSchema, InternalTool, ISchemaProperties, ToolEntry, @@ -132,7 +133,7 @@ export const actorDefinitionTool: ToolEntry = { const properties = filterSchemaProperties(v.input.properties as { [key: string]: ISchemaProperties }); v.input.properties = shortenProperties(properties); } - return { content: [{ type: 'text', text: jsonSchemaToMarkdown(v.input) }] }; + return { content: [{ type: 'text', text: jsonSchemaToMarkdown((v.input || {}) as IActorInputSchema) }] }; }, } as InternalTool, }; diff --git a/src/tools/dataset.ts b/src/tools/dataset.ts index 5dee8180..0da0293d 100644 --- a/src/tools/dataset.ts +++ b/src/tools/dataset.ts @@ -6,7 +6,6 @@ import { HelperTools } from '../const.js'; import type { InternalTool, ToolEntry } from '../types.js'; import { ajv } from '../utils/ajv.js'; import { parseCommaSeparatedList } from '../utils/generic.js'; -import { jsonSchemaToMarkdown } from '../utils/json-schema-to-markdown.js'; import { jsonToMarkdown } from '../utils/json-to-markdown.js'; import { generateSchemaFromItems } from '../utils/schema-generation.js'; @@ -178,7 +177,7 @@ export const getDatasetSchema: ToolEntry = { return { content: [{ type: 'text', - text: jsonSchemaToMarkdown(schema), + text: JSON.stringify(schema), // TODO: jsonSchemaToMarkdown don't have implemented array support }], }; }, diff --git a/src/tools/key_value_store.ts b/src/tools/key_value_store.ts index b8bd094b..7387b429 100644 --- a/src/tools/key_value_store.ts +++ b/src/tools/key_value_store.ts @@ -31,7 +31,7 @@ export const getKeyValueStore: ToolEntry = { const parsed = getKeyValueStoreArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const store = await client.keyValueStore(parsed.storeId).get(); - return { content: [{ type: 'text', text: jsonToMarkdown(store) }] }; + return { content: [{ type: 'text', text: store ? jsonToMarkdown(store) : 'Value not found' }] }; }, } as InternalTool, }; @@ -105,7 +105,7 @@ export const getKeyValueStoreRecord: ToolEntry = { const parsed = getKeyValueStoreRecordArgs.parse(args); const client = new ApifyClient({ token: apifyToken }); const record = await client.keyValueStore(parsed.storeId).getRecord(parsed.recordKey); - return { content: [{ type: 'text', text: jsonToMarkdown(record) }] }; + return { content: [{ type: 'text', text: record ? jsonToMarkdown(record) : 'Value not found' }] }; }, } as InternalTool, }; diff --git a/src/types.ts b/src/types.ts index a90de611..7a6bb7ce 100644 --- a/src/types.ts +++ b/src/types.ts @@ -19,6 +19,7 @@ export interface ISchemaProperties { enumTitles?: string[]; // Array of string titles for the enum default?: unknown; prefill?: unknown; + format?: string; items?: ISchemaProperties; editor?: string; diff --git a/src/utils/actor-response.ts b/src/utils/actor-response.ts index e526d6b9..a2190780 100644 --- a/src/utils/actor-response.ts +++ b/src/utils/actor-response.ts @@ -1,5 +1,5 @@ import type { CallActorGetDatasetResult } from '../tools/actor.js'; -import { jsonSchemaToMarkdown } from './json-schema-to-markdown.js'; +import { jsonToMarkdown } from './json-to-markdown.js'; /** * Builds the response content for Actor tool calls. @@ -38,8 +38,9 @@ Results summary: Actor output data schema: * You can use this schema to understand the structure of the output data and, for example, retrieve specific fields based on your current task. - -${jsonSchemaToMarkdown(displaySchema)} +\`\`\`json +${JSON.stringify(displaySchema, null, 2)} +\`\`\` Above this text block is a preview of the Actor output containing ${result.previewItems.length} item(s).${itemCount !== result.previewItems.length ? ` You have access only to a limited preview of the Actor output. Do not present this as the full output, as you have only ${result.previewItems.length} item(s) available instead of the full ${itemCount} item(s). Be aware of this and inform users about the currently loaded count and the total available output items count.` : ''} @@ -47,7 +48,7 @@ If you need to retrieve additional data, use the "get-actor-output" tool with: d `; const itemsPreviewText = result.previewItems.length > 0 - ? JSON.stringify(result.previewItems) + ? jsonToMarkdown(result.previewItems) : `No items available for preview—either the Actor did not return any items or they are too large for preview. In this case, use the "get-actor-output" tool.`; // Build content array diff --git a/src/utils/json-schema-to-markdown.ts b/src/utils/json-schema-to-markdown.ts index 5b5b4250..83f18e98 100644 --- a/src/utils/json-schema-to-markdown.ts +++ b/src/utils/json-schema-to-markdown.ts @@ -1,10 +1,10 @@ -import type { IActorInputSchema } from '../types'; +import type { IActorInputSchema, ISchemaProperties } from '../types'; function visibleEmpty(value: string) { return value === '' ? '' : value; } -function formatProperty(key: string, value: any, requiredFields: Set, level = 2): string { +function formatProperty(key: string, value: ISchemaProperties, requiredFields: Set, level = 2): string { const isRequired = requiredFields.has(key); const requiredText = isRequired ? 'required' : 'optional'; @@ -53,7 +53,7 @@ function formatProperty(key: string, value: any, requiredFields: Set, le } export function jsonSchemaToMarkdown(inputSchema: IActorInputSchema) { - const requiredFields = new Set(inputSchema.required || []); + const requiredFields = new Set(Array.isArray(inputSchema.required) ? inputSchema.required : []); let markdown = '# JSON Schema'; if (inputSchema.description) { @@ -62,7 +62,7 @@ export function jsonSchemaToMarkdown(inputSchema: IActorInputSchema) { } markdown += '\n\n'; // Add blank line after title/description - const properties = Object.entries(inputSchema.properties); + const properties = inputSchema.properties ? Object.entries(inputSchema.properties) : []; for (let i = 0; i < properties.length; i++) { const [key, value] = properties[i]; markdown += formatProperty(key, value, requiredFields); diff --git a/src/utils/json-to-markdown.ts b/src/utils/json-to-markdown.ts index 2d79ea12..c21c9c2f 100644 --- a/src/utils/json-to-markdown.ts +++ b/src/utils/json-to-markdown.ts @@ -1,4 +1,4 @@ -type JSON = string | number | boolean | null | JSON[] | { [key: string]: JSON }; +type JSON = string | number | boolean | null | JSON[] | object; function isEmpty(json: JSON): boolean { return ( @@ -74,17 +74,12 @@ function simplifyJson(json: JSON): JSON { function serializeJsonTopLevel(json: JSON): string { switch (typeOfJson(json)) { + case 'null': + return ''; case 'string': case 'number': case 'boolean': return String(json); - case 'null': - return ''; - case 'object': - return serializeJson(json, 0); - case 'array-simple': - case 'array-mixed': - return serializeJson(json, 0); case 'array-object': return (json as JSON[]).map((unknownItem, index) => { const item = unknownItem as Record; @@ -117,8 +112,8 @@ function serializeJson(json: JSON, pad: number): string { return pad === 0 ? getIndent(pad, true) + String(json) : String(json); case 'object': return Object.entries(json as Record) - .filter(([key, value]) => !isEmpty(value)) - .map(([key, value], index) => { + .filter(([_key, value]) => !isEmpty(value)) + .map(([key, value]) => { const indentLevel = pad; const prefix = `${getIndent(indentLevel, true)}${key}:`; if (isOneLiner(value)) { @@ -137,7 +132,7 @@ function serializeJson(json: JSON, pad: number): string { } if (itemType === 'object') { return Object.entries(unknownItem as Record) - .filter(([key, value]) => !isEmpty(value)) + .filter(([_key, value]) => !isEmpty(value)) .map(([key, value], index) => { const prefix = `${getIndent(pad, index === 0)}${key}:`; if (isOneLiner(value)) { @@ -152,7 +147,7 @@ function serializeJson(json: JSON, pad: number): string { case 'array-object': return (json as JSON[]).filter(isNotEmpty).map((unknownItem) => { return Object.entries(unknownItem as Record) - .filter(([key, value]) => !isEmpty(value)) + .filter(([_key, value]) => !isEmpty(value)) .map(([key, value], index) => { const indentLevel = pad === 1 ? 1 : pad; const withBullet = pad === 1 ? index === 0 : true;