[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-local-place-search":3,"mdc--rdc0js-key":33,"related-org-brave-local-place-search":6191,"related-repo-brave-local-place-search":6312},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"local-place-search","search for local places and addresses","USE FOR finding places in the physical world - businesses, POIs, street addresses, cities and streets. Results carry address, coordinates, rating, opening hours and phone, so basic details need no follow-up call. Standalone - no POI IDs or prior web search required; the IDs it returns work with local-pois and local-descriptions. Locate by coordinates or a location string, or omit both to search globally. Omit the query to browse an area. Max 100 results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"brave","Brave","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fbrave.png",[12,16,19],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Brave Search","brave-search",{"name":20,"slug":21,"type":15},"Local Search","local-search",161,"https:\u002F\u002Fgithub.com\u002Fbrave\u002Fbrave-search-skills","2026-08-16T04:01:06.793987",null,11,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Official skills for using Brave Search API with AI coding agents.","https:\u002F\u002Fgithub.com\u002Fbrave\u002Fbrave-search-skills\u002Ftree\u002FHEAD\u002Fskills\u002Flocal-place-search","---\nname: local-place-search\ndescription: USE FOR finding places in the physical world - businesses, POIs, street addresses, cities and streets. Results carry address, coordinates, rating, opening hours and phone, so basic details need no follow-up call. Standalone - no POI IDs or prior web search required; the IDs it returns work with local-pois and local-descriptions. Locate by coordinates or a location string, or omit both to search globally. Omit the query to browse an area. Max 100 results.\n---\n\n# Place Search (Search API)\n\n> **Requires API Key**: Get one at https:\u002F\u002Fapi.search.brave.com\n>\n> **Plan**: Included in the **Search** plan (with `locations` option). See https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe\n>\n> **Standalone**: Unlike `local-pois` and `local-descriptions`, this endpoint does **not** require POI IDs from a prior web search. You provide a location and an optional query directly.\n\n## Quick Start (cURL)\n\n### Search by Query + Coordinates\n\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=coffee shops\" \\\n  --data-urlencode \"latitude=37.7749\" \\\n  --data-urlencode \"longitude=-122.4194\" \\\n  --data-urlencode \"radius=5000\"\n```\n\n### Search by Query + Location String\n\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=sushi restaurants\" \\\n  --data-urlencode \"location=tokyo japan\" \\\n  --data-urlencode \"country=JP\" \\\n  --data-urlencode \"search_lang=en\"\n```\n\n### Browse General POIs (No Query)\n\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"latitude=48.8566\" \\\n  --data-urlencode \"longitude=2.3522\" \\\n  --data-urlencode \"radius=3000\" \\\n  --data-urlencode \"country=FR\"\n```\n\n## Endpoint\n\n```http\nGET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\n```\n\n**Authentication**: `X-Subscription-Token: \u003CAPI_KEY>` header\n\n## Parameters\n\n### Location (optional but recommended)\n\nProviding a geographic anchor improves precision. You can use coordinates (`latitude` + `longitude`) or a `location` string. Omitting both is allowed when a `q` is given — results are sourced globally and may be less precise. Omitting all three (`q`, `latitude`\u002F`longitude`, and `location`) returns HTTP 422.\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `latitude` | float | Conditional | — | Latitude (-90.0 to 90.0). Required together with `longitude` |\n| `longitude` | float | Conditional | — | Longitude (-180.0 to 180.0). Required together with `latitude` |\n| `location` | string | No | — | Location string, alternative to coordinates. US: `\u003Ccity> \u003Cstate> \u003Ccountry>` (e.g., `san francisco ca united states`). Non-US: `\u003Ccity> \u003Ccountry>` (e.g., `tokyo japan`). Case-insensitive, no commas needed. English or the most popular local language works best |\n\n### Search\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `q` | string | No | — | Free-text query (e.g., `coffee shops`, `pizza`). Fully optional — if omitted, returns general POIs in the given area |\n\n### Additional Options\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `radius` | float | No | — | Search radius **bias** around the provided coordinates, in meters. Not a hard cutoff — results may extend beyond it. No upper limit |\n| `count` | int | No | `20` | Total items returned across **all** buckets (1–100), not just `results` — an address query can spend the whole budget on `addresses`\u002F`streets` |\n| `geoloc` | string | No | — | User geolocation as `\u003Clatitude>x\u003Clongitude>` (e.g., `40.7128x-74.0060`), used to compute `distance` |\n| `country` | string | No | `US` | Search country (2-letter country code or `ALL`) |\n| `search_lang` | string | No | `en` | Language for search results (2+ char language code) |\n| `ui_lang` | string | No | `en-US` | UI language (locale code, e.g., `en-US`) |\n| `units` | string | No | `metric` | Measurement units: `metric` or `imperial` |\n| `safesearch` | string | No | `strict` | Safe search level: `off`, `moderate`, or `strict` |\n| `spellcheck` | bool | No | `true` | Whether to apply spellcheck to the query |\n\n## Response Format\n\n### Top-Level Fields\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Always `\"locations\"` |\n| `results` | array | List of `LocationResult` objects (individual POIs) |\n| `cities` | array | Matched cities, `type: \"city\"` — see Geographic Place Fields |\n| `countries` | array | Matched countries, `type: \"country\"` |\n| `regions` | array | Matched regions, `type: \"region\"` |\n| `neighborhoods` | array | Matched neighborhoods, `type: \"neighborhood\"` |\n| `addresses` | array | List of `AddressResult` objects with `type: \"address\"` — specific street + number locations |\n| `streets` | array | List of `AddressResult` objects with `type: \"street\"` — entire streets |\n| `mixed` | array | `ResultReference` ordering hints describing how to interleave the buckets on a SERP |\n| `location` | object? | Resolved location info |\n| `location.coordinates` | [float, float] | `[latitude, longitude]` of the resolved center |\n| `location.name` | string | Resolved location name (e.g., `\"Helsinki\"`) |\n| `location.country` | string | Two-letter country code (e.g., `\"FI\"`) |\n\nTreat a missing bucket as empty. For typical POI-style queries only `results` is populated, so clients that don't render rich SERPs can ignore the rest — except for address- or street-shaped queries, which can return an empty `results` and put every match in `addresses`\u002F`streets`.\n\n### LocationResult Fields\n\nEach item in `results` is a `LocationResult`:\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Always `\"location_result\"` |\n| `title` | string | Business\u002FPOI name |\n| `url` | string | Canonical URL |\n| `description` | string? | Short description or category label (e.g., `\"Coffee Shop\"`) |\n| `provider_url` | string | Provider page URL |\n| `id` | string? | Opaque POI identifier (valid ~8 hours, usable with `local-pois` and `local-descriptions`) |\n| `coordinates` | [float, float]? | `[latitude, longitude]` |\n| `postal_address` | object | `displayAddress`, plus optional `streetAddress`, `addressLocality`, `addressRegion`, `postalCode`, `country` |\n| `contact.telephone` | string? | Phone number |\n| `contact.email` | string? | Email address |\n| `rating.ratingValue` | float? | Average rating |\n| `rating.bestRating` | float? | Max possible rating |\n| `rating.reviewCount` | int? | Number of reviews |\n| `rating.is_tripadvisor` | bool | Whether the rating comes from Tripadvisor |\n| `opening_hours.current_day` | object[]? | Today's hours (`abbr_name`, `full_name`, `opens`, `closes`) |\n| `opening_hours.days` | object[][]? | Hours for each day of the week |\n| `categories` | string[] | Business categories (default `[]`) |\n| `price_range` | string? | Price indicator, e.g. `$`, `$$`, `$$ - $$$` |\n| `serves_cuisine` | string[]? | Cuisine types (restaurants) |\n| `distance.value` | float? | Distance from the search location |\n| `distance.units` | string? | Distance unit |\n| `icon_category` | string? | Icon category slug (e.g., `cafe`) |\n| `thumbnail.src` | string? | Thumbnail image URL |\n| `thumbnail.original` | string? | Original image URL |\n| `pictures.results` | object[]? | Additional images (`src`, `original`) |\n| `profiles` | object[]? | External profiles (`name`, `url`, `long_name`, `img`) |\n| `timezone` | string? | IANA timezone (e.g., `America\u002FLos_Angeles`) |\n| `zoom_level` | int | Suggested map zoom level (default `7`) |\n\n### Geographic Place Fields (`cities`, `countries`, `regions`, `neighborhoods`)\n\nAll four buckets share one shape, differing only by the `type` identifier. The published spec names\nthem `CityResult` \u002F `CountryResult` \u002F `RegionResult` \u002F `NeighborhoodResult`.\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Bucket identifier: `city`, `country`, `region`, or `neighborhood` |\n| `name` | string | Place name |\n| `country` | string | Country code of the place |\n| `coordinates` | [float, float] | `[latitude, longitude]` |\n| `thumbnail.src` | string | Primary image URL |\n\n### AddressResult Fields (`addresses` and `streets`)\n\nSame model is used for both buckets. Items in `addresses` have `type: \"address\"` (street + number); items in `streets` have `type: \"street\"` (entire street).\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | `\"address\"` (in `addresses`) or `\"street\"` (in `streets`) |\n| `name` | string | Display name of the address or street |\n| `coordinates` | [float, float] | `[latitude, longitude]` |\n| `pois` | object[] | `LocationResult` objects located **at** this address\u002Fstreet |\n| `pois_nearby` | object[] | `LocationResult` objects located **nearby** |\n| `zoom_level` | int | Suggested map zoom level (default `15`) |\n| `distance.value` | float? | Distance from the search location |\n| `distance.units` | string? | Distance unit |\n| `postal_address` | object? | `displayAddress`, `streetAddress`, `addressLocality`, `addressRegion`, `country` |\n\n### Mixed Ordering (`mixed`)\n\n`mixed` is an ordered list of `ResultReference` objects telling clients how to interleave items from the different buckets on a single SERP.\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Bucket to draw from: `results`, `cities`, `countries`, `regions`, `neighborhoods`, `addresses`, or `streets` |\n| `index` | int? | 0-based index of the item within that bucket. May be `null` when `all` is `true` |\n| `all` | bool | When `true`, all remaining items from the named bucket should be placed at this position |\n\nClients that only render POIs can ignore `mixed` entirely and read `results` directly.\n\n### Example Response\n\n```json\n{\n  \"type\": \"locations\",\n  \"results\": [\n    {\n      \"type\": \"location_result\",\n      \"title\": \"Blue Bottle Coffee\",\n      \"url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fblue-bottle-coffee-sf\",\n      \"provider_url\": \"\",\n      \"id\": \"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\",\n      \"description\": \"Coffee Shop\",\n      \"postal_address\": {\n        \"type\": \"PostalAddress\",\n        \"displayAddress\": \"315 Linden St, San Francisco, CA 94102\"\n      },\n      \"contact\": { \"telephone\": \"+15106533394\" },\n      \"rating\": {\n        \"ratingValue\": 4.3,\n        \"bestRating\": 5.0,\n        \"reviewCount\": 1024,\n        \"is_tripadvisor\": true\n      },\n      \"opening_hours\": {\n        \"current_day\": [\n          { \"abbr_name\": \"Tue\", \"full_name\": \"Tuesday\", \"opens\": \"07:00\", \"closes\": \"18:00\" }\n        ],\n        \"days\": [\n          [{ \"abbr_name\": \"Mon\", \"full_name\": \"Monday\", \"opens\": \"07:00\", \"closes\": \"18:00\" }]\n        ]\n      },\n      \"coordinates\": [37.7763, -122.4215],\n      \"categories\": [],\n      \"serves_cuisine\": [\"Cafe\", \"Coffee Shop\"],\n      \"price_range\": \"$$\",\n      \"icon_category\": \"cafe\",\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fexample.com\u002Fthumb.jpg\",\n        \"original\": \"https:\u002F\u002Fexample.com\u002Foriginal.jpg\"\n      },\n      \"zoom_level\": 7\n    }\n  ],\n  \"cities\": [],\n  \"countries\": [],\n  \"regions\": [],\n  \"neighborhoods\": [],\n  \"addresses\": [],\n  \"streets\": [],\n  \"mixed\": [\n    { \"type\": \"results\", \"index\": 0, \"all\": false }\n  ],\n  \"location\": {\n    \"coordinates\": [37.7749, -122.4194],\n    \"name\": \"San Francisco\",\n    \"country\": \"US\"\n  }\n}\n```\n\nFor a query that matches a city name, the response additionally surfaces a city entry in `cities`:\n\n```json\n{\n  \"cities\": [\n    {\n      \"type\": \"city\",\n      \"name\": \"San Francisco\",\n      \"country\": \"US\",\n      \"coordinates\": [37.7749, -122.4194],\n      \"thumbnail\": { \"src\": \"https:\u002F\u002Fexample.com\u002Fsf.jpg\" }\n    }\n  ],\n  \"mixed\": [\n    { \"type\": \"cities\", \"index\": 0, \"all\": false }\n  ]\n}\n```\n\n## Enriching Results with POI Details and Descriptions\n\nPOI `id` values from `results` can be passed to sibling endpoints for richer data:\n\n```bash\n# Get full POI details (hours, reviews, photos, web result mentions)\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n\n# Get AI-generated descriptions\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fdescriptions\" -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n```\n\n## Use Cases\n\n- **Map-based exploration**: Search for POIs within a visible map viewport using coordinates + radius. No prior query needed.\n- **Location-aware apps**: Build \"nearby\" features — pass device GPS coordinates and a query to find relevant businesses.\n- **Travel planning**: Search for attractions, restaurants, and hotels by location string (e.g., `paris france`) without needing exact coordinates.\n\n## Notes\n\n- **Finds places, not pages**: This endpoint searches a geographic index of physical places. Use web search for general information retrieval.\n- **Choosing a radius**: A tighter radius (below ~20 km) gives more focused results. Raise it to reach specific or well-known places further afield; for common category searches (e.g., `restaurants`), the default bias or tighter works best.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,136,143,150,399,405,619,625,839,845,861,879,885,891,956,1129,1134,1209,1215,1648,1654,1660,2054,2086,2092,2111,2938,2968,3009,3165,3183,3215,3511,3523,3540,3693,3712,3718,5480,5491,5874,5880,5899,6099,6105,6148,6154,6185],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"place-search-search-api",[44],{"type":45,"value":46},"text","Place Search (Search API)",{"type":39,"tag":48,"props":49,"children":50},"blockquote",{},[51,71,103],{"type":39,"tag":52,"props":53,"children":54},"p",{},[55,61,63],{"type":39,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":45,"value":60},"Requires API Key",{"type":45,"value":62},": Get one at ",{"type":39,"tag":64,"props":65,"children":69},"a",{"href":66,"rel":67},"https:\u002F\u002Fapi.search.brave.com",[68],"nofollow",[70],{"type":45,"value":66},{"type":39,"tag":52,"props":72,"children":73},{},[74,79,81,86,88,95,97],{"type":39,"tag":56,"props":75,"children":76},{},[77],{"type":45,"value":78},"Plan",{"type":45,"value":80},": Included in the ",{"type":39,"tag":56,"props":82,"children":83},{},[84],{"type":45,"value":85},"Search",{"type":45,"value":87}," plan (with ",{"type":39,"tag":89,"props":90,"children":92},"code",{"className":91},[],[93],{"type":45,"value":94},"locations",{"type":45,"value":96}," option). See ",{"type":39,"tag":64,"props":98,"children":101},{"href":99,"rel":100},"https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe",[68],[102],{"type":45,"value":99},{"type":39,"tag":52,"props":104,"children":105},{},[106,111,113,119,121,127,129,134],{"type":39,"tag":56,"props":107,"children":108},{},[109],{"type":45,"value":110},"Standalone",{"type":45,"value":112},": Unlike ",{"type":39,"tag":89,"props":114,"children":116},{"className":115},[],[117],{"type":45,"value":118},"local-pois",{"type":45,"value":120}," and ",{"type":39,"tag":89,"props":122,"children":124},{"className":123},[],[125],{"type":45,"value":126},"local-descriptions",{"type":45,"value":128},", this endpoint does ",{"type":39,"tag":56,"props":130,"children":131},{},[132],{"type":45,"value":133},"not",{"type":45,"value":135}," require POI IDs from a prior web search. You provide a location and an optional query directly.",{"type":39,"tag":137,"props":138,"children":140},"h2",{"id":139},"quick-start-curl",[141],{"type":45,"value":142},"Quick Start (cURL)",{"type":39,"tag":144,"props":145,"children":147},"h3",{"id":146},"search-by-query-coordinates",[148],{"type":45,"value":149},"Search by Query + Coordinates",{"type":39,"tag":151,"props":152,"children":157},"pre",{"className":153,"code":154,"language":155,"meta":156,"style":156},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=coffee shops\" \\\n  --data-urlencode \"latitude=37.7749\" \\\n  --data-urlencode \"longitude=-122.4194\" \\\n  --data-urlencode \"radius=5000\"\n","bash","",[158],{"type":39,"tag":89,"props":159,"children":160},{"__ignoreMap":156},[161,201,227,252,288,301,327,352,377],{"type":39,"tag":162,"props":163,"children":166},"span",{"class":164,"line":165},"line",1,[167,173,179,185,190,195],{"type":39,"tag":162,"props":168,"children":170},{"style":169},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[171],{"type":45,"value":172},"curl",{"type":39,"tag":162,"props":174,"children":176},{"style":175},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[177],{"type":45,"value":178}," -s",{"type":39,"tag":162,"props":180,"children":182},{"style":181},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[183],{"type":45,"value":184}," \"",{"type":39,"tag":162,"props":186,"children":187},{"style":175},[188],{"type":45,"value":189},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search",{"type":39,"tag":162,"props":191,"children":192},{"style":181},[193],{"type":45,"value":194},"\"",{"type":39,"tag":162,"props":196,"children":198},{"style":197},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[199],{"type":45,"value":200}," \\\n",{"type":39,"tag":162,"props":202,"children":204},{"class":164,"line":203},2,[205,210,214,219,223],{"type":39,"tag":162,"props":206,"children":207},{"style":175},[208],{"type":45,"value":209},"  -H",{"type":39,"tag":162,"props":211,"children":212},{"style":181},[213],{"type":45,"value":184},{"type":39,"tag":162,"props":215,"children":216},{"style":175},[217],{"type":45,"value":218},"Accept: application\u002Fjson",{"type":39,"tag":162,"props":220,"children":221},{"style":181},[222],{"type":45,"value":194},{"type":39,"tag":162,"props":224,"children":225},{"style":197},[226],{"type":45,"value":200},{"type":39,"tag":162,"props":228,"children":230},{"class":164,"line":229},3,[231,235,239,244,248],{"type":39,"tag":162,"props":232,"children":233},{"style":175},[234],{"type":45,"value":209},{"type":39,"tag":162,"props":236,"children":237},{"style":181},[238],{"type":45,"value":184},{"type":39,"tag":162,"props":240,"children":241},{"style":175},[242],{"type":45,"value":243},"Accept-Encoding: gzip",{"type":39,"tag":162,"props":245,"children":246},{"style":181},[247],{"type":45,"value":194},{"type":39,"tag":162,"props":249,"children":250},{"style":197},[251],{"type":45,"value":200},{"type":39,"tag":162,"props":253,"children":255},{"class":164,"line":254},4,[256,260,264,269,274,279,284],{"type":39,"tag":162,"props":257,"children":258},{"style":175},[259],{"type":45,"value":209},{"type":39,"tag":162,"props":261,"children":262},{"style":181},[263],{"type":45,"value":184},{"type":39,"tag":162,"props":265,"children":266},{"style":175},[267],{"type":45,"value":268},"X-Subscription-Token: ",{"type":39,"tag":162,"props":270,"children":271},{"style":181},[272],{"type":45,"value":273},"${",{"type":39,"tag":162,"props":275,"children":276},{"style":197},[277],{"type":45,"value":278},"BRAVE_SEARCH_API_KEY",{"type":39,"tag":162,"props":280,"children":281},{"style":181},[282],{"type":45,"value":283},"}\"",{"type":39,"tag":162,"props":285,"children":286},{"style":197},[287],{"type":45,"value":200},{"type":39,"tag":162,"props":289,"children":291},{"class":164,"line":290},5,[292,297],{"type":39,"tag":162,"props":293,"children":294},{"style":175},[295],{"type":45,"value":296},"  -G",{"type":39,"tag":162,"props":298,"children":299},{"style":197},[300],{"type":45,"value":200},{"type":39,"tag":162,"props":302,"children":304},{"class":164,"line":303},6,[305,310,314,319,323],{"type":39,"tag":162,"props":306,"children":307},{"style":175},[308],{"type":45,"value":309},"  --data-urlencode",{"type":39,"tag":162,"props":311,"children":312},{"style":181},[313],{"type":45,"value":184},{"type":39,"tag":162,"props":315,"children":316},{"style":175},[317],{"type":45,"value":318},"q=coffee shops",{"type":39,"tag":162,"props":320,"children":321},{"style":181},[322],{"type":45,"value":194},{"type":39,"tag":162,"props":324,"children":325},{"style":197},[326],{"type":45,"value":200},{"type":39,"tag":162,"props":328,"children":330},{"class":164,"line":329},7,[331,335,339,344,348],{"type":39,"tag":162,"props":332,"children":333},{"style":175},[334],{"type":45,"value":309},{"type":39,"tag":162,"props":336,"children":337},{"style":181},[338],{"type":45,"value":184},{"type":39,"tag":162,"props":340,"children":341},{"style":175},[342],{"type":45,"value":343},"latitude=37.7749",{"type":39,"tag":162,"props":345,"children":346},{"style":181},[347],{"type":45,"value":194},{"type":39,"tag":162,"props":349,"children":350},{"style":197},[351],{"type":45,"value":200},{"type":39,"tag":162,"props":353,"children":355},{"class":164,"line":354},8,[356,360,364,369,373],{"type":39,"tag":162,"props":357,"children":358},{"style":175},[359],{"type":45,"value":309},{"type":39,"tag":162,"props":361,"children":362},{"style":181},[363],{"type":45,"value":184},{"type":39,"tag":162,"props":365,"children":366},{"style":175},[367],{"type":45,"value":368},"longitude=-122.4194",{"type":39,"tag":162,"props":370,"children":371},{"style":181},[372],{"type":45,"value":194},{"type":39,"tag":162,"props":374,"children":375},{"style":197},[376],{"type":45,"value":200},{"type":39,"tag":162,"props":378,"children":380},{"class":164,"line":379},9,[381,385,389,394],{"type":39,"tag":162,"props":382,"children":383},{"style":175},[384],{"type":45,"value":309},{"type":39,"tag":162,"props":386,"children":387},{"style":181},[388],{"type":45,"value":184},{"type":39,"tag":162,"props":390,"children":391},{"style":175},[392],{"type":45,"value":393},"radius=5000",{"type":39,"tag":162,"props":395,"children":396},{"style":181},[397],{"type":45,"value":398},"\"\n",{"type":39,"tag":144,"props":400,"children":402},{"id":401},"search-by-query-location-string",[403],{"type":45,"value":404},"Search by Query + Location String",{"type":39,"tag":151,"props":406,"children":408},{"className":153,"code":407,"language":155,"meta":156,"style":156},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=sushi restaurants\" \\\n  --data-urlencode \"location=tokyo japan\" \\\n  --data-urlencode \"country=JP\" \\\n  --data-urlencode \"search_lang=en\"\n",[409],{"type":39,"tag":89,"props":410,"children":411},{"__ignoreMap":156},[412,439,462,485,516,527,551,575,599],{"type":39,"tag":162,"props":413,"children":414},{"class":164,"line":165},[415,419,423,427,431,435],{"type":39,"tag":162,"props":416,"children":417},{"style":169},[418],{"type":45,"value":172},{"type":39,"tag":162,"props":420,"children":421},{"style":175},[422],{"type":45,"value":178},{"type":39,"tag":162,"props":424,"children":425},{"style":181},[426],{"type":45,"value":184},{"type":39,"tag":162,"props":428,"children":429},{"style":175},[430],{"type":45,"value":189},{"type":39,"tag":162,"props":432,"children":433},{"style":181},[434],{"type":45,"value":194},{"type":39,"tag":162,"props":436,"children":437},{"style":197},[438],{"type":45,"value":200},{"type":39,"tag":162,"props":440,"children":441},{"class":164,"line":203},[442,446,450,454,458],{"type":39,"tag":162,"props":443,"children":444},{"style":175},[445],{"type":45,"value":209},{"type":39,"tag":162,"props":447,"children":448},{"style":181},[449],{"type":45,"value":184},{"type":39,"tag":162,"props":451,"children":452},{"style":175},[453],{"type":45,"value":218},{"type":39,"tag":162,"props":455,"children":456},{"style":181},[457],{"type":45,"value":194},{"type":39,"tag":162,"props":459,"children":460},{"style":197},[461],{"type":45,"value":200},{"type":39,"tag":162,"props":463,"children":464},{"class":164,"line":229},[465,469,473,477,481],{"type":39,"tag":162,"props":466,"children":467},{"style":175},[468],{"type":45,"value":209},{"type":39,"tag":162,"props":470,"children":471},{"style":181},[472],{"type":45,"value":184},{"type":39,"tag":162,"props":474,"children":475},{"style":175},[476],{"type":45,"value":243},{"type":39,"tag":162,"props":478,"children":479},{"style":181},[480],{"type":45,"value":194},{"type":39,"tag":162,"props":482,"children":483},{"style":197},[484],{"type":45,"value":200},{"type":39,"tag":162,"props":486,"children":487},{"class":164,"line":254},[488,492,496,500,504,508,512],{"type":39,"tag":162,"props":489,"children":490},{"style":175},[491],{"type":45,"value":209},{"type":39,"tag":162,"props":493,"children":494},{"style":181},[495],{"type":45,"value":184},{"type":39,"tag":162,"props":497,"children":498},{"style":175},[499],{"type":45,"value":268},{"type":39,"tag":162,"props":501,"children":502},{"style":181},[503],{"type":45,"value":273},{"type":39,"tag":162,"props":505,"children":506},{"style":197},[507],{"type":45,"value":278},{"type":39,"tag":162,"props":509,"children":510},{"style":181},[511],{"type":45,"value":283},{"type":39,"tag":162,"props":513,"children":514},{"style":197},[515],{"type":45,"value":200},{"type":39,"tag":162,"props":517,"children":518},{"class":164,"line":290},[519,523],{"type":39,"tag":162,"props":520,"children":521},{"style":175},[522],{"type":45,"value":296},{"type":39,"tag":162,"props":524,"children":525},{"style":197},[526],{"type":45,"value":200},{"type":39,"tag":162,"props":528,"children":529},{"class":164,"line":303},[530,534,538,543,547],{"type":39,"tag":162,"props":531,"children":532},{"style":175},[533],{"type":45,"value":309},{"type":39,"tag":162,"props":535,"children":536},{"style":181},[537],{"type":45,"value":184},{"type":39,"tag":162,"props":539,"children":540},{"style":175},[541],{"type":45,"value":542},"q=sushi restaurants",{"type":39,"tag":162,"props":544,"children":545},{"style":181},[546],{"type":45,"value":194},{"type":39,"tag":162,"props":548,"children":549},{"style":197},[550],{"type":45,"value":200},{"type":39,"tag":162,"props":552,"children":553},{"class":164,"line":329},[554,558,562,567,571],{"type":39,"tag":162,"props":555,"children":556},{"style":175},[557],{"type":45,"value":309},{"type":39,"tag":162,"props":559,"children":560},{"style":181},[561],{"type":45,"value":184},{"type":39,"tag":162,"props":563,"children":564},{"style":175},[565],{"type":45,"value":566},"location=tokyo japan",{"type":39,"tag":162,"props":568,"children":569},{"style":181},[570],{"type":45,"value":194},{"type":39,"tag":162,"props":572,"children":573},{"style":197},[574],{"type":45,"value":200},{"type":39,"tag":162,"props":576,"children":577},{"class":164,"line":354},[578,582,586,591,595],{"type":39,"tag":162,"props":579,"children":580},{"style":175},[581],{"type":45,"value":309},{"type":39,"tag":162,"props":583,"children":584},{"style":181},[585],{"type":45,"value":184},{"type":39,"tag":162,"props":587,"children":588},{"style":175},[589],{"type":45,"value":590},"country=JP",{"type":39,"tag":162,"props":592,"children":593},{"style":181},[594],{"type":45,"value":194},{"type":39,"tag":162,"props":596,"children":597},{"style":197},[598],{"type":45,"value":200},{"type":39,"tag":162,"props":600,"children":601},{"class":164,"line":379},[602,606,610,615],{"type":39,"tag":162,"props":603,"children":604},{"style":175},[605],{"type":45,"value":309},{"type":39,"tag":162,"props":607,"children":608},{"style":181},[609],{"type":45,"value":184},{"type":39,"tag":162,"props":611,"children":612},{"style":175},[613],{"type":45,"value":614},"search_lang=en",{"type":39,"tag":162,"props":616,"children":617},{"style":181},[618],{"type":45,"value":398},{"type":39,"tag":144,"props":620,"children":622},{"id":621},"browse-general-pois-no-query",[623],{"type":45,"value":624},"Browse General POIs (No Query)",{"type":39,"tag":151,"props":626,"children":628},{"className":153,"code":627,"language":155,"meta":156,"style":156},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"latitude=48.8566\" \\\n  --data-urlencode \"longitude=2.3522\" \\\n  --data-urlencode \"radius=3000\" \\\n  --data-urlencode \"country=FR\"\n",[629],{"type":39,"tag":89,"props":630,"children":631},{"__ignoreMap":156},[632,659,682,705,736,747,771,795,819],{"type":39,"tag":162,"props":633,"children":634},{"class":164,"line":165},[635,639,643,647,651,655],{"type":39,"tag":162,"props":636,"children":637},{"style":169},[638],{"type":45,"value":172},{"type":39,"tag":162,"props":640,"children":641},{"style":175},[642],{"type":45,"value":178},{"type":39,"tag":162,"props":644,"children":645},{"style":181},[646],{"type":45,"value":184},{"type":39,"tag":162,"props":648,"children":649},{"style":175},[650],{"type":45,"value":189},{"type":39,"tag":162,"props":652,"children":653},{"style":181},[654],{"type":45,"value":194},{"type":39,"tag":162,"props":656,"children":657},{"style":197},[658],{"type":45,"value":200},{"type":39,"tag":162,"props":660,"children":661},{"class":164,"line":203},[662,666,670,674,678],{"type":39,"tag":162,"props":663,"children":664},{"style":175},[665],{"type":45,"value":209},{"type":39,"tag":162,"props":667,"children":668},{"style":181},[669],{"type":45,"value":184},{"type":39,"tag":162,"props":671,"children":672},{"style":175},[673],{"type":45,"value":218},{"type":39,"tag":162,"props":675,"children":676},{"style":181},[677],{"type":45,"value":194},{"type":39,"tag":162,"props":679,"children":680},{"style":197},[681],{"type":45,"value":200},{"type":39,"tag":162,"props":683,"children":684},{"class":164,"line":229},[685,689,693,697,701],{"type":39,"tag":162,"props":686,"children":687},{"style":175},[688],{"type":45,"value":209},{"type":39,"tag":162,"props":690,"children":691},{"style":181},[692],{"type":45,"value":184},{"type":39,"tag":162,"props":694,"children":695},{"style":175},[696],{"type":45,"value":243},{"type":39,"tag":162,"props":698,"children":699},{"style":181},[700],{"type":45,"value":194},{"type":39,"tag":162,"props":702,"children":703},{"style":197},[704],{"type":45,"value":200},{"type":39,"tag":162,"props":706,"children":707},{"class":164,"line":254},[708,712,716,720,724,728,732],{"type":39,"tag":162,"props":709,"children":710},{"style":175},[711],{"type":45,"value":209},{"type":39,"tag":162,"props":713,"children":714},{"style":181},[715],{"type":45,"value":184},{"type":39,"tag":162,"props":717,"children":718},{"style":175},[719],{"type":45,"value":268},{"type":39,"tag":162,"props":721,"children":722},{"style":181},[723],{"type":45,"value":273},{"type":39,"tag":162,"props":725,"children":726},{"style":197},[727],{"type":45,"value":278},{"type":39,"tag":162,"props":729,"children":730},{"style":181},[731],{"type":45,"value":283},{"type":39,"tag":162,"props":733,"children":734},{"style":197},[735],{"type":45,"value":200},{"type":39,"tag":162,"props":737,"children":738},{"class":164,"line":290},[739,743],{"type":39,"tag":162,"props":740,"children":741},{"style":175},[742],{"type":45,"value":296},{"type":39,"tag":162,"props":744,"children":745},{"style":197},[746],{"type":45,"value":200},{"type":39,"tag":162,"props":748,"children":749},{"class":164,"line":303},[750,754,758,763,767],{"type":39,"tag":162,"props":751,"children":752},{"style":175},[753],{"type":45,"value":309},{"type":39,"tag":162,"props":755,"children":756},{"style":181},[757],{"type":45,"value":184},{"type":39,"tag":162,"props":759,"children":760},{"style":175},[761],{"type":45,"value":762},"latitude=48.8566",{"type":39,"tag":162,"props":764,"children":765},{"style":181},[766],{"type":45,"value":194},{"type":39,"tag":162,"props":768,"children":769},{"style":197},[770],{"type":45,"value":200},{"type":39,"tag":162,"props":772,"children":773},{"class":164,"line":329},[774,778,782,787,791],{"type":39,"tag":162,"props":775,"children":776},{"style":175},[777],{"type":45,"value":309},{"type":39,"tag":162,"props":779,"children":780},{"style":181},[781],{"type":45,"value":184},{"type":39,"tag":162,"props":783,"children":784},{"style":175},[785],{"type":45,"value":786},"longitude=2.3522",{"type":39,"tag":162,"props":788,"children":789},{"style":181},[790],{"type":45,"value":194},{"type":39,"tag":162,"props":792,"children":793},{"style":197},[794],{"type":45,"value":200},{"type":39,"tag":162,"props":796,"children":797},{"class":164,"line":354},[798,802,806,811,815],{"type":39,"tag":162,"props":799,"children":800},{"style":175},[801],{"type":45,"value":309},{"type":39,"tag":162,"props":803,"children":804},{"style":181},[805],{"type":45,"value":184},{"type":39,"tag":162,"props":807,"children":808},{"style":175},[809],{"type":45,"value":810},"radius=3000",{"type":39,"tag":162,"props":812,"children":813},{"style":181},[814],{"type":45,"value":194},{"type":39,"tag":162,"props":816,"children":817},{"style":197},[818],{"type":45,"value":200},{"type":39,"tag":162,"props":820,"children":821},{"class":164,"line":379},[822,826,830,835],{"type":39,"tag":162,"props":823,"children":824},{"style":175},[825],{"type":45,"value":309},{"type":39,"tag":162,"props":827,"children":828},{"style":181},[829],{"type":45,"value":184},{"type":39,"tag":162,"props":831,"children":832},{"style":175},[833],{"type":45,"value":834},"country=FR",{"type":39,"tag":162,"props":836,"children":837},{"style":181},[838],{"type":45,"value":398},{"type":39,"tag":137,"props":840,"children":842},{"id":841},"endpoint",[843],{"type":45,"value":844},"Endpoint",{"type":39,"tag":151,"props":846,"children":850},{"className":847,"code":848,"language":849,"meta":156,"style":156},"language-http shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","GET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fplace_search\n","http",[851],{"type":39,"tag":89,"props":852,"children":853},{"__ignoreMap":156},[854],{"type":39,"tag":162,"props":855,"children":856},{"class":164,"line":165},[857],{"type":39,"tag":162,"props":858,"children":859},{},[860],{"type":45,"value":848},{"type":39,"tag":52,"props":862,"children":863},{},[864,869,871,877],{"type":39,"tag":56,"props":865,"children":866},{},[867],{"type":45,"value":868},"Authentication",{"type":45,"value":870},": ",{"type":39,"tag":89,"props":872,"children":874},{"className":873},[],[875],{"type":45,"value":876},"X-Subscription-Token: \u003CAPI_KEY>",{"type":45,"value":878}," header",{"type":39,"tag":137,"props":880,"children":882},{"id":881},"parameters",[883],{"type":45,"value":884},"Parameters",{"type":39,"tag":144,"props":886,"children":888},{"id":887},"location-optional-but-recommended",[889],{"type":45,"value":890},"Location (optional but recommended)",{"type":39,"tag":52,"props":892,"children":893},{},[894,896,902,904,910,912,918,920,926,928,933,935,940,942,947,949,954],{"type":45,"value":895},"Providing a geographic anchor improves precision. You can use coordinates (",{"type":39,"tag":89,"props":897,"children":899},{"className":898},[],[900],{"type":45,"value":901},"latitude",{"type":45,"value":903}," + ",{"type":39,"tag":89,"props":905,"children":907},{"className":906},[],[908],{"type":45,"value":909},"longitude",{"type":45,"value":911},") or a ",{"type":39,"tag":89,"props":913,"children":915},{"className":914},[],[916],{"type":45,"value":917},"location",{"type":45,"value":919}," string. Omitting both is allowed when a ",{"type":39,"tag":89,"props":921,"children":923},{"className":922},[],[924],{"type":45,"value":925},"q",{"type":45,"value":927}," is given — results are sourced globally and may be less precise. Omitting all three (",{"type":39,"tag":89,"props":929,"children":931},{"className":930},[],[932],{"type":45,"value":925},{"type":45,"value":934},", ",{"type":39,"tag":89,"props":936,"children":938},{"className":937},[],[939],{"type":45,"value":901},{"type":45,"value":941},"\u002F",{"type":39,"tag":89,"props":943,"children":945},{"className":944},[],[946],{"type":45,"value":909},{"type":45,"value":948},", and ",{"type":39,"tag":89,"props":950,"children":952},{"className":951},[],[953],{"type":45,"value":917},{"type":45,"value":955},") returns HTTP 422.",{"type":39,"tag":957,"props":958,"children":959},"table",{},[960,994],{"type":39,"tag":961,"props":962,"children":963},"thead",{},[964],{"type":39,"tag":965,"props":966,"children":967},"tr",{},[968,974,979,984,989],{"type":39,"tag":969,"props":970,"children":971},"th",{},[972],{"type":45,"value":973},"Parameter",{"type":39,"tag":969,"props":975,"children":976},{},[977],{"type":45,"value":978},"Type",{"type":39,"tag":969,"props":980,"children":981},{},[982],{"type":45,"value":983},"Required",{"type":39,"tag":969,"props":985,"children":986},{},[987],{"type":45,"value":988},"Default",{"type":39,"tag":969,"props":990,"children":991},{},[992],{"type":45,"value":993},"Description",{"type":39,"tag":995,"props":996,"children":997},"tbody",{},[998,1035,1068],{"type":39,"tag":965,"props":999,"children":1000},{},[1001,1010,1015,1020,1025],{"type":39,"tag":1002,"props":1003,"children":1004},"td",{},[1005],{"type":39,"tag":89,"props":1006,"children":1008},{"className":1007},[],[1009],{"type":45,"value":901},{"type":39,"tag":1002,"props":1011,"children":1012},{},[1013],{"type":45,"value":1014},"float",{"type":39,"tag":1002,"props":1016,"children":1017},{},[1018],{"type":45,"value":1019},"Conditional",{"type":39,"tag":1002,"props":1021,"children":1022},{},[1023],{"type":45,"value":1024},"—",{"type":39,"tag":1002,"props":1026,"children":1027},{},[1028,1030],{"type":45,"value":1029},"Latitude (-90.0 to 90.0). Required together with ",{"type":39,"tag":89,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":45,"value":909},{"type":39,"tag":965,"props":1036,"children":1037},{},[1038,1046,1050,1054,1058],{"type":39,"tag":1002,"props":1039,"children":1040},{},[1041],{"type":39,"tag":89,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":45,"value":909},{"type":39,"tag":1002,"props":1047,"children":1048},{},[1049],{"type":45,"value":1014},{"type":39,"tag":1002,"props":1051,"children":1052},{},[1053],{"type":45,"value":1019},{"type":39,"tag":1002,"props":1055,"children":1056},{},[1057],{"type":45,"value":1024},{"type":39,"tag":1002,"props":1059,"children":1060},{},[1061,1063],{"type":45,"value":1062},"Longitude (-180.0 to 180.0). Required together with ",{"type":39,"tag":89,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":45,"value":901},{"type":39,"tag":965,"props":1069,"children":1070},{},[1071,1079,1084,1089,1093],{"type":39,"tag":1002,"props":1072,"children":1073},{},[1074],{"type":39,"tag":89,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":45,"value":917},{"type":39,"tag":1002,"props":1080,"children":1081},{},[1082],{"type":45,"value":1083},"string",{"type":39,"tag":1002,"props":1085,"children":1086},{},[1087],{"type":45,"value":1088},"No",{"type":39,"tag":1002,"props":1090,"children":1091},{},[1092],{"type":45,"value":1024},{"type":39,"tag":1002,"props":1094,"children":1095},{},[1096,1098,1104,1106,1112,1114,1120,1121,1127],{"type":45,"value":1097},"Location string, alternative to coordinates. US: ",{"type":39,"tag":89,"props":1099,"children":1101},{"className":1100},[],[1102],{"type":45,"value":1103},"\u003Ccity> \u003Cstate> \u003Ccountry>",{"type":45,"value":1105}," (e.g., ",{"type":39,"tag":89,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":45,"value":1111},"san francisco ca united states",{"type":45,"value":1113},"). Non-US: ",{"type":39,"tag":89,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":45,"value":1119},"\u003Ccity> \u003Ccountry>",{"type":45,"value":1105},{"type":39,"tag":89,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":45,"value":1126},"tokyo japan",{"type":45,"value":1128},"). Case-insensitive, no commas needed. English or the most popular local language works best",{"type":39,"tag":144,"props":1130,"children":1132},{"id":1131},"search",[1133],{"type":45,"value":85},{"type":39,"tag":957,"props":1135,"children":1136},{},[1137,1163],{"type":39,"tag":961,"props":1138,"children":1139},{},[1140],{"type":39,"tag":965,"props":1141,"children":1142},{},[1143,1147,1151,1155,1159],{"type":39,"tag":969,"props":1144,"children":1145},{},[1146],{"type":45,"value":973},{"type":39,"tag":969,"props":1148,"children":1149},{},[1150],{"type":45,"value":978},{"type":39,"tag":969,"props":1152,"children":1153},{},[1154],{"type":45,"value":983},{"type":39,"tag":969,"props":1156,"children":1157},{},[1158],{"type":45,"value":988},{"type":39,"tag":969,"props":1160,"children":1161},{},[1162],{"type":45,"value":993},{"type":39,"tag":995,"props":1164,"children":1165},{},[1166],{"type":39,"tag":965,"props":1167,"children":1168},{},[1169,1177,1181,1185,1189],{"type":39,"tag":1002,"props":1170,"children":1171},{},[1172],{"type":39,"tag":89,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":45,"value":925},{"type":39,"tag":1002,"props":1178,"children":1179},{},[1180],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1182,"children":1183},{},[1184],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1186,"children":1187},{},[1188],{"type":45,"value":1024},{"type":39,"tag":1002,"props":1190,"children":1191},{},[1192,1194,1200,1201,1207],{"type":45,"value":1193},"Free-text query (e.g., ",{"type":39,"tag":89,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":45,"value":1199},"coffee shops",{"type":45,"value":934},{"type":39,"tag":89,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":45,"value":1206},"pizza",{"type":45,"value":1208},"). Fully optional — if omitted, returns general POIs in the given area",{"type":39,"tag":144,"props":1210,"children":1212},{"id":1211},"additional-options",[1213],{"type":45,"value":1214},"Additional Options",{"type":39,"tag":957,"props":1216,"children":1217},{},[1218,1244],{"type":39,"tag":961,"props":1219,"children":1220},{},[1221],{"type":39,"tag":965,"props":1222,"children":1223},{},[1224,1228,1232,1236,1240],{"type":39,"tag":969,"props":1225,"children":1226},{},[1227],{"type":45,"value":973},{"type":39,"tag":969,"props":1229,"children":1230},{},[1231],{"type":45,"value":978},{"type":39,"tag":969,"props":1233,"children":1234},{},[1235],{"type":45,"value":983},{"type":39,"tag":969,"props":1237,"children":1238},{},[1239],{"type":45,"value":988},{"type":39,"tag":969,"props":1241,"children":1242},{},[1243],{"type":45,"value":993},{"type":39,"tag":995,"props":1245,"children":1246},{},[1247,1283,1346,1396,1438,1472,1512,1559,1613],{"type":39,"tag":965,"props":1248,"children":1249},{},[1250,1259,1263,1267,1271],{"type":39,"tag":1002,"props":1251,"children":1252},{},[1253],{"type":39,"tag":89,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":45,"value":1258},"radius",{"type":39,"tag":1002,"props":1260,"children":1261},{},[1262],{"type":45,"value":1014},{"type":39,"tag":1002,"props":1264,"children":1265},{},[1266],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1268,"children":1269},{},[1270],{"type":45,"value":1024},{"type":39,"tag":1002,"props":1272,"children":1273},{},[1274,1276,1281],{"type":45,"value":1275},"Search radius ",{"type":39,"tag":56,"props":1277,"children":1278},{},[1279],{"type":45,"value":1280},"bias",{"type":45,"value":1282}," around the provided coordinates, in meters. Not a hard cutoff — results may extend beyond it. No upper limit",{"type":39,"tag":965,"props":1284,"children":1285},{},[1286,1295,1300,1304,1313],{"type":39,"tag":1002,"props":1287,"children":1288},{},[1289],{"type":39,"tag":89,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":45,"value":1294},"count",{"type":39,"tag":1002,"props":1296,"children":1297},{},[1298],{"type":45,"value":1299},"int",{"type":39,"tag":1002,"props":1301,"children":1302},{},[1303],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1305,"children":1306},{},[1307],{"type":39,"tag":89,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":45,"value":1312},"20",{"type":39,"tag":1002,"props":1314,"children":1315},{},[1316,1318,1323,1325,1331,1333,1339,1340],{"type":45,"value":1317},"Total items returned across ",{"type":39,"tag":56,"props":1319,"children":1320},{},[1321],{"type":45,"value":1322},"all",{"type":45,"value":1324}," buckets (1–100), not just ",{"type":39,"tag":89,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":45,"value":1330},"results",{"type":45,"value":1332}," — an address query can spend the whole budget on ",{"type":39,"tag":89,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":45,"value":1338},"addresses",{"type":45,"value":941},{"type":39,"tag":89,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":45,"value":1345},"streets",{"type":39,"tag":965,"props":1347,"children":1348},{},[1349,1358,1362,1366,1370],{"type":39,"tag":1002,"props":1350,"children":1351},{},[1352],{"type":39,"tag":89,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":45,"value":1357},"geoloc",{"type":39,"tag":1002,"props":1359,"children":1360},{},[1361],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1363,"children":1364},{},[1365],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1367,"children":1368},{},[1369],{"type":45,"value":1024},{"type":39,"tag":1002,"props":1371,"children":1372},{},[1373,1375,1381,1382,1388,1390],{"type":45,"value":1374},"User geolocation as ",{"type":39,"tag":89,"props":1376,"children":1378},{"className":1377},[],[1379],{"type":45,"value":1380},"\u003Clatitude>x\u003Clongitude>",{"type":45,"value":1105},{"type":39,"tag":89,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":45,"value":1387},"40.7128x-74.0060",{"type":45,"value":1389},"), used to compute ",{"type":39,"tag":89,"props":1391,"children":1393},{"className":1392},[],[1394],{"type":45,"value":1395},"distance",{"type":39,"tag":965,"props":1397,"children":1398},{},[1399,1408,1412,1416,1425],{"type":39,"tag":1002,"props":1400,"children":1401},{},[1402],{"type":39,"tag":89,"props":1403,"children":1405},{"className":1404},[],[1406],{"type":45,"value":1407},"country",{"type":39,"tag":1002,"props":1409,"children":1410},{},[1411],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1413,"children":1414},{},[1415],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1417,"children":1418},{},[1419],{"type":39,"tag":89,"props":1420,"children":1422},{"className":1421},[],[1423],{"type":45,"value":1424},"US",{"type":39,"tag":1002,"props":1426,"children":1427},{},[1428,1430,1436],{"type":45,"value":1429},"Search country (2-letter country code or ",{"type":39,"tag":89,"props":1431,"children":1433},{"className":1432},[],[1434],{"type":45,"value":1435},"ALL",{"type":45,"value":1437},")",{"type":39,"tag":965,"props":1439,"children":1440},{},[1441,1450,1454,1458,1467],{"type":39,"tag":1002,"props":1442,"children":1443},{},[1444],{"type":39,"tag":89,"props":1445,"children":1447},{"className":1446},[],[1448],{"type":45,"value":1449},"search_lang",{"type":39,"tag":1002,"props":1451,"children":1452},{},[1453],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1455,"children":1456},{},[1457],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1459,"children":1460},{},[1461],{"type":39,"tag":89,"props":1462,"children":1464},{"className":1463},[],[1465],{"type":45,"value":1466},"en",{"type":39,"tag":1002,"props":1468,"children":1469},{},[1470],{"type":45,"value":1471},"Language for search results (2+ char language code)",{"type":39,"tag":965,"props":1473,"children":1474},{},[1475,1484,1488,1492,1501],{"type":39,"tag":1002,"props":1476,"children":1477},{},[1478],{"type":39,"tag":89,"props":1479,"children":1481},{"className":1480},[],[1482],{"type":45,"value":1483},"ui_lang",{"type":39,"tag":1002,"props":1485,"children":1486},{},[1487],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1489,"children":1490},{},[1491],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1493,"children":1494},{},[1495],{"type":39,"tag":89,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":45,"value":1500},"en-US",{"type":39,"tag":1002,"props":1502,"children":1503},{},[1504,1506,1511],{"type":45,"value":1505},"UI language (locale code, e.g., ",{"type":39,"tag":89,"props":1507,"children":1509},{"className":1508},[],[1510],{"type":45,"value":1500},{"type":45,"value":1437},{"type":39,"tag":965,"props":1513,"children":1514},{},[1515,1524,1528,1532,1541],{"type":39,"tag":1002,"props":1516,"children":1517},{},[1518],{"type":39,"tag":89,"props":1519,"children":1521},{"className":1520},[],[1522],{"type":45,"value":1523},"units",{"type":39,"tag":1002,"props":1525,"children":1526},{},[1527],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1529,"children":1530},{},[1531],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1533,"children":1534},{},[1535],{"type":39,"tag":89,"props":1536,"children":1538},{"className":1537},[],[1539],{"type":45,"value":1540},"metric",{"type":39,"tag":1002,"props":1542,"children":1543},{},[1544,1546,1551,1553],{"type":45,"value":1545},"Measurement units: ",{"type":39,"tag":89,"props":1547,"children":1549},{"className":1548},[],[1550],{"type":45,"value":1540},{"type":45,"value":1552}," or ",{"type":39,"tag":89,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":45,"value":1558},"imperial",{"type":39,"tag":965,"props":1560,"children":1561},{},[1562,1571,1575,1579,1588],{"type":39,"tag":1002,"props":1563,"children":1564},{},[1565],{"type":39,"tag":89,"props":1566,"children":1568},{"className":1567},[],[1569],{"type":45,"value":1570},"safesearch",{"type":39,"tag":1002,"props":1572,"children":1573},{},[1574],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1576,"children":1577},{},[1578],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1580,"children":1581},{},[1582],{"type":39,"tag":89,"props":1583,"children":1585},{"className":1584},[],[1586],{"type":45,"value":1587},"strict",{"type":39,"tag":1002,"props":1589,"children":1590},{},[1591,1593,1599,1600,1606,1608],{"type":45,"value":1592},"Safe search level: ",{"type":39,"tag":89,"props":1594,"children":1596},{"className":1595},[],[1597],{"type":45,"value":1598},"off",{"type":45,"value":934},{"type":39,"tag":89,"props":1601,"children":1603},{"className":1602},[],[1604],{"type":45,"value":1605},"moderate",{"type":45,"value":1607},", or ",{"type":39,"tag":89,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":45,"value":1587},{"type":39,"tag":965,"props":1614,"children":1615},{},[1616,1625,1630,1634,1643],{"type":39,"tag":1002,"props":1617,"children":1618},{},[1619],{"type":39,"tag":89,"props":1620,"children":1622},{"className":1621},[],[1623],{"type":45,"value":1624},"spellcheck",{"type":39,"tag":1002,"props":1626,"children":1627},{},[1628],{"type":45,"value":1629},"bool",{"type":39,"tag":1002,"props":1631,"children":1632},{},[1633],{"type":45,"value":1088},{"type":39,"tag":1002,"props":1635,"children":1636},{},[1637],{"type":39,"tag":89,"props":1638,"children":1640},{"className":1639},[],[1641],{"type":45,"value":1642},"true",{"type":39,"tag":1002,"props":1644,"children":1645},{},[1646],{"type":45,"value":1647},"Whether to apply spellcheck to the query",{"type":39,"tag":137,"props":1649,"children":1651},{"id":1650},"response-format",[1652],{"type":45,"value":1653},"Response Format",{"type":39,"tag":144,"props":1655,"children":1657},{"id":1656},"top-level-fields",[1658],{"type":45,"value":1659},"Top-Level Fields",{"type":39,"tag":957,"props":1661,"children":1662},{},[1663,1682],{"type":39,"tag":961,"props":1664,"children":1665},{},[1666],{"type":39,"tag":965,"props":1667,"children":1668},{},[1669,1674,1678],{"type":39,"tag":969,"props":1670,"children":1671},{},[1672],{"type":45,"value":1673},"Field",{"type":39,"tag":969,"props":1675,"children":1676},{},[1677],{"type":45,"value":978},{"type":39,"tag":969,"props":1679,"children":1680},{},[1681],{"type":45,"value":993},{"type":39,"tag":995,"props":1683,"children":1684},{},[1685,1712,1741,1770,1797,1824,1851,1886,1919,1946,1967,1998,2026],{"type":39,"tag":965,"props":1686,"children":1687},{},[1688,1697,1701],{"type":39,"tag":1002,"props":1689,"children":1690},{},[1691],{"type":39,"tag":89,"props":1692,"children":1694},{"className":1693},[],[1695],{"type":45,"value":1696},"type",{"type":39,"tag":1002,"props":1698,"children":1699},{},[1700],{"type":45,"value":1083},{"type":39,"tag":1002,"props":1702,"children":1703},{},[1704,1706],{"type":45,"value":1705},"Always ",{"type":39,"tag":89,"props":1707,"children":1709},{"className":1708},[],[1710],{"type":45,"value":1711},"\"locations\"",{"type":39,"tag":965,"props":1713,"children":1714},{},[1715,1723,1728],{"type":39,"tag":1002,"props":1716,"children":1717},{},[1718],{"type":39,"tag":89,"props":1719,"children":1721},{"className":1720},[],[1722],{"type":45,"value":1330},{"type":39,"tag":1002,"props":1724,"children":1725},{},[1726],{"type":45,"value":1727},"array",{"type":39,"tag":1002,"props":1729,"children":1730},{},[1731,1733,1739],{"type":45,"value":1732},"List of ",{"type":39,"tag":89,"props":1734,"children":1736},{"className":1735},[],[1737],{"type":45,"value":1738},"LocationResult",{"type":45,"value":1740}," objects (individual POIs)",{"type":39,"tag":965,"props":1742,"children":1743},{},[1744,1753,1757],{"type":39,"tag":1002,"props":1745,"children":1746},{},[1747],{"type":39,"tag":89,"props":1748,"children":1750},{"className":1749},[],[1751],{"type":45,"value":1752},"cities",{"type":39,"tag":1002,"props":1754,"children":1755},{},[1756],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1758,"children":1759},{},[1760,1762,1768],{"type":45,"value":1761},"Matched cities, ",{"type":39,"tag":89,"props":1763,"children":1765},{"className":1764},[],[1766],{"type":45,"value":1767},"type: \"city\"",{"type":45,"value":1769}," — see Geographic Place Fields",{"type":39,"tag":965,"props":1771,"children":1772},{},[1773,1782,1786],{"type":39,"tag":1002,"props":1774,"children":1775},{},[1776],{"type":39,"tag":89,"props":1777,"children":1779},{"className":1778},[],[1780],{"type":45,"value":1781},"countries",{"type":39,"tag":1002,"props":1783,"children":1784},{},[1785],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1787,"children":1788},{},[1789,1791],{"type":45,"value":1790},"Matched countries, ",{"type":39,"tag":89,"props":1792,"children":1794},{"className":1793},[],[1795],{"type":45,"value":1796},"type: \"country\"",{"type":39,"tag":965,"props":1798,"children":1799},{},[1800,1809,1813],{"type":39,"tag":1002,"props":1801,"children":1802},{},[1803],{"type":39,"tag":89,"props":1804,"children":1806},{"className":1805},[],[1807],{"type":45,"value":1808},"regions",{"type":39,"tag":1002,"props":1810,"children":1811},{},[1812],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1814,"children":1815},{},[1816,1818],{"type":45,"value":1817},"Matched regions, ",{"type":39,"tag":89,"props":1819,"children":1821},{"className":1820},[],[1822],{"type":45,"value":1823},"type: \"region\"",{"type":39,"tag":965,"props":1825,"children":1826},{},[1827,1836,1840],{"type":39,"tag":1002,"props":1828,"children":1829},{},[1830],{"type":39,"tag":89,"props":1831,"children":1833},{"className":1832},[],[1834],{"type":45,"value":1835},"neighborhoods",{"type":39,"tag":1002,"props":1837,"children":1838},{},[1839],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1841,"children":1842},{},[1843,1845],{"type":45,"value":1844},"Matched neighborhoods, ",{"type":39,"tag":89,"props":1846,"children":1848},{"className":1847},[],[1849],{"type":45,"value":1850},"type: \"neighborhood\"",{"type":39,"tag":965,"props":1852,"children":1853},{},[1854,1862,1866],{"type":39,"tag":1002,"props":1855,"children":1856},{},[1857],{"type":39,"tag":89,"props":1858,"children":1860},{"className":1859},[],[1861],{"type":45,"value":1338},{"type":39,"tag":1002,"props":1863,"children":1864},{},[1865],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1867,"children":1868},{},[1869,1870,1876,1878,1884],{"type":45,"value":1732},{"type":39,"tag":89,"props":1871,"children":1873},{"className":1872},[],[1874],{"type":45,"value":1875},"AddressResult",{"type":45,"value":1877}," objects with ",{"type":39,"tag":89,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":45,"value":1883},"type: \"address\"",{"type":45,"value":1885}," — specific street + number locations",{"type":39,"tag":965,"props":1887,"children":1888},{},[1889,1897,1901],{"type":39,"tag":1002,"props":1890,"children":1891},{},[1892],{"type":39,"tag":89,"props":1893,"children":1895},{"className":1894},[],[1896],{"type":45,"value":1345},{"type":39,"tag":1002,"props":1898,"children":1899},{},[1900],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1902,"children":1903},{},[1904,1905,1910,1911,1917],{"type":45,"value":1732},{"type":39,"tag":89,"props":1906,"children":1908},{"className":1907},[],[1909],{"type":45,"value":1875},{"type":45,"value":1877},{"type":39,"tag":89,"props":1912,"children":1914},{"className":1913},[],[1915],{"type":45,"value":1916},"type: \"street\"",{"type":45,"value":1918}," — entire streets",{"type":39,"tag":965,"props":1920,"children":1921},{},[1922,1931,1935],{"type":39,"tag":1002,"props":1923,"children":1924},{},[1925],{"type":39,"tag":89,"props":1926,"children":1928},{"className":1927},[],[1929],{"type":45,"value":1930},"mixed",{"type":39,"tag":1002,"props":1932,"children":1933},{},[1934],{"type":45,"value":1727},{"type":39,"tag":1002,"props":1936,"children":1937},{},[1938,1944],{"type":39,"tag":89,"props":1939,"children":1941},{"className":1940},[],[1942],{"type":45,"value":1943},"ResultReference",{"type":45,"value":1945}," ordering hints describing how to interleave the buckets on a SERP",{"type":39,"tag":965,"props":1947,"children":1948},{},[1949,1957,1962],{"type":39,"tag":1002,"props":1950,"children":1951},{},[1952],{"type":39,"tag":89,"props":1953,"children":1955},{"className":1954},[],[1956],{"type":45,"value":917},{"type":39,"tag":1002,"props":1958,"children":1959},{},[1960],{"type":45,"value":1961},"object?",{"type":39,"tag":1002,"props":1963,"children":1964},{},[1965],{"type":45,"value":1966},"Resolved location info",{"type":39,"tag":965,"props":1968,"children":1969},{},[1970,1979,1987],{"type":39,"tag":1002,"props":1971,"children":1972},{},[1973],{"type":39,"tag":89,"props":1974,"children":1976},{"className":1975},[],[1977],{"type":45,"value":1978},"location.coordinates",{"type":39,"tag":1002,"props":1980,"children":1981},{},[1982],{"type":39,"tag":162,"props":1983,"children":1984},{},[1985],{"type":45,"value":1986},"float, float",{"type":39,"tag":1002,"props":1988,"children":1989},{},[1990,1996],{"type":39,"tag":89,"props":1991,"children":1993},{"className":1992},[],[1994],{"type":45,"value":1995},"[latitude, longitude]",{"type":45,"value":1997}," of the resolved center",{"type":39,"tag":965,"props":1999,"children":2000},{},[2001,2010,2014],{"type":39,"tag":1002,"props":2002,"children":2003},{},[2004],{"type":39,"tag":89,"props":2005,"children":2007},{"className":2006},[],[2008],{"type":45,"value":2009},"location.name",{"type":39,"tag":1002,"props":2011,"children":2012},{},[2013],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2015,"children":2016},{},[2017,2019,2025],{"type":45,"value":2018},"Resolved location name (e.g., ",{"type":39,"tag":89,"props":2020,"children":2022},{"className":2021},[],[2023],{"type":45,"value":2024},"\"Helsinki\"",{"type":45,"value":1437},{"type":39,"tag":965,"props":2027,"children":2028},{},[2029,2038,2042],{"type":39,"tag":1002,"props":2030,"children":2031},{},[2032],{"type":39,"tag":89,"props":2033,"children":2035},{"className":2034},[],[2036],{"type":45,"value":2037},"location.country",{"type":39,"tag":1002,"props":2039,"children":2040},{},[2041],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2043,"children":2044},{},[2045,2047,2053],{"type":45,"value":2046},"Two-letter country code (e.g., ",{"type":39,"tag":89,"props":2048,"children":2050},{"className":2049},[],[2051],{"type":45,"value":2052},"\"FI\"",{"type":45,"value":1437},{"type":39,"tag":52,"props":2055,"children":2056},{},[2057,2059,2064,2066,2071,2073,2078,2079,2084],{"type":45,"value":2058},"Treat a missing bucket as empty. For typical POI-style queries only ",{"type":39,"tag":89,"props":2060,"children":2062},{"className":2061},[],[2063],{"type":45,"value":1330},{"type":45,"value":2065}," is populated, so clients that don't render rich SERPs can ignore the rest — except for address- or street-shaped queries, which can return an empty ",{"type":39,"tag":89,"props":2067,"children":2069},{"className":2068},[],[2070],{"type":45,"value":1330},{"type":45,"value":2072}," and put every match in ",{"type":39,"tag":89,"props":2074,"children":2076},{"className":2075},[],[2077],{"type":45,"value":1338},{"type":45,"value":941},{"type":39,"tag":89,"props":2080,"children":2082},{"className":2081},[],[2083],{"type":45,"value":1345},{"type":45,"value":2085},".",{"type":39,"tag":144,"props":2087,"children":2089},{"id":2088},"locationresult-fields",[2090],{"type":45,"value":2091},"LocationResult Fields",{"type":39,"tag":52,"props":2093,"children":2094},{},[2095,2097,2102,2104,2109],{"type":45,"value":2096},"Each item in ",{"type":39,"tag":89,"props":2098,"children":2100},{"className":2099},[],[2101],{"type":45,"value":1330},{"type":45,"value":2103}," is a ",{"type":39,"tag":89,"props":2105,"children":2107},{"className":2106},[],[2108],{"type":45,"value":1738},{"type":45,"value":2110},":",{"type":39,"tag":957,"props":2112,"children":2113},{},[2114,2132],{"type":39,"tag":961,"props":2115,"children":2116},{},[2117],{"type":39,"tag":965,"props":2118,"children":2119},{},[2120,2124,2128],{"type":39,"tag":969,"props":2121,"children":2122},{},[2123],{"type":45,"value":1673},{"type":39,"tag":969,"props":2125,"children":2126},{},[2127],{"type":45,"value":978},{"type":39,"tag":969,"props":2129,"children":2130},{},[2131],{"type":45,"value":993},{"type":39,"tag":995,"props":2133,"children":2134},{},[2135,2160,2181,2202,2231,2252,2285,2314,2375,2396,2417,2439,2460,2482,2503,2556,2582,2613,2654,2679,2700,2721,2749,2770,2791,2830,2882,2910],{"type":39,"tag":965,"props":2136,"children":2137},{},[2138,2146,2150],{"type":39,"tag":1002,"props":2139,"children":2140},{},[2141],{"type":39,"tag":89,"props":2142,"children":2144},{"className":2143},[],[2145],{"type":45,"value":1696},{"type":39,"tag":1002,"props":2147,"children":2148},{},[2149],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2151,"children":2152},{},[2153,2154],{"type":45,"value":1705},{"type":39,"tag":89,"props":2155,"children":2157},{"className":2156},[],[2158],{"type":45,"value":2159},"\"location_result\"",{"type":39,"tag":965,"props":2161,"children":2162},{},[2163,2172,2176],{"type":39,"tag":1002,"props":2164,"children":2165},{},[2166],{"type":39,"tag":89,"props":2167,"children":2169},{"className":2168},[],[2170],{"type":45,"value":2171},"title",{"type":39,"tag":1002,"props":2173,"children":2174},{},[2175],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2177,"children":2178},{},[2179],{"type":45,"value":2180},"Business\u002FPOI name",{"type":39,"tag":965,"props":2182,"children":2183},{},[2184,2193,2197],{"type":39,"tag":1002,"props":2185,"children":2186},{},[2187],{"type":39,"tag":89,"props":2188,"children":2190},{"className":2189},[],[2191],{"type":45,"value":2192},"url",{"type":39,"tag":1002,"props":2194,"children":2195},{},[2196],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2198,"children":2199},{},[2200],{"type":45,"value":2201},"Canonical URL",{"type":39,"tag":965,"props":2203,"children":2204},{},[2205,2214,2219],{"type":39,"tag":1002,"props":2206,"children":2207},{},[2208],{"type":39,"tag":89,"props":2209,"children":2211},{"className":2210},[],[2212],{"type":45,"value":2213},"description",{"type":39,"tag":1002,"props":2215,"children":2216},{},[2217],{"type":45,"value":2218},"string?",{"type":39,"tag":1002,"props":2220,"children":2221},{},[2222,2224,2230],{"type":45,"value":2223},"Short description or category label (e.g., ",{"type":39,"tag":89,"props":2225,"children":2227},{"className":2226},[],[2228],{"type":45,"value":2229},"\"Coffee Shop\"",{"type":45,"value":1437},{"type":39,"tag":965,"props":2232,"children":2233},{},[2234,2243,2247],{"type":39,"tag":1002,"props":2235,"children":2236},{},[2237],{"type":39,"tag":89,"props":2238,"children":2240},{"className":2239},[],[2241],{"type":45,"value":2242},"provider_url",{"type":39,"tag":1002,"props":2244,"children":2245},{},[2246],{"type":45,"value":1083},{"type":39,"tag":1002,"props":2248,"children":2249},{},[2250],{"type":45,"value":2251},"Provider page URL",{"type":39,"tag":965,"props":2253,"children":2254},{},[2255,2264,2268],{"type":39,"tag":1002,"props":2256,"children":2257},{},[2258],{"type":39,"tag":89,"props":2259,"children":2261},{"className":2260},[],[2262],{"type":45,"value":2263},"id",{"type":39,"tag":1002,"props":2265,"children":2266},{},[2267],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2269,"children":2270},{},[2271,2273,2278,2279,2284],{"type":45,"value":2272},"Opaque POI identifier (valid ~8 hours, usable with ",{"type":39,"tag":89,"props":2274,"children":2276},{"className":2275},[],[2277],{"type":45,"value":118},{"type":45,"value":120},{"type":39,"tag":89,"props":2280,"children":2282},{"className":2281},[],[2283],{"type":45,"value":126},{"type":45,"value":1437},{"type":39,"tag":965,"props":2286,"children":2287},{},[2288,2297,2306],{"type":39,"tag":1002,"props":2289,"children":2290},{},[2291],{"type":39,"tag":89,"props":2292,"children":2294},{"className":2293},[],[2295],{"type":45,"value":2296},"coordinates",{"type":39,"tag":1002,"props":2298,"children":2299},{},[2300,2304],{"type":39,"tag":162,"props":2301,"children":2302},{},[2303],{"type":45,"value":1986},{"type":45,"value":2305},"?",{"type":39,"tag":1002,"props":2307,"children":2308},{},[2309],{"type":39,"tag":89,"props":2310,"children":2312},{"className":2311},[],[2313],{"type":45,"value":1995},{"type":39,"tag":965,"props":2315,"children":2316},{},[2317,2326,2331],{"type":39,"tag":1002,"props":2318,"children":2319},{},[2320],{"type":39,"tag":89,"props":2321,"children":2323},{"className":2322},[],[2324],{"type":45,"value":2325},"postal_address",{"type":39,"tag":1002,"props":2327,"children":2328},{},[2329],{"type":45,"value":2330},"object",{"type":39,"tag":1002,"props":2332,"children":2333},{},[2334,2340,2342,2348,2349,2355,2356,2362,2363,2369,2370],{"type":39,"tag":89,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":45,"value":2339},"displayAddress",{"type":45,"value":2341},", plus optional ",{"type":39,"tag":89,"props":2343,"children":2345},{"className":2344},[],[2346],{"type":45,"value":2347},"streetAddress",{"type":45,"value":934},{"type":39,"tag":89,"props":2350,"children":2352},{"className":2351},[],[2353],{"type":45,"value":2354},"addressLocality",{"type":45,"value":934},{"type":39,"tag":89,"props":2357,"children":2359},{"className":2358},[],[2360],{"type":45,"value":2361},"addressRegion",{"type":45,"value":934},{"type":39,"tag":89,"props":2364,"children":2366},{"className":2365},[],[2367],{"type":45,"value":2368},"postalCode",{"type":45,"value":934},{"type":39,"tag":89,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":45,"value":1407},{"type":39,"tag":965,"props":2376,"children":2377},{},[2378,2387,2391],{"type":39,"tag":1002,"props":2379,"children":2380},{},[2381],{"type":39,"tag":89,"props":2382,"children":2384},{"className":2383},[],[2385],{"type":45,"value":2386},"contact.telephone",{"type":39,"tag":1002,"props":2388,"children":2389},{},[2390],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2392,"children":2393},{},[2394],{"type":45,"value":2395},"Phone number",{"type":39,"tag":965,"props":2397,"children":2398},{},[2399,2408,2412],{"type":39,"tag":1002,"props":2400,"children":2401},{},[2402],{"type":39,"tag":89,"props":2403,"children":2405},{"className":2404},[],[2406],{"type":45,"value":2407},"contact.email",{"type":39,"tag":1002,"props":2409,"children":2410},{},[2411],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2413,"children":2414},{},[2415],{"type":45,"value":2416},"Email address",{"type":39,"tag":965,"props":2418,"children":2419},{},[2420,2429,2434],{"type":39,"tag":1002,"props":2421,"children":2422},{},[2423],{"type":39,"tag":89,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":45,"value":2428},"rating.ratingValue",{"type":39,"tag":1002,"props":2430,"children":2431},{},[2432],{"type":45,"value":2433},"float?",{"type":39,"tag":1002,"props":2435,"children":2436},{},[2437],{"type":45,"value":2438},"Average rating",{"type":39,"tag":965,"props":2440,"children":2441},{},[2442,2451,2455],{"type":39,"tag":1002,"props":2443,"children":2444},{},[2445],{"type":39,"tag":89,"props":2446,"children":2448},{"className":2447},[],[2449],{"type":45,"value":2450},"rating.bestRating",{"type":39,"tag":1002,"props":2452,"children":2453},{},[2454],{"type":45,"value":2433},{"type":39,"tag":1002,"props":2456,"children":2457},{},[2458],{"type":45,"value":2459},"Max possible rating",{"type":39,"tag":965,"props":2461,"children":2462},{},[2463,2472,2477],{"type":39,"tag":1002,"props":2464,"children":2465},{},[2466],{"type":39,"tag":89,"props":2467,"children":2469},{"className":2468},[],[2470],{"type":45,"value":2471},"rating.reviewCount",{"type":39,"tag":1002,"props":2473,"children":2474},{},[2475],{"type":45,"value":2476},"int?",{"type":39,"tag":1002,"props":2478,"children":2479},{},[2480],{"type":45,"value":2481},"Number of reviews",{"type":39,"tag":965,"props":2483,"children":2484},{},[2485,2494,2498],{"type":39,"tag":1002,"props":2486,"children":2487},{},[2488],{"type":39,"tag":89,"props":2489,"children":2491},{"className":2490},[],[2492],{"type":45,"value":2493},"rating.is_tripadvisor",{"type":39,"tag":1002,"props":2495,"children":2496},{},[2497],{"type":45,"value":1629},{"type":39,"tag":1002,"props":2499,"children":2500},{},[2501],{"type":45,"value":2502},"Whether the rating comes from Tripadvisor",{"type":39,"tag":965,"props":2504,"children":2505},{},[2506,2515,2523],{"type":39,"tag":1002,"props":2507,"children":2508},{},[2509],{"type":39,"tag":89,"props":2510,"children":2512},{"className":2511},[],[2513],{"type":45,"value":2514},"opening_hours.current_day",{"type":39,"tag":1002,"props":2516,"children":2517},{},[2518,2519,2522],{"type":45,"value":2330},{"type":39,"tag":162,"props":2520,"children":2521},{},[],{"type":45,"value":2305},{"type":39,"tag":1002,"props":2524,"children":2525},{},[2526,2528,2534,2535,2541,2542,2548,2549,2555],{"type":45,"value":2527},"Today's hours (",{"type":39,"tag":89,"props":2529,"children":2531},{"className":2530},[],[2532],{"type":45,"value":2533},"abbr_name",{"type":45,"value":934},{"type":39,"tag":89,"props":2536,"children":2538},{"className":2537},[],[2539],{"type":45,"value":2540},"full_name",{"type":45,"value":934},{"type":39,"tag":89,"props":2543,"children":2545},{"className":2544},[],[2546],{"type":45,"value":2547},"opens",{"type":45,"value":934},{"type":39,"tag":89,"props":2550,"children":2552},{"className":2551},[],[2553],{"type":45,"value":2554},"closes",{"type":45,"value":1437},{"type":39,"tag":965,"props":2557,"children":2558},{},[2559,2568,2577],{"type":39,"tag":1002,"props":2560,"children":2561},{},[2562],{"type":39,"tag":89,"props":2563,"children":2565},{"className":2564},[],[2566],{"type":45,"value":2567},"opening_hours.days",{"type":39,"tag":1002,"props":2569,"children":2570},{},[2571,2573,2576],{"type":45,"value":2572},"object[]",{"type":39,"tag":162,"props":2574,"children":2575},{},[],{"type":45,"value":2305},{"type":39,"tag":1002,"props":2578,"children":2579},{},[2580],{"type":45,"value":2581},"Hours for each day of the week",{"type":39,"tag":965,"props":2583,"children":2584},{},[2585,2594,2601],{"type":39,"tag":1002,"props":2586,"children":2587},{},[2588],{"type":39,"tag":89,"props":2589,"children":2591},{"className":2590},[],[2592],{"type":45,"value":2593},"categories",{"type":39,"tag":1002,"props":2595,"children":2596},{},[2597,2598],{"type":45,"value":1083},{"type":39,"tag":162,"props":2599,"children":2600},{},[],{"type":39,"tag":1002,"props":2602,"children":2603},{},[2604,2606,2612],{"type":45,"value":2605},"Business categories (default ",{"type":39,"tag":89,"props":2607,"children":2609},{"className":2608},[],[2610],{"type":45,"value":2611},"[]",{"type":45,"value":1437},{"type":39,"tag":965,"props":2614,"children":2615},{},[2616,2625,2629],{"type":39,"tag":1002,"props":2617,"children":2618},{},[2619],{"type":39,"tag":89,"props":2620,"children":2622},{"className":2621},[],[2623],{"type":45,"value":2624},"price_range",{"type":39,"tag":1002,"props":2626,"children":2627},{},[2628],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2630,"children":2631},{},[2632,2634,2640,2641,2647,2648],{"type":45,"value":2633},"Price indicator, e.g. ",{"type":39,"tag":89,"props":2635,"children":2637},{"className":2636},[],[2638],{"type":45,"value":2639},"$",{"type":45,"value":934},{"type":39,"tag":89,"props":2642,"children":2644},{"className":2643},[],[2645],{"type":45,"value":2646},"$$",{"type":45,"value":934},{"type":39,"tag":89,"props":2649,"children":2651},{"className":2650},[],[2652],{"type":45,"value":2653},"$$ - $$$",{"type":39,"tag":965,"props":2655,"children":2656},{},[2657,2666,2674],{"type":39,"tag":1002,"props":2658,"children":2659},{},[2660],{"type":39,"tag":89,"props":2661,"children":2663},{"className":2662},[],[2664],{"type":45,"value":2665},"serves_cuisine",{"type":39,"tag":1002,"props":2667,"children":2668},{},[2669,2670,2673],{"type":45,"value":1083},{"type":39,"tag":162,"props":2671,"children":2672},{},[],{"type":45,"value":2305},{"type":39,"tag":1002,"props":2675,"children":2676},{},[2677],{"type":45,"value":2678},"Cuisine types (restaurants)",{"type":39,"tag":965,"props":2680,"children":2681},{},[2682,2691,2695],{"type":39,"tag":1002,"props":2683,"children":2684},{},[2685],{"type":39,"tag":89,"props":2686,"children":2688},{"className":2687},[],[2689],{"type":45,"value":2690},"distance.value",{"type":39,"tag":1002,"props":2692,"children":2693},{},[2694],{"type":45,"value":2433},{"type":39,"tag":1002,"props":2696,"children":2697},{},[2698],{"type":45,"value":2699},"Distance from the search location",{"type":39,"tag":965,"props":2701,"children":2702},{},[2703,2712,2716],{"type":39,"tag":1002,"props":2704,"children":2705},{},[2706],{"type":39,"tag":89,"props":2707,"children":2709},{"className":2708},[],[2710],{"type":45,"value":2711},"distance.units",{"type":39,"tag":1002,"props":2713,"children":2714},{},[2715],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2717,"children":2718},{},[2719],{"type":45,"value":2720},"Distance unit",{"type":39,"tag":965,"props":2722,"children":2723},{},[2724,2733,2737],{"type":39,"tag":1002,"props":2725,"children":2726},{},[2727],{"type":39,"tag":89,"props":2728,"children":2730},{"className":2729},[],[2731],{"type":45,"value":2732},"icon_category",{"type":39,"tag":1002,"props":2734,"children":2735},{},[2736],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2738,"children":2739},{},[2740,2742,2748],{"type":45,"value":2741},"Icon category slug (e.g., ",{"type":39,"tag":89,"props":2743,"children":2745},{"className":2744},[],[2746],{"type":45,"value":2747},"cafe",{"type":45,"value":1437},{"type":39,"tag":965,"props":2750,"children":2751},{},[2752,2761,2765],{"type":39,"tag":1002,"props":2753,"children":2754},{},[2755],{"type":39,"tag":89,"props":2756,"children":2758},{"className":2757},[],[2759],{"type":45,"value":2760},"thumbnail.src",{"type":39,"tag":1002,"props":2762,"children":2763},{},[2764],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2766,"children":2767},{},[2768],{"type":45,"value":2769},"Thumbnail image URL",{"type":39,"tag":965,"props":2771,"children":2772},{},[2773,2782,2786],{"type":39,"tag":1002,"props":2774,"children":2775},{},[2776],{"type":39,"tag":89,"props":2777,"children":2779},{"className":2778},[],[2780],{"type":45,"value":2781},"thumbnail.original",{"type":39,"tag":1002,"props":2783,"children":2784},{},[2785],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2787,"children":2788},{},[2789],{"type":45,"value":2790},"Original image URL",{"type":39,"tag":965,"props":2792,"children":2793},{},[2794,2803,2811],{"type":39,"tag":1002,"props":2795,"children":2796},{},[2797],{"type":39,"tag":89,"props":2798,"children":2800},{"className":2799},[],[2801],{"type":45,"value":2802},"pictures.results",{"type":39,"tag":1002,"props":2804,"children":2805},{},[2806,2807,2810],{"type":45,"value":2330},{"type":39,"tag":162,"props":2808,"children":2809},{},[],{"type":45,"value":2305},{"type":39,"tag":1002,"props":2812,"children":2813},{},[2814,2816,2822,2823,2829],{"type":45,"value":2815},"Additional images (",{"type":39,"tag":89,"props":2817,"children":2819},{"className":2818},[],[2820],{"type":45,"value":2821},"src",{"type":45,"value":934},{"type":39,"tag":89,"props":2824,"children":2826},{"className":2825},[],[2827],{"type":45,"value":2828},"original",{"type":45,"value":1437},{"type":39,"tag":965,"props":2831,"children":2832},{},[2833,2842,2850],{"type":39,"tag":1002,"props":2834,"children":2835},{},[2836],{"type":39,"tag":89,"props":2837,"children":2839},{"className":2838},[],[2840],{"type":45,"value":2841},"profiles",{"type":39,"tag":1002,"props":2843,"children":2844},{},[2845,2846,2849],{"type":45,"value":2330},{"type":39,"tag":162,"props":2847,"children":2848},{},[],{"type":45,"value":2305},{"type":39,"tag":1002,"props":2851,"children":2852},{},[2853,2855,2861,2862,2867,2868,2874,2875,2881],{"type":45,"value":2854},"External profiles (",{"type":39,"tag":89,"props":2856,"children":2858},{"className":2857},[],[2859],{"type":45,"value":2860},"name",{"type":45,"value":934},{"type":39,"tag":89,"props":2863,"children":2865},{"className":2864},[],[2866],{"type":45,"value":2192},{"type":45,"value":934},{"type":39,"tag":89,"props":2869,"children":2871},{"className":2870},[],[2872],{"type":45,"value":2873},"long_name",{"type":45,"value":934},{"type":39,"tag":89,"props":2876,"children":2878},{"className":2877},[],[2879],{"type":45,"value":2880},"img",{"type":45,"value":1437},{"type":39,"tag":965,"props":2883,"children":2884},{},[2885,2894,2898],{"type":39,"tag":1002,"props":2886,"children":2887},{},[2888],{"type":39,"tag":89,"props":2889,"children":2891},{"className":2890},[],[2892],{"type":45,"value":2893},"timezone",{"type":39,"tag":1002,"props":2895,"children":2896},{},[2897],{"type":45,"value":2218},{"type":39,"tag":1002,"props":2899,"children":2900},{},[2901,2903,2909],{"type":45,"value":2902},"IANA timezone (e.g., ",{"type":39,"tag":89,"props":2904,"children":2906},{"className":2905},[],[2907],{"type":45,"value":2908},"America\u002FLos_Angeles",{"type":45,"value":1437},{"type":39,"tag":965,"props":2911,"children":2912},{},[2913,2922,2926],{"type":39,"tag":1002,"props":2914,"children":2915},{},[2916],{"type":39,"tag":89,"props":2917,"children":2919},{"className":2918},[],[2920],{"type":45,"value":2921},"zoom_level",{"type":39,"tag":1002,"props":2923,"children":2924},{},[2925],{"type":45,"value":1299},{"type":39,"tag":1002,"props":2927,"children":2928},{},[2929,2931,2937],{"type":45,"value":2930},"Suggested map zoom level (default ",{"type":39,"tag":89,"props":2932,"children":2934},{"className":2933},[],[2935],{"type":45,"value":2936},"7",{"type":45,"value":1437},{"type":39,"tag":144,"props":2939,"children":2941},{"id":2940},"geographic-place-fields-cities-countries-regions-neighborhoods",[2942,2944,2949,2950,2955,2956,2961,2962,2967],{"type":45,"value":2943},"Geographic Place Fields (",{"type":39,"tag":89,"props":2945,"children":2947},{"className":2946},[],[2948],{"type":45,"value":1752},{"type":45,"value":934},{"type":39,"tag":89,"props":2951,"children":2953},{"className":2952},[],[2954],{"type":45,"value":1781},{"type":45,"value":934},{"type":39,"tag":89,"props":2957,"children":2959},{"className":2958},[],[2960],{"type":45,"value":1808},{"type":45,"value":934},{"type":39,"tag":89,"props":2963,"children":2965},{"className":2964},[],[2966],{"type":45,"value":1835},{"type":45,"value":1437},{"type":39,"tag":52,"props":2969,"children":2970},{},[2971,2973,2978,2980,2986,2988,2994,2995,3001,3002,3008],{"type":45,"value":2972},"All four buckets share one shape, differing only by the ",{"type":39,"tag":89,"props":2974,"children":2976},{"className":2975},[],[2977],{"type":45,"value":1696},{"type":45,"value":2979}," identifier. The published spec names\nthem ",{"type":39,"tag":89,"props":2981,"children":2983},{"className":2982},[],[2984],{"type":45,"value":2985},"CityResult",{"type":45,"value":2987}," \u002F ",{"type":39,"tag":89,"props":2989,"children":2991},{"className":2990},[],[2992],{"type":45,"value":2993},"CountryResult",{"type":45,"value":2987},{"type":39,"tag":89,"props":2996,"children":2998},{"className":2997},[],[2999],{"type":45,"value":3000},"RegionResult",{"type":45,"value":2987},{"type":39,"tag":89,"props":3003,"children":3005},{"className":3004},[],[3006],{"type":45,"value":3007},"NeighborhoodResult",{"type":45,"value":2085},{"type":39,"tag":957,"props":3010,"children":3011},{},[3012,3030],{"type":39,"tag":961,"props":3013,"children":3014},{},[3015],{"type":39,"tag":965,"props":3016,"children":3017},{},[3018,3022,3026],{"type":39,"tag":969,"props":3019,"children":3020},{},[3021],{"type":45,"value":1673},{"type":39,"tag":969,"props":3023,"children":3024},{},[3025],{"type":45,"value":978},{"type":39,"tag":969,"props":3027,"children":3028},{},[3029],{"type":45,"value":993},{"type":39,"tag":995,"props":3031,"children":3032},{},[3033,3079,3099,3119,3145],{"type":39,"tag":965,"props":3034,"children":3035},{},[3036,3044,3048],{"type":39,"tag":1002,"props":3037,"children":3038},{},[3039],{"type":39,"tag":89,"props":3040,"children":3042},{"className":3041},[],[3043],{"type":45,"value":1696},{"type":39,"tag":1002,"props":3045,"children":3046},{},[3047],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3049,"children":3050},{},[3051,3053,3059,3060,3065,3066,3072,3073],{"type":45,"value":3052},"Bucket identifier: ",{"type":39,"tag":89,"props":3054,"children":3056},{"className":3055},[],[3057],{"type":45,"value":3058},"city",{"type":45,"value":934},{"type":39,"tag":89,"props":3061,"children":3063},{"className":3062},[],[3064],{"type":45,"value":1407},{"type":45,"value":934},{"type":39,"tag":89,"props":3067,"children":3069},{"className":3068},[],[3070],{"type":45,"value":3071},"region",{"type":45,"value":1607},{"type":39,"tag":89,"props":3074,"children":3076},{"className":3075},[],[3077],{"type":45,"value":3078},"neighborhood",{"type":39,"tag":965,"props":3080,"children":3081},{},[3082,3090,3094],{"type":39,"tag":1002,"props":3083,"children":3084},{},[3085],{"type":39,"tag":89,"props":3086,"children":3088},{"className":3087},[],[3089],{"type":45,"value":2860},{"type":39,"tag":1002,"props":3091,"children":3092},{},[3093],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3095,"children":3096},{},[3097],{"type":45,"value":3098},"Place name",{"type":39,"tag":965,"props":3100,"children":3101},{},[3102,3110,3114],{"type":39,"tag":1002,"props":3103,"children":3104},{},[3105],{"type":39,"tag":89,"props":3106,"children":3108},{"className":3107},[],[3109],{"type":45,"value":1407},{"type":39,"tag":1002,"props":3111,"children":3112},{},[3113],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3115,"children":3116},{},[3117],{"type":45,"value":3118},"Country code of the place",{"type":39,"tag":965,"props":3120,"children":3121},{},[3122,3130,3137],{"type":39,"tag":1002,"props":3123,"children":3124},{},[3125],{"type":39,"tag":89,"props":3126,"children":3128},{"className":3127},[],[3129],{"type":45,"value":2296},{"type":39,"tag":1002,"props":3131,"children":3132},{},[3133],{"type":39,"tag":162,"props":3134,"children":3135},{},[3136],{"type":45,"value":1986},{"type":39,"tag":1002,"props":3138,"children":3139},{},[3140],{"type":39,"tag":89,"props":3141,"children":3143},{"className":3142},[],[3144],{"type":45,"value":1995},{"type":39,"tag":965,"props":3146,"children":3147},{},[3148,3156,3160],{"type":39,"tag":1002,"props":3149,"children":3150},{},[3151],{"type":39,"tag":89,"props":3152,"children":3154},{"className":3153},[],[3155],{"type":45,"value":2760},{"type":39,"tag":1002,"props":3157,"children":3158},{},[3159],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3161,"children":3162},{},[3163],{"type":45,"value":3164},"Primary image URL",{"type":39,"tag":144,"props":3166,"children":3168},{"id":3167},"addressresult-fields-addresses-and-streets",[3169,3171,3176,3177,3182],{"type":45,"value":3170},"AddressResult Fields (",{"type":39,"tag":89,"props":3172,"children":3174},{"className":3173},[],[3175],{"type":45,"value":1338},{"type":45,"value":120},{"type":39,"tag":89,"props":3178,"children":3180},{"className":3179},[],[3181],{"type":45,"value":1345},{"type":45,"value":1437},{"type":39,"tag":52,"props":3184,"children":3185},{},[3186,3188,3193,3195,3200,3202,3207,3208,3213],{"type":45,"value":3187},"Same model is used for both buckets. Items in ",{"type":39,"tag":89,"props":3189,"children":3191},{"className":3190},[],[3192],{"type":45,"value":1338},{"type":45,"value":3194}," have ",{"type":39,"tag":89,"props":3196,"children":3198},{"className":3197},[],[3199],{"type":45,"value":1883},{"type":45,"value":3201}," (street + number); items in ",{"type":39,"tag":89,"props":3203,"children":3205},{"className":3204},[],[3206],{"type":45,"value":1345},{"type":45,"value":3194},{"type":39,"tag":89,"props":3209,"children":3211},{"className":3210},[],[3212],{"type":45,"value":1916},{"type":45,"value":3214}," (entire street).",{"type":39,"tag":957,"props":3216,"children":3217},{},[3218,3236],{"type":39,"tag":961,"props":3219,"children":3220},{},[3221],{"type":39,"tag":965,"props":3222,"children":3223},{},[3224,3228,3232],{"type":39,"tag":969,"props":3225,"children":3226},{},[3227],{"type":45,"value":1673},{"type":39,"tag":969,"props":3229,"children":3230},{},[3231],{"type":45,"value":978},{"type":39,"tag":969,"props":3233,"children":3234},{},[3235],{"type":45,"value":993},{"type":39,"tag":995,"props":3237,"children":3238},{},[3239,3285,3305,3331,3367,3400,3426,3445,3464],{"type":39,"tag":965,"props":3240,"children":3241},{},[3242,3250,3254],{"type":39,"tag":1002,"props":3243,"children":3244},{},[3245],{"type":39,"tag":89,"props":3246,"children":3248},{"className":3247},[],[3249],{"type":45,"value":1696},{"type":39,"tag":1002,"props":3251,"children":3252},{},[3253],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3255,"children":3256},{},[3257,3263,3265,3270,3272,3278,3279,3284],{"type":39,"tag":89,"props":3258,"children":3260},{"className":3259},[],[3261],{"type":45,"value":3262},"\"address\"",{"type":45,"value":3264}," (in ",{"type":39,"tag":89,"props":3266,"children":3268},{"className":3267},[],[3269],{"type":45,"value":1338},{"type":45,"value":3271},") or ",{"type":39,"tag":89,"props":3273,"children":3275},{"className":3274},[],[3276],{"type":45,"value":3277},"\"street\"",{"type":45,"value":3264},{"type":39,"tag":89,"props":3280,"children":3282},{"className":3281},[],[3283],{"type":45,"value":1345},{"type":45,"value":1437},{"type":39,"tag":965,"props":3286,"children":3287},{},[3288,3296,3300],{"type":39,"tag":1002,"props":3289,"children":3290},{},[3291],{"type":39,"tag":89,"props":3292,"children":3294},{"className":3293},[],[3295],{"type":45,"value":2860},{"type":39,"tag":1002,"props":3297,"children":3298},{},[3299],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3301,"children":3302},{},[3303],{"type":45,"value":3304},"Display name of the address or street",{"type":39,"tag":965,"props":3306,"children":3307},{},[3308,3316,3323],{"type":39,"tag":1002,"props":3309,"children":3310},{},[3311],{"type":39,"tag":89,"props":3312,"children":3314},{"className":3313},[],[3315],{"type":45,"value":2296},{"type":39,"tag":1002,"props":3317,"children":3318},{},[3319],{"type":39,"tag":162,"props":3320,"children":3321},{},[3322],{"type":45,"value":1986},{"type":39,"tag":1002,"props":3324,"children":3325},{},[3326],{"type":39,"tag":89,"props":3327,"children":3329},{"className":3328},[],[3330],{"type":45,"value":1995},{"type":39,"tag":965,"props":3332,"children":3333},{},[3334,3343,3350],{"type":39,"tag":1002,"props":3335,"children":3336},{},[3337],{"type":39,"tag":89,"props":3338,"children":3340},{"className":3339},[],[3341],{"type":45,"value":3342},"pois",{"type":39,"tag":1002,"props":3344,"children":3345},{},[3346,3347],{"type":45,"value":2330},{"type":39,"tag":162,"props":3348,"children":3349},{},[],{"type":39,"tag":1002,"props":3351,"children":3352},{},[3353,3358,3360,3365],{"type":39,"tag":89,"props":3354,"children":3356},{"className":3355},[],[3357],{"type":45,"value":1738},{"type":45,"value":3359}," objects located ",{"type":39,"tag":56,"props":3361,"children":3362},{},[3363],{"type":45,"value":3364},"at",{"type":45,"value":3366}," this address\u002Fstreet",{"type":39,"tag":965,"props":3368,"children":3369},{},[3370,3379,3386],{"type":39,"tag":1002,"props":3371,"children":3372},{},[3373],{"type":39,"tag":89,"props":3374,"children":3376},{"className":3375},[],[3377],{"type":45,"value":3378},"pois_nearby",{"type":39,"tag":1002,"props":3380,"children":3381},{},[3382,3383],{"type":45,"value":2330},{"type":39,"tag":162,"props":3384,"children":3385},{},[],{"type":39,"tag":1002,"props":3387,"children":3388},{},[3389,3394,3395],{"type":39,"tag":89,"props":3390,"children":3392},{"className":3391},[],[3393],{"type":45,"value":1738},{"type":45,"value":3359},{"type":39,"tag":56,"props":3396,"children":3397},{},[3398],{"type":45,"value":3399},"nearby",{"type":39,"tag":965,"props":3401,"children":3402},{},[3403,3411,3415],{"type":39,"tag":1002,"props":3404,"children":3405},{},[3406],{"type":39,"tag":89,"props":3407,"children":3409},{"className":3408},[],[3410],{"type":45,"value":2921},{"type":39,"tag":1002,"props":3412,"children":3413},{},[3414],{"type":45,"value":1299},{"type":39,"tag":1002,"props":3416,"children":3417},{},[3418,3419,3425],{"type":45,"value":2930},{"type":39,"tag":89,"props":3420,"children":3422},{"className":3421},[],[3423],{"type":45,"value":3424},"15",{"type":45,"value":1437},{"type":39,"tag":965,"props":3427,"children":3428},{},[3429,3437,3441],{"type":39,"tag":1002,"props":3430,"children":3431},{},[3432],{"type":39,"tag":89,"props":3433,"children":3435},{"className":3434},[],[3436],{"type":45,"value":2690},{"type":39,"tag":1002,"props":3438,"children":3439},{},[3440],{"type":45,"value":2433},{"type":39,"tag":1002,"props":3442,"children":3443},{},[3444],{"type":45,"value":2699},{"type":39,"tag":965,"props":3446,"children":3447},{},[3448,3456,3460],{"type":39,"tag":1002,"props":3449,"children":3450},{},[3451],{"type":39,"tag":89,"props":3452,"children":3454},{"className":3453},[],[3455],{"type":45,"value":2711},{"type":39,"tag":1002,"props":3457,"children":3458},{},[3459],{"type":45,"value":2218},{"type":39,"tag":1002,"props":3461,"children":3462},{},[3463],{"type":45,"value":2720},{"type":39,"tag":965,"props":3465,"children":3466},{},[3467,3475,3479],{"type":39,"tag":1002,"props":3468,"children":3469},{},[3470],{"type":39,"tag":89,"props":3471,"children":3473},{"className":3472},[],[3474],{"type":45,"value":2325},{"type":39,"tag":1002,"props":3476,"children":3477},{},[3478],{"type":45,"value":1961},{"type":39,"tag":1002,"props":3480,"children":3481},{},[3482,3487,3488,3493,3494,3499,3500,3505,3506],{"type":39,"tag":89,"props":3483,"children":3485},{"className":3484},[],[3486],{"type":45,"value":2339},{"type":45,"value":934},{"type":39,"tag":89,"props":3489,"children":3491},{"className":3490},[],[3492],{"type":45,"value":2347},{"type":45,"value":934},{"type":39,"tag":89,"props":3495,"children":3497},{"className":3496},[],[3498],{"type":45,"value":2354},{"type":45,"value":934},{"type":39,"tag":89,"props":3501,"children":3503},{"className":3502},[],[3504],{"type":45,"value":2361},{"type":45,"value":934},{"type":39,"tag":89,"props":3507,"children":3509},{"className":3508},[],[3510],{"type":45,"value":1407},{"type":39,"tag":144,"props":3512,"children":3514},{"id":3513},"mixed-ordering-mixed",[3515,3517,3522],{"type":45,"value":3516},"Mixed Ordering (",{"type":39,"tag":89,"props":3518,"children":3520},{"className":3519},[],[3521],{"type":45,"value":1930},{"type":45,"value":1437},{"type":39,"tag":52,"props":3524,"children":3525},{},[3526,3531,3533,3538],{"type":39,"tag":89,"props":3527,"children":3529},{"className":3528},[],[3530],{"type":45,"value":1930},{"type":45,"value":3532}," is an ordered list of ",{"type":39,"tag":89,"props":3534,"children":3536},{"className":3535},[],[3537],{"type":45,"value":1943},{"type":45,"value":3539}," objects telling clients how to interleave items from the different buckets on a single SERP.",{"type":39,"tag":957,"props":3541,"children":3542},{},[3543,3561],{"type":39,"tag":961,"props":3544,"children":3545},{},[3546],{"type":39,"tag":965,"props":3547,"children":3548},{},[3549,3553,3557],{"type":39,"tag":969,"props":3550,"children":3551},{},[3552],{"type":45,"value":1673},{"type":39,"tag":969,"props":3554,"children":3555},{},[3556],{"type":45,"value":978},{"type":39,"tag":969,"props":3558,"children":3559},{},[3560],{"type":45,"value":993},{"type":39,"tag":995,"props":3562,"children":3563},{},[3564,3625,3666],{"type":39,"tag":965,"props":3565,"children":3566},{},[3567,3575,3579],{"type":39,"tag":1002,"props":3568,"children":3569},{},[3570],{"type":39,"tag":89,"props":3571,"children":3573},{"className":3572},[],[3574],{"type":45,"value":1696},{"type":39,"tag":1002,"props":3576,"children":3577},{},[3578],{"type":45,"value":1083},{"type":39,"tag":1002,"props":3580,"children":3581},{},[3582,3584,3589,3590,3595,3596,3601,3602,3607,3608,3613,3614,3619,3620],{"type":45,"value":3583},"Bucket to draw from: ",{"type":39,"tag":89,"props":3585,"children":3587},{"className":3586},[],[3588],{"type":45,"value":1330},{"type":45,"value":934},{"type":39,"tag":89,"props":3591,"children":3593},{"className":3592},[],[3594],{"type":45,"value":1752},{"type":45,"value":934},{"type":39,"tag":89,"props":3597,"children":3599},{"className":3598},[],[3600],{"type":45,"value":1781},{"type":45,"value":934},{"type":39,"tag":89,"props":3603,"children":3605},{"className":3604},[],[3606],{"type":45,"value":1808},{"type":45,"value":934},{"type":39,"tag":89,"props":3609,"children":3611},{"className":3610},[],[3612],{"type":45,"value":1835},{"type":45,"value":934},{"type":39,"tag":89,"props":3615,"children":3617},{"className":3616},[],[3618],{"type":45,"value":1338},{"type":45,"value":1607},{"type":39,"tag":89,"props":3621,"children":3623},{"className":3622},[],[3624],{"type":45,"value":1345},{"type":39,"tag":965,"props":3626,"children":3627},{},[3628,3637,3641],{"type":39,"tag":1002,"props":3629,"children":3630},{},[3631],{"type":39,"tag":89,"props":3632,"children":3634},{"className":3633},[],[3635],{"type":45,"value":3636},"index",{"type":39,"tag":1002,"props":3638,"children":3639},{},[3640],{"type":45,"value":2476},{"type":39,"tag":1002,"props":3642,"children":3643},{},[3644,3646,3652,3654,3659,3661],{"type":45,"value":3645},"0-based index of the item within that bucket. May be ",{"type":39,"tag":89,"props":3647,"children":3649},{"className":3648},[],[3650],{"type":45,"value":3651},"null",{"type":45,"value":3653}," when ",{"type":39,"tag":89,"props":3655,"children":3657},{"className":3656},[],[3658],{"type":45,"value":1322},{"type":45,"value":3660}," is ",{"type":39,"tag":89,"props":3662,"children":3664},{"className":3663},[],[3665],{"type":45,"value":1642},{"type":39,"tag":965,"props":3667,"children":3668},{},[3669,3677,3681],{"type":39,"tag":1002,"props":3670,"children":3671},{},[3672],{"type":39,"tag":89,"props":3673,"children":3675},{"className":3674},[],[3676],{"type":45,"value":1322},{"type":39,"tag":1002,"props":3678,"children":3679},{},[3680],{"type":45,"value":1629},{"type":39,"tag":1002,"props":3682,"children":3683},{},[3684,3686,3691],{"type":45,"value":3685},"When ",{"type":39,"tag":89,"props":3687,"children":3689},{"className":3688},[],[3690],{"type":45,"value":1642},{"type":45,"value":3692},", all remaining items from the named bucket should be placed at this position",{"type":39,"tag":52,"props":3694,"children":3695},{},[3696,3698,3703,3705,3710],{"type":45,"value":3697},"Clients that only render POIs can ignore ",{"type":39,"tag":89,"props":3699,"children":3701},{"className":3700},[],[3702],{"type":45,"value":1930},{"type":45,"value":3704}," entirely and read ",{"type":39,"tag":89,"props":3706,"children":3708},{"className":3707},[],[3709],{"type":45,"value":1330},{"type":45,"value":3711}," directly.",{"type":39,"tag":144,"props":3713,"children":3715},{"id":3714},"example-response",[3716],{"type":45,"value":3717},"Example Response",{"type":39,"tag":151,"props":3719,"children":3723},{"className":3720,"code":3721,"language":3722,"meta":156,"style":156},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"locations\",\n  \"results\": [\n    {\n      \"type\": \"location_result\",\n      \"title\": \"Blue Bottle Coffee\",\n      \"url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fblue-bottle-coffee-sf\",\n      \"provider_url\": \"\",\n      \"id\": \"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\",\n      \"description\": \"Coffee Shop\",\n      \"postal_address\": {\n        \"type\": \"PostalAddress\",\n        \"displayAddress\": \"315 Linden St, San Francisco, CA 94102\"\n      },\n      \"contact\": { \"telephone\": \"+15106533394\" },\n      \"rating\": {\n        \"ratingValue\": 4.3,\n        \"bestRating\": 5.0,\n        \"reviewCount\": 1024,\n        \"is_tripadvisor\": true\n      },\n      \"opening_hours\": {\n        \"current_day\": [\n          { \"abbr_name\": \"Tue\", \"full_name\": \"Tuesday\", \"opens\": \"07:00\", \"closes\": \"18:00\" }\n        ],\n        \"days\": [\n          [{ \"abbr_name\": \"Mon\", \"full_name\": \"Monday\", \"opens\": \"07:00\", \"closes\": \"18:00\" }]\n        ]\n      },\n      \"coordinates\": [37.7763, -122.4215],\n      \"categories\": [],\n      \"serves_cuisine\": [\"Cafe\", \"Coffee Shop\"],\n      \"price_range\": \"$$\",\n      \"icon_category\": \"cafe\",\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fexample.com\u002Fthumb.jpg\",\n        \"original\": \"https:\u002F\u002Fexample.com\u002Foriginal.jpg\"\n      },\n      \"zoom_level\": 7\n    }\n  ],\n  \"cities\": [],\n  \"countries\": [],\n  \"regions\": [],\n  \"neighborhoods\": [],\n  \"addresses\": [],\n  \"streets\": [],\n  \"mixed\": [\n    { \"type\": \"results\", \"index\": 0, \"all\": false }\n  ],\n  \"location\": {\n    \"coordinates\": [37.7749, -122.4194],\n    \"name\": \"San Francisco\",\n    \"country\": \"US\"\n  }\n}\n","json",[3724],{"type":39,"tag":89,"props":3725,"children":3726},{"__ignoreMap":156},[3727,3735,3773,3797,3805,3842,3878,3914,3942,3978,4015,4039,4078,4111,4120,4181,4206,4236,4266,4296,4322,4330,4355,4380,4524,4533,4558,4698,4707,4715,4759,4784,4841,4877,4913,4938,4975,5008,5016,5041,5050,5059,5083,5107,5131,5155,5179,5203,5227,5318,5326,5350,5393,5430,5462,5471],{"type":39,"tag":162,"props":3728,"children":3729},{"class":164,"line":165},[3730],{"type":39,"tag":162,"props":3731,"children":3732},{"style":181},[3733],{"type":45,"value":3734},"{\n",{"type":39,"tag":162,"props":3736,"children":3737},{"class":164,"line":203},[3738,3743,3748,3752,3756,3760,3764,3768],{"type":39,"tag":162,"props":3739,"children":3740},{"style":181},[3741],{"type":45,"value":3742},"  \"",{"type":39,"tag":162,"props":3744,"children":3746},{"style":3745},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[3747],{"type":45,"value":1696},{"type":39,"tag":162,"props":3749,"children":3750},{"style":181},[3751],{"type":45,"value":194},{"type":39,"tag":162,"props":3753,"children":3754},{"style":181},[3755],{"type":45,"value":2110},{"type":39,"tag":162,"props":3757,"children":3758},{"style":181},[3759],{"type":45,"value":184},{"type":39,"tag":162,"props":3761,"children":3762},{"style":175},[3763],{"type":45,"value":94},{"type":39,"tag":162,"props":3765,"children":3766},{"style":181},[3767],{"type":45,"value":194},{"type":39,"tag":162,"props":3769,"children":3770},{"style":181},[3771],{"type":45,"value":3772},",\n",{"type":39,"tag":162,"props":3774,"children":3775},{"class":164,"line":229},[3776,3780,3784,3788,3792],{"type":39,"tag":162,"props":3777,"children":3778},{"style":181},[3779],{"type":45,"value":3742},{"type":39,"tag":162,"props":3781,"children":3782},{"style":3745},[3783],{"type":45,"value":1330},{"type":39,"tag":162,"props":3785,"children":3786},{"style":181},[3787],{"type":45,"value":194},{"type":39,"tag":162,"props":3789,"children":3790},{"style":181},[3791],{"type":45,"value":2110},{"type":39,"tag":162,"props":3793,"children":3794},{"style":181},[3795],{"type":45,"value":3796}," [\n",{"type":39,"tag":162,"props":3798,"children":3799},{"class":164,"line":254},[3800],{"type":39,"tag":162,"props":3801,"children":3802},{"style":181},[3803],{"type":45,"value":3804},"    {\n",{"type":39,"tag":162,"props":3806,"children":3807},{"class":164,"line":290},[3808,3813,3817,3821,3825,3829,3834,3838],{"type":39,"tag":162,"props":3809,"children":3810},{"style":181},[3811],{"type":45,"value":3812},"      \"",{"type":39,"tag":162,"props":3814,"children":3815},{"style":169},[3816],{"type":45,"value":1696},{"type":39,"tag":162,"props":3818,"children":3819},{"style":181},[3820],{"type":45,"value":194},{"type":39,"tag":162,"props":3822,"children":3823},{"style":181},[3824],{"type":45,"value":2110},{"type":39,"tag":162,"props":3826,"children":3827},{"style":181},[3828],{"type":45,"value":184},{"type":39,"tag":162,"props":3830,"children":3831},{"style":175},[3832],{"type":45,"value":3833},"location_result",{"type":39,"tag":162,"props":3835,"children":3836},{"style":181},[3837],{"type":45,"value":194},{"type":39,"tag":162,"props":3839,"children":3840},{"style":181},[3841],{"type":45,"value":3772},{"type":39,"tag":162,"props":3843,"children":3844},{"class":164,"line":303},[3845,3849,3853,3857,3861,3865,3870,3874],{"type":39,"tag":162,"props":3846,"children":3847},{"style":181},[3848],{"type":45,"value":3812},{"type":39,"tag":162,"props":3850,"children":3851},{"style":169},[3852],{"type":45,"value":2171},{"type":39,"tag":162,"props":3854,"children":3855},{"style":181},[3856],{"type":45,"value":194},{"type":39,"tag":162,"props":3858,"children":3859},{"style":181},[3860],{"type":45,"value":2110},{"type":39,"tag":162,"props":3862,"children":3863},{"style":181},[3864],{"type":45,"value":184},{"type":39,"tag":162,"props":3866,"children":3867},{"style":175},[3868],{"type":45,"value":3869},"Blue Bottle Coffee",{"type":39,"tag":162,"props":3871,"children":3872},{"style":181},[3873],{"type":45,"value":194},{"type":39,"tag":162,"props":3875,"children":3876},{"style":181},[3877],{"type":45,"value":3772},{"type":39,"tag":162,"props":3879,"children":3880},{"class":164,"line":329},[3881,3885,3889,3893,3897,3901,3906,3910],{"type":39,"tag":162,"props":3882,"children":3883},{"style":181},[3884],{"type":45,"value":3812},{"type":39,"tag":162,"props":3886,"children":3887},{"style":169},[3888],{"type":45,"value":2192},{"type":39,"tag":162,"props":3890,"children":3891},{"style":181},[3892],{"type":45,"value":194},{"type":39,"tag":162,"props":3894,"children":3895},{"style":181},[3896],{"type":45,"value":2110},{"type":39,"tag":162,"props":3898,"children":3899},{"style":181},[3900],{"type":45,"value":184},{"type":39,"tag":162,"props":3902,"children":3903},{"style":175},[3904],{"type":45,"value":3905},"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fblue-bottle-coffee-sf",{"type":39,"tag":162,"props":3907,"children":3908},{"style":181},[3909],{"type":45,"value":194},{"type":39,"tag":162,"props":3911,"children":3912},{"style":181},[3913],{"type":45,"value":3772},{"type":39,"tag":162,"props":3915,"children":3916},{"class":164,"line":354},[3917,3921,3925,3929,3933,3938],{"type":39,"tag":162,"props":3918,"children":3919},{"style":181},[3920],{"type":45,"value":3812},{"type":39,"tag":162,"props":3922,"children":3923},{"style":169},[3924],{"type":45,"value":2242},{"type":39,"tag":162,"props":3926,"children":3927},{"style":181},[3928],{"type":45,"value":194},{"type":39,"tag":162,"props":3930,"children":3931},{"style":181},[3932],{"type":45,"value":2110},{"type":39,"tag":162,"props":3934,"children":3935},{"style":181},[3936],{"type":45,"value":3937}," \"\"",{"type":39,"tag":162,"props":3939,"children":3940},{"style":181},[3941],{"type":45,"value":3772},{"type":39,"tag":162,"props":3943,"children":3944},{"class":164,"line":379},[3945,3949,3953,3957,3961,3965,3970,3974],{"type":39,"tag":162,"props":3946,"children":3947},{"style":181},[3948],{"type":45,"value":3812},{"type":39,"tag":162,"props":3950,"children":3951},{"style":169},[3952],{"type":45,"value":2263},{"type":39,"tag":162,"props":3954,"children":3955},{"style":181},[3956],{"type":45,"value":194},{"type":39,"tag":162,"props":3958,"children":3959},{"style":181},[3960],{"type":45,"value":2110},{"type":39,"tag":162,"props":3962,"children":3963},{"style":181},[3964],{"type":45,"value":184},{"type":39,"tag":162,"props":3966,"children":3967},{"style":175},[3968],{"type":45,"value":3969},"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=",{"type":39,"tag":162,"props":3971,"children":3972},{"style":181},[3973],{"type":45,"value":194},{"type":39,"tag":162,"props":3975,"children":3976},{"style":181},[3977],{"type":45,"value":3772},{"type":39,"tag":162,"props":3979,"children":3981},{"class":164,"line":3980},10,[3982,3986,3990,3994,3998,4002,4007,4011],{"type":39,"tag":162,"props":3983,"children":3984},{"style":181},[3985],{"type":45,"value":3812},{"type":39,"tag":162,"props":3987,"children":3988},{"style":169},[3989],{"type":45,"value":2213},{"type":39,"tag":162,"props":3991,"children":3992},{"style":181},[3993],{"type":45,"value":194},{"type":39,"tag":162,"props":3995,"children":3996},{"style":181},[3997],{"type":45,"value":2110},{"type":39,"tag":162,"props":3999,"children":4000},{"style":181},[4001],{"type":45,"value":184},{"type":39,"tag":162,"props":4003,"children":4004},{"style":175},[4005],{"type":45,"value":4006},"Coffee Shop",{"type":39,"tag":162,"props":4008,"children":4009},{"style":181},[4010],{"type":45,"value":194},{"type":39,"tag":162,"props":4012,"children":4013},{"style":181},[4014],{"type":45,"value":3772},{"type":39,"tag":162,"props":4016,"children":4017},{"class":164,"line":26},[4018,4022,4026,4030,4034],{"type":39,"tag":162,"props":4019,"children":4020},{"style":181},[4021],{"type":45,"value":3812},{"type":39,"tag":162,"props":4023,"children":4024},{"style":169},[4025],{"type":45,"value":2325},{"type":39,"tag":162,"props":4027,"children":4028},{"style":181},[4029],{"type":45,"value":194},{"type":39,"tag":162,"props":4031,"children":4032},{"style":181},[4033],{"type":45,"value":2110},{"type":39,"tag":162,"props":4035,"children":4036},{"style":181},[4037],{"type":45,"value":4038}," {\n",{"type":39,"tag":162,"props":4040,"children":4042},{"class":164,"line":4041},12,[4043,4048,4053,4057,4061,4065,4070,4074],{"type":39,"tag":162,"props":4044,"children":4045},{"style":181},[4046],{"type":45,"value":4047},"        \"",{"type":39,"tag":162,"props":4049,"children":4051},{"style":4050},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[4052],{"type":45,"value":1696},{"type":39,"tag":162,"props":4054,"children":4055},{"style":181},[4056],{"type":45,"value":194},{"type":39,"tag":162,"props":4058,"children":4059},{"style":181},[4060],{"type":45,"value":2110},{"type":39,"tag":162,"props":4062,"children":4063},{"style":181},[4064],{"type":45,"value":184},{"type":39,"tag":162,"props":4066,"children":4067},{"style":175},[4068],{"type":45,"value":4069},"PostalAddress",{"type":39,"tag":162,"props":4071,"children":4072},{"style":181},[4073],{"type":45,"value":194},{"type":39,"tag":162,"props":4075,"children":4076},{"style":181},[4077],{"type":45,"value":3772},{"type":39,"tag":162,"props":4079,"children":4081},{"class":164,"line":4080},13,[4082,4086,4090,4094,4098,4102,4107],{"type":39,"tag":162,"props":4083,"children":4084},{"style":181},[4085],{"type":45,"value":4047},{"type":39,"tag":162,"props":4087,"children":4088},{"style":4050},[4089],{"type":45,"value":2339},{"type":39,"tag":162,"props":4091,"children":4092},{"style":181},[4093],{"type":45,"value":194},{"type":39,"tag":162,"props":4095,"children":4096},{"style":181},[4097],{"type":45,"value":2110},{"type":39,"tag":162,"props":4099,"children":4100},{"style":181},[4101],{"type":45,"value":184},{"type":39,"tag":162,"props":4103,"children":4104},{"style":175},[4105],{"type":45,"value":4106},"315 Linden St, San Francisco, CA 94102",{"type":39,"tag":162,"props":4108,"children":4109},{"style":181},[4110],{"type":45,"value":398},{"type":39,"tag":162,"props":4112,"children":4114},{"class":164,"line":4113},14,[4115],{"type":39,"tag":162,"props":4116,"children":4117},{"style":181},[4118],{"type":45,"value":4119},"      },\n",{"type":39,"tag":162,"props":4121,"children":4123},{"class":164,"line":4122},15,[4124,4128,4133,4137,4141,4146,4150,4155,4159,4163,4167,4172,4176],{"type":39,"tag":162,"props":4125,"children":4126},{"style":181},[4127],{"type":45,"value":3812},{"type":39,"tag":162,"props":4129,"children":4130},{"style":169},[4131],{"type":45,"value":4132},"contact",{"type":39,"tag":162,"props":4134,"children":4135},{"style":181},[4136],{"type":45,"value":194},{"type":39,"tag":162,"props":4138,"children":4139},{"style":181},[4140],{"type":45,"value":2110},{"type":39,"tag":162,"props":4142,"children":4143},{"style":181},[4144],{"type":45,"value":4145}," {",{"type":39,"tag":162,"props":4147,"children":4148},{"style":181},[4149],{"type":45,"value":184},{"type":39,"tag":162,"props":4151,"children":4152},{"style":4050},[4153],{"type":45,"value":4154},"telephone",{"type":39,"tag":162,"props":4156,"children":4157},{"style":181},[4158],{"type":45,"value":194},{"type":39,"tag":162,"props":4160,"children":4161},{"style":181},[4162],{"type":45,"value":2110},{"type":39,"tag":162,"props":4164,"children":4165},{"style":181},[4166],{"type":45,"value":184},{"type":39,"tag":162,"props":4168,"children":4169},{"style":175},[4170],{"type":45,"value":4171},"+15106533394",{"type":39,"tag":162,"props":4173,"children":4174},{"style":181},[4175],{"type":45,"value":194},{"type":39,"tag":162,"props":4177,"children":4178},{"style":181},[4179],{"type":45,"value":4180}," },\n",{"type":39,"tag":162,"props":4182,"children":4184},{"class":164,"line":4183},16,[4185,4189,4194,4198,4202],{"type":39,"tag":162,"props":4186,"children":4187},{"style":181},[4188],{"type":45,"value":3812},{"type":39,"tag":162,"props":4190,"children":4191},{"style":169},[4192],{"type":45,"value":4193},"rating",{"type":39,"tag":162,"props":4195,"children":4196},{"style":181},[4197],{"type":45,"value":194},{"type":39,"tag":162,"props":4199,"children":4200},{"style":181},[4201],{"type":45,"value":2110},{"type":39,"tag":162,"props":4203,"children":4204},{"style":181},[4205],{"type":45,"value":4038},{"type":39,"tag":162,"props":4207,"children":4209},{"class":164,"line":4208},17,[4210,4214,4219,4223,4227,4232],{"type":39,"tag":162,"props":4211,"children":4212},{"style":181},[4213],{"type":45,"value":4047},{"type":39,"tag":162,"props":4215,"children":4216},{"style":4050},[4217],{"type":45,"value":4218},"ratingValue",{"type":39,"tag":162,"props":4220,"children":4221},{"style":181},[4222],{"type":45,"value":194},{"type":39,"tag":162,"props":4224,"children":4225},{"style":181},[4226],{"type":45,"value":2110},{"type":39,"tag":162,"props":4228,"children":4229},{"style":4050},[4230],{"type":45,"value":4231}," 4.3",{"type":39,"tag":162,"props":4233,"children":4234},{"style":181},[4235],{"type":45,"value":3772},{"type":39,"tag":162,"props":4237,"children":4239},{"class":164,"line":4238},18,[4240,4244,4249,4253,4257,4262],{"type":39,"tag":162,"props":4241,"children":4242},{"style":181},[4243],{"type":45,"value":4047},{"type":39,"tag":162,"props":4245,"children":4246},{"style":4050},[4247],{"type":45,"value":4248},"bestRating",{"type":39,"tag":162,"props":4250,"children":4251},{"style":181},[4252],{"type":45,"value":194},{"type":39,"tag":162,"props":4254,"children":4255},{"style":181},[4256],{"type":45,"value":2110},{"type":39,"tag":162,"props":4258,"children":4259},{"style":4050},[4260],{"type":45,"value":4261}," 5.0",{"type":39,"tag":162,"props":4263,"children":4264},{"style":181},[4265],{"type":45,"value":3772},{"type":39,"tag":162,"props":4267,"children":4269},{"class":164,"line":4268},19,[4270,4274,4279,4283,4287,4292],{"type":39,"tag":162,"props":4271,"children":4272},{"style":181},[4273],{"type":45,"value":4047},{"type":39,"tag":162,"props":4275,"children":4276},{"style":4050},[4277],{"type":45,"value":4278},"reviewCount",{"type":39,"tag":162,"props":4280,"children":4281},{"style":181},[4282],{"type":45,"value":194},{"type":39,"tag":162,"props":4284,"children":4285},{"style":181},[4286],{"type":45,"value":2110},{"type":39,"tag":162,"props":4288,"children":4289},{"style":4050},[4290],{"type":45,"value":4291}," 1024",{"type":39,"tag":162,"props":4293,"children":4294},{"style":181},[4295],{"type":45,"value":3772},{"type":39,"tag":162,"props":4297,"children":4299},{"class":164,"line":4298},20,[4300,4304,4309,4313,4317],{"type":39,"tag":162,"props":4301,"children":4302},{"style":181},[4303],{"type":45,"value":4047},{"type":39,"tag":162,"props":4305,"children":4306},{"style":4050},[4307],{"type":45,"value":4308},"is_tripadvisor",{"type":39,"tag":162,"props":4310,"children":4311},{"style":181},[4312],{"type":45,"value":194},{"type":39,"tag":162,"props":4314,"children":4315},{"style":181},[4316],{"type":45,"value":2110},{"type":39,"tag":162,"props":4318,"children":4319},{"style":181},[4320],{"type":45,"value":4321}," true\n",{"type":39,"tag":162,"props":4323,"children":4325},{"class":164,"line":4324},21,[4326],{"type":39,"tag":162,"props":4327,"children":4328},{"style":181},[4329],{"type":45,"value":4119},{"type":39,"tag":162,"props":4331,"children":4333},{"class":164,"line":4332},22,[4334,4338,4343,4347,4351],{"type":39,"tag":162,"props":4335,"children":4336},{"style":181},[4337],{"type":45,"value":3812},{"type":39,"tag":162,"props":4339,"children":4340},{"style":169},[4341],{"type":45,"value":4342},"opening_hours",{"type":39,"tag":162,"props":4344,"children":4345},{"style":181},[4346],{"type":45,"value":194},{"type":39,"tag":162,"props":4348,"children":4349},{"style":181},[4350],{"type":45,"value":2110},{"type":39,"tag":162,"props":4352,"children":4353},{"style":181},[4354],{"type":45,"value":4038},{"type":39,"tag":162,"props":4356,"children":4358},{"class":164,"line":4357},23,[4359,4363,4368,4372,4376],{"type":39,"tag":162,"props":4360,"children":4361},{"style":181},[4362],{"type":45,"value":4047},{"type":39,"tag":162,"props":4364,"children":4365},{"style":4050},[4366],{"type":45,"value":4367},"current_day",{"type":39,"tag":162,"props":4369,"children":4370},{"style":181},[4371],{"type":45,"value":194},{"type":39,"tag":162,"props":4373,"children":4374},{"style":181},[4375],{"type":45,"value":2110},{"type":39,"tag":162,"props":4377,"children":4378},{"style":181},[4379],{"type":45,"value":3796},{"type":39,"tag":162,"props":4381,"children":4383},{"class":164,"line":4382},24,[4384,4389,4393,4398,4402,4406,4410,4415,4419,4424,4428,4432,4436,4440,4444,4449,4453,4457,4461,4465,4469,4473,4477,4482,4486,4490,4494,4498,4502,4506,4510,4515,4519],{"type":39,"tag":162,"props":4385,"children":4386},{"style":181},[4387],{"type":45,"value":4388},"          {",{"type":39,"tag":162,"props":4390,"children":4391},{"style":181},[4392],{"type":45,"value":184},{"type":39,"tag":162,"props":4394,"children":4396},{"style":4395},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[4397],{"type":45,"value":2533},{"type":39,"tag":162,"props":4399,"children":4400},{"style":181},[4401],{"type":45,"value":194},{"type":39,"tag":162,"props":4403,"children":4404},{"style":181},[4405],{"type":45,"value":2110},{"type":39,"tag":162,"props":4407,"children":4408},{"style":181},[4409],{"type":45,"value":184},{"type":39,"tag":162,"props":4411,"children":4412},{"style":175},[4413],{"type":45,"value":4414},"Tue",{"type":39,"tag":162,"props":4416,"children":4417},{"style":181},[4418],{"type":45,"value":194},{"type":39,"tag":162,"props":4420,"children":4421},{"style":181},[4422],{"type":45,"value":4423},",",{"type":39,"tag":162,"props":4425,"children":4426},{"style":181},[4427],{"type":45,"value":184},{"type":39,"tag":162,"props":4429,"children":4430},{"style":4395},[4431],{"type":45,"value":2540},{"type":39,"tag":162,"props":4433,"children":4434},{"style":181},[4435],{"type":45,"value":194},{"type":39,"tag":162,"props":4437,"children":4438},{"style":181},[4439],{"type":45,"value":2110},{"type":39,"tag":162,"props":4441,"children":4442},{"style":181},[4443],{"type":45,"value":184},{"type":39,"tag":162,"props":4445,"children":4446},{"style":175},[4447],{"type":45,"value":4448},"Tuesday",{"type":39,"tag":162,"props":4450,"children":4451},{"style":181},[4452],{"type":45,"value":194},{"type":39,"tag":162,"props":4454,"children":4455},{"style":181},[4456],{"type":45,"value":4423},{"type":39,"tag":162,"props":4458,"children":4459},{"style":181},[4460],{"type":45,"value":184},{"type":39,"tag":162,"props":4462,"children":4463},{"style":4395},[4464],{"type":45,"value":2547},{"type":39,"tag":162,"props":4466,"children":4467},{"style":181},[4468],{"type":45,"value":194},{"type":39,"tag":162,"props":4470,"children":4471},{"style":181},[4472],{"type":45,"value":2110},{"type":39,"tag":162,"props":4474,"children":4475},{"style":181},[4476],{"type":45,"value":184},{"type":39,"tag":162,"props":4478,"children":4479},{"style":175},[4480],{"type":45,"value":4481},"07:00",{"type":39,"tag":162,"props":4483,"children":4484},{"style":181},[4485],{"type":45,"value":194},{"type":39,"tag":162,"props":4487,"children":4488},{"style":181},[4489],{"type":45,"value":4423},{"type":39,"tag":162,"props":4491,"children":4492},{"style":181},[4493],{"type":45,"value":184},{"type":39,"tag":162,"props":4495,"children":4496},{"style":4395},[4497],{"type":45,"value":2554},{"type":39,"tag":162,"props":4499,"children":4500},{"style":181},[4501],{"type":45,"value":194},{"type":39,"tag":162,"props":4503,"children":4504},{"style":181},[4505],{"type":45,"value":2110},{"type":39,"tag":162,"props":4507,"children":4508},{"style":181},[4509],{"type":45,"value":184},{"type":39,"tag":162,"props":4511,"children":4512},{"style":175},[4513],{"type":45,"value":4514},"18:00",{"type":39,"tag":162,"props":4516,"children":4517},{"style":181},[4518],{"type":45,"value":194},{"type":39,"tag":162,"props":4520,"children":4521},{"style":181},[4522],{"type":45,"value":4523}," }\n",{"type":39,"tag":162,"props":4525,"children":4527},{"class":164,"line":4526},25,[4528],{"type":39,"tag":162,"props":4529,"children":4530},{"style":181},[4531],{"type":45,"value":4532},"        ],\n",{"type":39,"tag":162,"props":4534,"children":4536},{"class":164,"line":4535},26,[4537,4541,4546,4550,4554],{"type":39,"tag":162,"props":4538,"children":4539},{"style":181},[4540],{"type":45,"value":4047},{"type":39,"tag":162,"props":4542,"children":4543},{"style":4050},[4544],{"type":45,"value":4545},"days",{"type":39,"tag":162,"props":4547,"children":4548},{"style":181},[4549],{"type":45,"value":194},{"type":39,"tag":162,"props":4551,"children":4552},{"style":181},[4553],{"type":45,"value":2110},{"type":39,"tag":162,"props":4555,"children":4556},{"style":181},[4557],{"type":45,"value":3796},{"type":39,"tag":162,"props":4559,"children":4561},{"class":164,"line":4560},27,[4562,4567,4571,4575,4579,4583,4587,4592,4596,4600,4604,4608,4612,4616,4620,4625,4629,4633,4637,4641,4645,4649,4653,4657,4661,4665,4669,4673,4677,4681,4685,4689,4693],{"type":39,"tag":162,"props":4563,"children":4564},{"style":181},[4565],{"type":45,"value":4566},"          [{",{"type":39,"tag":162,"props":4568,"children":4569},{"style":181},[4570],{"type":45,"value":184},{"type":39,"tag":162,"props":4572,"children":4573},{"style":4395},[4574],{"type":45,"value":2533},{"type":39,"tag":162,"props":4576,"children":4577},{"style":181},[4578],{"type":45,"value":194},{"type":39,"tag":162,"props":4580,"children":4581},{"style":181},[4582],{"type":45,"value":2110},{"type":39,"tag":162,"props":4584,"children":4585},{"style":181},[4586],{"type":45,"value":184},{"type":39,"tag":162,"props":4588,"children":4589},{"style":175},[4590],{"type":45,"value":4591},"Mon",{"type":39,"tag":162,"props":4593,"children":4594},{"style":181},[4595],{"type":45,"value":194},{"type":39,"tag":162,"props":4597,"children":4598},{"style":181},[4599],{"type":45,"value":4423},{"type":39,"tag":162,"props":4601,"children":4602},{"style":181},[4603],{"type":45,"value":184},{"type":39,"tag":162,"props":4605,"children":4606},{"style":4395},[4607],{"type":45,"value":2540},{"type":39,"tag":162,"props":4609,"children":4610},{"style":181},[4611],{"type":45,"value":194},{"type":39,"tag":162,"props":4613,"children":4614},{"style":181},[4615],{"type":45,"value":2110},{"type":39,"tag":162,"props":4617,"children":4618},{"style":181},[4619],{"type":45,"value":184},{"type":39,"tag":162,"props":4621,"children":4622},{"style":175},[4623],{"type":45,"value":4624},"Monday",{"type":39,"tag":162,"props":4626,"children":4627},{"style":181},[4628],{"type":45,"value":194},{"type":39,"tag":162,"props":4630,"children":4631},{"style":181},[4632],{"type":45,"value":4423},{"type":39,"tag":162,"props":4634,"children":4635},{"style":181},[4636],{"type":45,"value":184},{"type":39,"tag":162,"props":4638,"children":4639},{"style":4395},[4640],{"type":45,"value":2547},{"type":39,"tag":162,"props":4642,"children":4643},{"style":181},[4644],{"type":45,"value":194},{"type":39,"tag":162,"props":4646,"children":4647},{"style":181},[4648],{"type":45,"value":2110},{"type":39,"tag":162,"props":4650,"children":4651},{"style":181},[4652],{"type":45,"value":184},{"type":39,"tag":162,"props":4654,"children":4655},{"style":175},[4656],{"type":45,"value":4481},{"type":39,"tag":162,"props":4658,"children":4659},{"style":181},[4660],{"type":45,"value":194},{"type":39,"tag":162,"props":4662,"children":4663},{"style":181},[4664],{"type":45,"value":4423},{"type":39,"tag":162,"props":4666,"children":4667},{"style":181},[4668],{"type":45,"value":184},{"type":39,"tag":162,"props":4670,"children":4671},{"style":4395},[4672],{"type":45,"value":2554},{"type":39,"tag":162,"props":4674,"children":4675},{"style":181},[4676],{"type":45,"value":194},{"type":39,"tag":162,"props":4678,"children":4679},{"style":181},[4680],{"type":45,"value":2110},{"type":39,"tag":162,"props":4682,"children":4683},{"style":181},[4684],{"type":45,"value":184},{"type":39,"tag":162,"props":4686,"children":4687},{"style":175},[4688],{"type":45,"value":4514},{"type":39,"tag":162,"props":4690,"children":4691},{"style":181},[4692],{"type":45,"value":194},{"type":39,"tag":162,"props":4694,"children":4695},{"style":181},[4696],{"type":45,"value":4697}," }]\n",{"type":39,"tag":162,"props":4699,"children":4701},{"class":164,"line":4700},28,[4702],{"type":39,"tag":162,"props":4703,"children":4704},{"style":181},[4705],{"type":45,"value":4706},"        ]\n",{"type":39,"tag":162,"props":4708,"children":4710},{"class":164,"line":4709},29,[4711],{"type":39,"tag":162,"props":4712,"children":4713},{"style":181},[4714],{"type":45,"value":4119},{"type":39,"tag":162,"props":4716,"children":4718},{"class":164,"line":4717},30,[4719,4723,4727,4731,4735,4740,4745,4749,4754],{"type":39,"tag":162,"props":4720,"children":4721},{"style":181},[4722],{"type":45,"value":3812},{"type":39,"tag":162,"props":4724,"children":4725},{"style":169},[4726],{"type":45,"value":2296},{"type":39,"tag":162,"props":4728,"children":4729},{"style":181},[4730],{"type":45,"value":194},{"type":39,"tag":162,"props":4732,"children":4733},{"style":181},[4734],{"type":45,"value":2110},{"type":39,"tag":162,"props":4736,"children":4737},{"style":181},[4738],{"type":45,"value":4739}," [",{"type":39,"tag":162,"props":4741,"children":4742},{"style":4050},[4743],{"type":45,"value":4744},"37.7763",{"type":39,"tag":162,"props":4746,"children":4747},{"style":181},[4748],{"type":45,"value":4423},{"type":39,"tag":162,"props":4750,"children":4751},{"style":4050},[4752],{"type":45,"value":4753}," -122.4215",{"type":39,"tag":162,"props":4755,"children":4756},{"style":181},[4757],{"type":45,"value":4758},"],\n",{"type":39,"tag":162,"props":4760,"children":4762},{"class":164,"line":4761},31,[4763,4767,4771,4775,4779],{"type":39,"tag":162,"props":4764,"children":4765},{"style":181},[4766],{"type":45,"value":3812},{"type":39,"tag":162,"props":4768,"children":4769},{"style":169},[4770],{"type":45,"value":2593},{"type":39,"tag":162,"props":4772,"children":4773},{"style":181},[4774],{"type":45,"value":194},{"type":39,"tag":162,"props":4776,"children":4777},{"style":181},[4778],{"type":45,"value":2110},{"type":39,"tag":162,"props":4780,"children":4781},{"style":181},[4782],{"type":45,"value":4783}," [],\n",{"type":39,"tag":162,"props":4785,"children":4787},{"class":164,"line":4786},32,[4788,4792,4796,4800,4804,4808,4812,4817,4821,4825,4829,4833,4837],{"type":39,"tag":162,"props":4789,"children":4790},{"style":181},[4791],{"type":45,"value":3812},{"type":39,"tag":162,"props":4793,"children":4794},{"style":169},[4795],{"type":45,"value":2665},{"type":39,"tag":162,"props":4797,"children":4798},{"style":181},[4799],{"type":45,"value":194},{"type":39,"tag":162,"props":4801,"children":4802},{"style":181},[4803],{"type":45,"value":2110},{"type":39,"tag":162,"props":4805,"children":4806},{"style":181},[4807],{"type":45,"value":4739},{"type":39,"tag":162,"props":4809,"children":4810},{"style":181},[4811],{"type":45,"value":194},{"type":39,"tag":162,"props":4813,"children":4814},{"style":175},[4815],{"type":45,"value":4816},"Cafe",{"type":39,"tag":162,"props":4818,"children":4819},{"style":181},[4820],{"type":45,"value":194},{"type":39,"tag":162,"props":4822,"children":4823},{"style":181},[4824],{"type":45,"value":4423},{"type":39,"tag":162,"props":4826,"children":4827},{"style":181},[4828],{"type":45,"value":184},{"type":39,"tag":162,"props":4830,"children":4831},{"style":175},[4832],{"type":45,"value":4006},{"type":39,"tag":162,"props":4834,"children":4835},{"style":181},[4836],{"type":45,"value":194},{"type":39,"tag":162,"props":4838,"children":4839},{"style":181},[4840],{"type":45,"value":4758},{"type":39,"tag":162,"props":4842,"children":4844},{"class":164,"line":4843},33,[4845,4849,4853,4857,4861,4865,4869,4873],{"type":39,"tag":162,"props":4846,"children":4847},{"style":181},[4848],{"type":45,"value":3812},{"type":39,"tag":162,"props":4850,"children":4851},{"style":169},[4852],{"type":45,"value":2624},{"type":39,"tag":162,"props":4854,"children":4855},{"style":181},[4856],{"type":45,"value":194},{"type":39,"tag":162,"props":4858,"children":4859},{"style":181},[4860],{"type":45,"value":2110},{"type":39,"tag":162,"props":4862,"children":4863},{"style":181},[4864],{"type":45,"value":184},{"type":39,"tag":162,"props":4866,"children":4867},{"style":175},[4868],{"type":45,"value":2646},{"type":39,"tag":162,"props":4870,"children":4871},{"style":181},[4872],{"type":45,"value":194},{"type":39,"tag":162,"props":4874,"children":4875},{"style":181},[4876],{"type":45,"value":3772},{"type":39,"tag":162,"props":4878,"children":4880},{"class":164,"line":4879},34,[4881,4885,4889,4893,4897,4901,4905,4909],{"type":39,"tag":162,"props":4882,"children":4883},{"style":181},[4884],{"type":45,"value":3812},{"type":39,"tag":162,"props":4886,"children":4887},{"style":169},[4888],{"type":45,"value":2732},{"type":39,"tag":162,"props":4890,"children":4891},{"style":181},[4892],{"type":45,"value":194},{"type":39,"tag":162,"props":4894,"children":4895},{"style":181},[4896],{"type":45,"value":2110},{"type":39,"tag":162,"props":4898,"children":4899},{"style":181},[4900],{"type":45,"value":184},{"type":39,"tag":162,"props":4902,"children":4903},{"style":175},[4904],{"type":45,"value":2747},{"type":39,"tag":162,"props":4906,"children":4907},{"style":181},[4908],{"type":45,"value":194},{"type":39,"tag":162,"props":4910,"children":4911},{"style":181},[4912],{"type":45,"value":3772},{"type":39,"tag":162,"props":4914,"children":4916},{"class":164,"line":4915},35,[4917,4921,4926,4930,4934],{"type":39,"tag":162,"props":4918,"children":4919},{"style":181},[4920],{"type":45,"value":3812},{"type":39,"tag":162,"props":4922,"children":4923},{"style":169},[4924],{"type":45,"value":4925},"thumbnail",{"type":39,"tag":162,"props":4927,"children":4928},{"style":181},[4929],{"type":45,"value":194},{"type":39,"tag":162,"props":4931,"children":4932},{"style":181},[4933],{"type":45,"value":2110},{"type":39,"tag":162,"props":4935,"children":4936},{"style":181},[4937],{"type":45,"value":4038},{"type":39,"tag":162,"props":4939,"children":4941},{"class":164,"line":4940},36,[4942,4946,4950,4954,4958,4962,4967,4971],{"type":39,"tag":162,"props":4943,"children":4944},{"style":181},[4945],{"type":45,"value":4047},{"type":39,"tag":162,"props":4947,"children":4948},{"style":4050},[4949],{"type":45,"value":2821},{"type":39,"tag":162,"props":4951,"children":4952},{"style":181},[4953],{"type":45,"value":194},{"type":39,"tag":162,"props":4955,"children":4956},{"style":181},[4957],{"type":45,"value":2110},{"type":39,"tag":162,"props":4959,"children":4960},{"style":181},[4961],{"type":45,"value":184},{"type":39,"tag":162,"props":4963,"children":4964},{"style":175},[4965],{"type":45,"value":4966},"https:\u002F\u002Fexample.com\u002Fthumb.jpg",{"type":39,"tag":162,"props":4968,"children":4969},{"style":181},[4970],{"type":45,"value":194},{"type":39,"tag":162,"props":4972,"children":4973},{"style":181},[4974],{"type":45,"value":3772},{"type":39,"tag":162,"props":4976,"children":4978},{"class":164,"line":4977},37,[4979,4983,4987,4991,4995,4999,5004],{"type":39,"tag":162,"props":4980,"children":4981},{"style":181},[4982],{"type":45,"value":4047},{"type":39,"tag":162,"props":4984,"children":4985},{"style":4050},[4986],{"type":45,"value":2828},{"type":39,"tag":162,"props":4988,"children":4989},{"style":181},[4990],{"type":45,"value":194},{"type":39,"tag":162,"props":4992,"children":4993},{"style":181},[4994],{"type":45,"value":2110},{"type":39,"tag":162,"props":4996,"children":4997},{"style":181},[4998],{"type":45,"value":184},{"type":39,"tag":162,"props":5000,"children":5001},{"style":175},[5002],{"type":45,"value":5003},"https:\u002F\u002Fexample.com\u002Foriginal.jpg",{"type":39,"tag":162,"props":5005,"children":5006},{"style":181},[5007],{"type":45,"value":398},{"type":39,"tag":162,"props":5009,"children":5011},{"class":164,"line":5010},38,[5012],{"type":39,"tag":162,"props":5013,"children":5014},{"style":181},[5015],{"type":45,"value":4119},{"type":39,"tag":162,"props":5017,"children":5019},{"class":164,"line":5018},39,[5020,5024,5028,5032,5036],{"type":39,"tag":162,"props":5021,"children":5022},{"style":181},[5023],{"type":45,"value":3812},{"type":39,"tag":162,"props":5025,"children":5026},{"style":169},[5027],{"type":45,"value":2921},{"type":39,"tag":162,"props":5029,"children":5030},{"style":181},[5031],{"type":45,"value":194},{"type":39,"tag":162,"props":5033,"children":5034},{"style":181},[5035],{"type":45,"value":2110},{"type":39,"tag":162,"props":5037,"children":5038},{"style":4050},[5039],{"type":45,"value":5040}," 7\n",{"type":39,"tag":162,"props":5042,"children":5044},{"class":164,"line":5043},40,[5045],{"type":39,"tag":162,"props":5046,"children":5047},{"style":181},[5048],{"type":45,"value":5049},"    }\n",{"type":39,"tag":162,"props":5051,"children":5053},{"class":164,"line":5052},41,[5054],{"type":39,"tag":162,"props":5055,"children":5056},{"style":181},[5057],{"type":45,"value":5058},"  ],\n",{"type":39,"tag":162,"props":5060,"children":5062},{"class":164,"line":5061},42,[5063,5067,5071,5075,5079],{"type":39,"tag":162,"props":5064,"children":5065},{"style":181},[5066],{"type":45,"value":3742},{"type":39,"tag":162,"props":5068,"children":5069},{"style":3745},[5070],{"type":45,"value":1752},{"type":39,"tag":162,"props":5072,"children":5073},{"style":181},[5074],{"type":45,"value":194},{"type":39,"tag":162,"props":5076,"children":5077},{"style":181},[5078],{"type":45,"value":2110},{"type":39,"tag":162,"props":5080,"children":5081},{"style":181},[5082],{"type":45,"value":4783},{"type":39,"tag":162,"props":5084,"children":5086},{"class":164,"line":5085},43,[5087,5091,5095,5099,5103],{"type":39,"tag":162,"props":5088,"children":5089},{"style":181},[5090],{"type":45,"value":3742},{"type":39,"tag":162,"props":5092,"children":5093},{"style":3745},[5094],{"type":45,"value":1781},{"type":39,"tag":162,"props":5096,"children":5097},{"style":181},[5098],{"type":45,"value":194},{"type":39,"tag":162,"props":5100,"children":5101},{"style":181},[5102],{"type":45,"value":2110},{"type":39,"tag":162,"props":5104,"children":5105},{"style":181},[5106],{"type":45,"value":4783},{"type":39,"tag":162,"props":5108,"children":5110},{"class":164,"line":5109},44,[5111,5115,5119,5123,5127],{"type":39,"tag":162,"props":5112,"children":5113},{"style":181},[5114],{"type":45,"value":3742},{"type":39,"tag":162,"props":5116,"children":5117},{"style":3745},[5118],{"type":45,"value":1808},{"type":39,"tag":162,"props":5120,"children":5121},{"style":181},[5122],{"type":45,"value":194},{"type":39,"tag":162,"props":5124,"children":5125},{"style":181},[5126],{"type":45,"value":2110},{"type":39,"tag":162,"props":5128,"children":5129},{"style":181},[5130],{"type":45,"value":4783},{"type":39,"tag":162,"props":5132,"children":5134},{"class":164,"line":5133},45,[5135,5139,5143,5147,5151],{"type":39,"tag":162,"props":5136,"children":5137},{"style":181},[5138],{"type":45,"value":3742},{"type":39,"tag":162,"props":5140,"children":5141},{"style":3745},[5142],{"type":45,"value":1835},{"type":39,"tag":162,"props":5144,"children":5145},{"style":181},[5146],{"type":45,"value":194},{"type":39,"tag":162,"props":5148,"children":5149},{"style":181},[5150],{"type":45,"value":2110},{"type":39,"tag":162,"props":5152,"children":5153},{"style":181},[5154],{"type":45,"value":4783},{"type":39,"tag":162,"props":5156,"children":5158},{"class":164,"line":5157},46,[5159,5163,5167,5171,5175],{"type":39,"tag":162,"props":5160,"children":5161},{"style":181},[5162],{"type":45,"value":3742},{"type":39,"tag":162,"props":5164,"children":5165},{"style":3745},[5166],{"type":45,"value":1338},{"type":39,"tag":162,"props":5168,"children":5169},{"style":181},[5170],{"type":45,"value":194},{"type":39,"tag":162,"props":5172,"children":5173},{"style":181},[5174],{"type":45,"value":2110},{"type":39,"tag":162,"props":5176,"children":5177},{"style":181},[5178],{"type":45,"value":4783},{"type":39,"tag":162,"props":5180,"children":5182},{"class":164,"line":5181},47,[5183,5187,5191,5195,5199],{"type":39,"tag":162,"props":5184,"children":5185},{"style":181},[5186],{"type":45,"value":3742},{"type":39,"tag":162,"props":5188,"children":5189},{"style":3745},[5190],{"type":45,"value":1345},{"type":39,"tag":162,"props":5192,"children":5193},{"style":181},[5194],{"type":45,"value":194},{"type":39,"tag":162,"props":5196,"children":5197},{"style":181},[5198],{"type":45,"value":2110},{"type":39,"tag":162,"props":5200,"children":5201},{"style":181},[5202],{"type":45,"value":4783},{"type":39,"tag":162,"props":5204,"children":5206},{"class":164,"line":5205},48,[5207,5211,5215,5219,5223],{"type":39,"tag":162,"props":5208,"children":5209},{"style":181},[5210],{"type":45,"value":3742},{"type":39,"tag":162,"props":5212,"children":5213},{"style":3745},[5214],{"type":45,"value":1930},{"type":39,"tag":162,"props":5216,"children":5217},{"style":181},[5218],{"type":45,"value":194},{"type":39,"tag":162,"props":5220,"children":5221},{"style":181},[5222],{"type":45,"value":2110},{"type":39,"tag":162,"props":5224,"children":5225},{"style":181},[5226],{"type":45,"value":3796},{"type":39,"tag":162,"props":5228,"children":5230},{"class":164,"line":5229},49,[5231,5236,5240,5244,5248,5252,5256,5260,5264,5268,5272,5276,5280,5284,5289,5293,5297,5301,5305,5309,5314],{"type":39,"tag":162,"props":5232,"children":5233},{"style":181},[5234],{"type":45,"value":5235},"    {",{"type":39,"tag":162,"props":5237,"children":5238},{"style":181},[5239],{"type":45,"value":184},{"type":39,"tag":162,"props":5241,"children":5242},{"style":169},[5243],{"type":45,"value":1696},{"type":39,"tag":162,"props":5245,"children":5246},{"style":181},[5247],{"type":45,"value":194},{"type":39,"tag":162,"props":5249,"children":5250},{"style":181},[5251],{"type":45,"value":2110},{"type":39,"tag":162,"props":5253,"children":5254},{"style":181},[5255],{"type":45,"value":184},{"type":39,"tag":162,"props":5257,"children":5258},{"style":175},[5259],{"type":45,"value":1330},{"type":39,"tag":162,"props":5261,"children":5262},{"style":181},[5263],{"type":45,"value":194},{"type":39,"tag":162,"props":5265,"children":5266},{"style":181},[5267],{"type":45,"value":4423},{"type":39,"tag":162,"props":5269,"children":5270},{"style":181},[5271],{"type":45,"value":184},{"type":39,"tag":162,"props":5273,"children":5274},{"style":169},[5275],{"type":45,"value":3636},{"type":39,"tag":162,"props":5277,"children":5278},{"style":181},[5279],{"type":45,"value":194},{"type":39,"tag":162,"props":5281,"children":5282},{"style":181},[5283],{"type":45,"value":2110},{"type":39,"tag":162,"props":5285,"children":5286},{"style":4050},[5287],{"type":45,"value":5288}," 0",{"type":39,"tag":162,"props":5290,"children":5291},{"style":181},[5292],{"type":45,"value":4423},{"type":39,"tag":162,"props":5294,"children":5295},{"style":181},[5296],{"type":45,"value":184},{"type":39,"tag":162,"props":5298,"children":5299},{"style":169},[5300],{"type":45,"value":1322},{"type":39,"tag":162,"props":5302,"children":5303},{"style":181},[5304],{"type":45,"value":194},{"type":39,"tag":162,"props":5306,"children":5307},{"style":181},[5308],{"type":45,"value":2110},{"type":39,"tag":162,"props":5310,"children":5311},{"style":181},[5312],{"type":45,"value":5313}," false",{"type":39,"tag":162,"props":5315,"children":5316},{"style":181},[5317],{"type":45,"value":4523},{"type":39,"tag":162,"props":5319,"children":5321},{"class":164,"line":5320},50,[5322],{"type":39,"tag":162,"props":5323,"children":5324},{"style":181},[5325],{"type":45,"value":5058},{"type":39,"tag":162,"props":5327,"children":5329},{"class":164,"line":5328},51,[5330,5334,5338,5342,5346],{"type":39,"tag":162,"props":5331,"children":5332},{"style":181},[5333],{"type":45,"value":3742},{"type":39,"tag":162,"props":5335,"children":5336},{"style":3745},[5337],{"type":45,"value":917},{"type":39,"tag":162,"props":5339,"children":5340},{"style":181},[5341],{"type":45,"value":194},{"type":39,"tag":162,"props":5343,"children":5344},{"style":181},[5345],{"type":45,"value":2110},{"type":39,"tag":162,"props":5347,"children":5348},{"style":181},[5349],{"type":45,"value":4038},{"type":39,"tag":162,"props":5351,"children":5353},{"class":164,"line":5352},52,[5354,5359,5363,5367,5371,5375,5380,5384,5389],{"type":39,"tag":162,"props":5355,"children":5356},{"style":181},[5357],{"type":45,"value":5358},"    \"",{"type":39,"tag":162,"props":5360,"children":5361},{"style":169},[5362],{"type":45,"value":2296},{"type":39,"tag":162,"props":5364,"children":5365},{"style":181},[5366],{"type":45,"value":194},{"type":39,"tag":162,"props":5368,"children":5369},{"style":181},[5370],{"type":45,"value":2110},{"type":39,"tag":162,"props":5372,"children":5373},{"style":181},[5374],{"type":45,"value":4739},{"type":39,"tag":162,"props":5376,"children":5377},{"style":4050},[5378],{"type":45,"value":5379},"37.7749",{"type":39,"tag":162,"props":5381,"children":5382},{"style":181},[5383],{"type":45,"value":4423},{"type":39,"tag":162,"props":5385,"children":5386},{"style":4050},[5387],{"type":45,"value":5388}," -122.4194",{"type":39,"tag":162,"props":5390,"children":5391},{"style":181},[5392],{"type":45,"value":4758},{"type":39,"tag":162,"props":5394,"children":5396},{"class":164,"line":5395},53,[5397,5401,5405,5409,5413,5417,5422,5426],{"type":39,"tag":162,"props":5398,"children":5399},{"style":181},[5400],{"type":45,"value":5358},{"type":39,"tag":162,"props":5402,"children":5403},{"style":169},[5404],{"type":45,"value":2860},{"type":39,"tag":162,"props":5406,"children":5407},{"style":181},[5408],{"type":45,"value":194},{"type":39,"tag":162,"props":5410,"children":5411},{"style":181},[5412],{"type":45,"value":2110},{"type":39,"tag":162,"props":5414,"children":5415},{"style":181},[5416],{"type":45,"value":184},{"type":39,"tag":162,"props":5418,"children":5419},{"style":175},[5420],{"type":45,"value":5421},"San Francisco",{"type":39,"tag":162,"props":5423,"children":5424},{"style":181},[5425],{"type":45,"value":194},{"type":39,"tag":162,"props":5427,"children":5428},{"style":181},[5429],{"type":45,"value":3772},{"type":39,"tag":162,"props":5431,"children":5433},{"class":164,"line":5432},54,[5434,5438,5442,5446,5450,5454,5458],{"type":39,"tag":162,"props":5435,"children":5436},{"style":181},[5437],{"type":45,"value":5358},{"type":39,"tag":162,"props":5439,"children":5440},{"style":169},[5441],{"type":45,"value":1407},{"type":39,"tag":162,"props":5443,"children":5444},{"style":181},[5445],{"type":45,"value":194},{"type":39,"tag":162,"props":5447,"children":5448},{"style":181},[5449],{"type":45,"value":2110},{"type":39,"tag":162,"props":5451,"children":5452},{"style":181},[5453],{"type":45,"value":184},{"type":39,"tag":162,"props":5455,"children":5456},{"style":175},[5457],{"type":45,"value":1424},{"type":39,"tag":162,"props":5459,"children":5460},{"style":181},[5461],{"type":45,"value":398},{"type":39,"tag":162,"props":5463,"children":5465},{"class":164,"line":5464},55,[5466],{"type":39,"tag":162,"props":5467,"children":5468},{"style":181},[5469],{"type":45,"value":5470},"  }\n",{"type":39,"tag":162,"props":5472,"children":5474},{"class":164,"line":5473},56,[5475],{"type":39,"tag":162,"props":5476,"children":5477},{"style":181},[5478],{"type":45,"value":5479},"}\n",{"type":39,"tag":52,"props":5481,"children":5482},{},[5483,5485,5490],{"type":45,"value":5484},"For a query that matches a city name, the response additionally surfaces a city entry in ",{"type":39,"tag":89,"props":5486,"children":5488},{"className":5487},[],[5489],{"type":45,"value":1752},{"type":45,"value":2110},{"type":39,"tag":151,"props":5492,"children":5494},{"className":3720,"code":5493,"language":3722,"meta":156,"style":156},"{\n  \"cities\": [\n    {\n      \"type\": \"city\",\n      \"name\": \"San Francisco\",\n      \"country\": \"US\",\n      \"coordinates\": [37.7749, -122.4194],\n      \"thumbnail\": { \"src\": \"https:\u002F\u002Fexample.com\u002Fsf.jpg\" }\n    }\n  ],\n  \"mixed\": [\n    { \"type\": \"cities\", \"index\": 0, \"all\": false }\n  ]\n}\n",[5495],{"type":39,"tag":89,"props":5496,"children":5497},{"__ignoreMap":156},[5498,5505,5528,5535,5570,5605,5640,5679,5735,5742,5749,5772,5859,5867],{"type":39,"tag":162,"props":5499,"children":5500},{"class":164,"line":165},[5501],{"type":39,"tag":162,"props":5502,"children":5503},{"style":181},[5504],{"type":45,"value":3734},{"type":39,"tag":162,"props":5506,"children":5507},{"class":164,"line":203},[5508,5512,5516,5520,5524],{"type":39,"tag":162,"props":5509,"children":5510},{"style":181},[5511],{"type":45,"value":3742},{"type":39,"tag":162,"props":5513,"children":5514},{"style":3745},[5515],{"type":45,"value":1752},{"type":39,"tag":162,"props":5517,"children":5518},{"style":181},[5519],{"type":45,"value":194},{"type":39,"tag":162,"props":5521,"children":5522},{"style":181},[5523],{"type":45,"value":2110},{"type":39,"tag":162,"props":5525,"children":5526},{"style":181},[5527],{"type":45,"value":3796},{"type":39,"tag":162,"props":5529,"children":5530},{"class":164,"line":229},[5531],{"type":39,"tag":162,"props":5532,"children":5533},{"style":181},[5534],{"type":45,"value":3804},{"type":39,"tag":162,"props":5536,"children":5537},{"class":164,"line":254},[5538,5542,5546,5550,5554,5558,5562,5566],{"type":39,"tag":162,"props":5539,"children":5540},{"style":181},[5541],{"type":45,"value":3812},{"type":39,"tag":162,"props":5543,"children":5544},{"style":169},[5545],{"type":45,"value":1696},{"type":39,"tag":162,"props":5547,"children":5548},{"style":181},[5549],{"type":45,"value":194},{"type":39,"tag":162,"props":5551,"children":5552},{"style":181},[5553],{"type":45,"value":2110},{"type":39,"tag":162,"props":5555,"children":5556},{"style":181},[5557],{"type":45,"value":184},{"type":39,"tag":162,"props":5559,"children":5560},{"style":175},[5561],{"type":45,"value":3058},{"type":39,"tag":162,"props":5563,"children":5564},{"style":181},[5565],{"type":45,"value":194},{"type":39,"tag":162,"props":5567,"children":5568},{"style":181},[5569],{"type":45,"value":3772},{"type":39,"tag":162,"props":5571,"children":5572},{"class":164,"line":290},[5573,5577,5581,5585,5589,5593,5597,5601],{"type":39,"tag":162,"props":5574,"children":5575},{"style":181},[5576],{"type":45,"value":3812},{"type":39,"tag":162,"props":5578,"children":5579},{"style":169},[5580],{"type":45,"value":2860},{"type":39,"tag":162,"props":5582,"children":5583},{"style":181},[5584],{"type":45,"value":194},{"type":39,"tag":162,"props":5586,"children":5587},{"style":181},[5588],{"type":45,"value":2110},{"type":39,"tag":162,"props":5590,"children":5591},{"style":181},[5592],{"type":45,"value":184},{"type":39,"tag":162,"props":5594,"children":5595},{"style":175},[5596],{"type":45,"value":5421},{"type":39,"tag":162,"props":5598,"children":5599},{"style":181},[5600],{"type":45,"value":194},{"type":39,"tag":162,"props":5602,"children":5603},{"style":181},[5604],{"type":45,"value":3772},{"type":39,"tag":162,"props":5606,"children":5607},{"class":164,"line":303},[5608,5612,5616,5620,5624,5628,5632,5636],{"type":39,"tag":162,"props":5609,"children":5610},{"style":181},[5611],{"type":45,"value":3812},{"type":39,"tag":162,"props":5613,"children":5614},{"style":169},[5615],{"type":45,"value":1407},{"type":39,"tag":162,"props":5617,"children":5618},{"style":181},[5619],{"type":45,"value":194},{"type":39,"tag":162,"props":5621,"children":5622},{"style":181},[5623],{"type":45,"value":2110},{"type":39,"tag":162,"props":5625,"children":5626},{"style":181},[5627],{"type":45,"value":184},{"type":39,"tag":162,"props":5629,"children":5630},{"style":175},[5631],{"type":45,"value":1424},{"type":39,"tag":162,"props":5633,"children":5634},{"style":181},[5635],{"type":45,"value":194},{"type":39,"tag":162,"props":5637,"children":5638},{"style":181},[5639],{"type":45,"value":3772},{"type":39,"tag":162,"props":5641,"children":5642},{"class":164,"line":329},[5643,5647,5651,5655,5659,5663,5667,5671,5675],{"type":39,"tag":162,"props":5644,"children":5645},{"style":181},[5646],{"type":45,"value":3812},{"type":39,"tag":162,"props":5648,"children":5649},{"style":169},[5650],{"type":45,"value":2296},{"type":39,"tag":162,"props":5652,"children":5653},{"style":181},[5654],{"type":45,"value":194},{"type":39,"tag":162,"props":5656,"children":5657},{"style":181},[5658],{"type":45,"value":2110},{"type":39,"tag":162,"props":5660,"children":5661},{"style":181},[5662],{"type":45,"value":4739},{"type":39,"tag":162,"props":5664,"children":5665},{"style":4050},[5666],{"type":45,"value":5379},{"type":39,"tag":162,"props":5668,"children":5669},{"style":181},[5670],{"type":45,"value":4423},{"type":39,"tag":162,"props":5672,"children":5673},{"style":4050},[5674],{"type":45,"value":5388},{"type":39,"tag":162,"props":5676,"children":5677},{"style":181},[5678],{"type":45,"value":4758},{"type":39,"tag":162,"props":5680,"children":5681},{"class":164,"line":354},[5682,5686,5690,5694,5698,5702,5706,5710,5714,5718,5722,5727,5731],{"type":39,"tag":162,"props":5683,"children":5684},{"style":181},[5685],{"type":45,"value":3812},{"type":39,"tag":162,"props":5687,"children":5688},{"style":169},[5689],{"type":45,"value":4925},{"type":39,"tag":162,"props":5691,"children":5692},{"style":181},[5693],{"type":45,"value":194},{"type":39,"tag":162,"props":5695,"children":5696},{"style":181},[5697],{"type":45,"value":2110},{"type":39,"tag":162,"props":5699,"children":5700},{"style":181},[5701],{"type":45,"value":4145},{"type":39,"tag":162,"props":5703,"children":5704},{"style":181},[5705],{"type":45,"value":184},{"type":39,"tag":162,"props":5707,"children":5708},{"style":4050},[5709],{"type":45,"value":2821},{"type":39,"tag":162,"props":5711,"children":5712},{"style":181},[5713],{"type":45,"value":194},{"type":39,"tag":162,"props":5715,"children":5716},{"style":181},[5717],{"type":45,"value":2110},{"type":39,"tag":162,"props":5719,"children":5720},{"style":181},[5721],{"type":45,"value":184},{"type":39,"tag":162,"props":5723,"children":5724},{"style":175},[5725],{"type":45,"value":5726},"https:\u002F\u002Fexample.com\u002Fsf.jpg",{"type":39,"tag":162,"props":5728,"children":5729},{"style":181},[5730],{"type":45,"value":194},{"type":39,"tag":162,"props":5732,"children":5733},{"style":181},[5734],{"type":45,"value":4523},{"type":39,"tag":162,"props":5736,"children":5737},{"class":164,"line":379},[5738],{"type":39,"tag":162,"props":5739,"children":5740},{"style":181},[5741],{"type":45,"value":5049},{"type":39,"tag":162,"props":5743,"children":5744},{"class":164,"line":3980},[5745],{"type":39,"tag":162,"props":5746,"children":5747},{"style":181},[5748],{"type":45,"value":5058},{"type":39,"tag":162,"props":5750,"children":5751},{"class":164,"line":26},[5752,5756,5760,5764,5768],{"type":39,"tag":162,"props":5753,"children":5754},{"style":181},[5755],{"type":45,"value":3742},{"type":39,"tag":162,"props":5757,"children":5758},{"style":3745},[5759],{"type":45,"value":1930},{"type":39,"tag":162,"props":5761,"children":5762},{"style":181},[5763],{"type":45,"value":194},{"type":39,"tag":162,"props":5765,"children":5766},{"style":181},[5767],{"type":45,"value":2110},{"type":39,"tag":162,"props":5769,"children":5770},{"style":181},[5771],{"type":45,"value":3796},{"type":39,"tag":162,"props":5773,"children":5774},{"class":164,"line":4041},[5775,5779,5783,5787,5791,5795,5799,5803,5807,5811,5815,5819,5823,5827,5831,5835,5839,5843,5847,5851,5855],{"type":39,"tag":162,"props":5776,"children":5777},{"style":181},[5778],{"type":45,"value":5235},{"type":39,"tag":162,"props":5780,"children":5781},{"style":181},[5782],{"type":45,"value":184},{"type":39,"tag":162,"props":5784,"children":5785},{"style":169},[5786],{"type":45,"value":1696},{"type":39,"tag":162,"props":5788,"children":5789},{"style":181},[5790],{"type":45,"value":194},{"type":39,"tag":162,"props":5792,"children":5793},{"style":181},[5794],{"type":45,"value":2110},{"type":39,"tag":162,"props":5796,"children":5797},{"style":181},[5798],{"type":45,"value":184},{"type":39,"tag":162,"props":5800,"children":5801},{"style":175},[5802],{"type":45,"value":1752},{"type":39,"tag":162,"props":5804,"children":5805},{"style":181},[5806],{"type":45,"value":194},{"type":39,"tag":162,"props":5808,"children":5809},{"style":181},[5810],{"type":45,"value":4423},{"type":39,"tag":162,"props":5812,"children":5813},{"style":181},[5814],{"type":45,"value":184},{"type":39,"tag":162,"props":5816,"children":5817},{"style":169},[5818],{"type":45,"value":3636},{"type":39,"tag":162,"props":5820,"children":5821},{"style":181},[5822],{"type":45,"value":194},{"type":39,"tag":162,"props":5824,"children":5825},{"style":181},[5826],{"type":45,"value":2110},{"type":39,"tag":162,"props":5828,"children":5829},{"style":4050},[5830],{"type":45,"value":5288},{"type":39,"tag":162,"props":5832,"children":5833},{"style":181},[5834],{"type":45,"value":4423},{"type":39,"tag":162,"props":5836,"children":5837},{"style":181},[5838],{"type":45,"value":184},{"type":39,"tag":162,"props":5840,"children":5841},{"style":169},[5842],{"type":45,"value":1322},{"type":39,"tag":162,"props":5844,"children":5845},{"style":181},[5846],{"type":45,"value":194},{"type":39,"tag":162,"props":5848,"children":5849},{"style":181},[5850],{"type":45,"value":2110},{"type":39,"tag":162,"props":5852,"children":5853},{"style":181},[5854],{"type":45,"value":5313},{"type":39,"tag":162,"props":5856,"children":5857},{"style":181},[5858],{"type":45,"value":4523},{"type":39,"tag":162,"props":5860,"children":5861},{"class":164,"line":4080},[5862],{"type":39,"tag":162,"props":5863,"children":5864},{"style":181},[5865],{"type":45,"value":5866},"  ]\n",{"type":39,"tag":162,"props":5868,"children":5869},{"class":164,"line":4113},[5870],{"type":39,"tag":162,"props":5871,"children":5872},{"style":181},[5873],{"type":45,"value":5479},{"type":39,"tag":137,"props":5875,"children":5877},{"id":5876},"enriching-results-with-poi-details-and-descriptions",[5878],{"type":45,"value":5879},"Enriching Results with POI Details and Descriptions",{"type":39,"tag":52,"props":5881,"children":5882},{},[5883,5885,5890,5892,5897],{"type":45,"value":5884},"POI ",{"type":39,"tag":89,"props":5886,"children":5888},{"className":5887},[],[5889],{"type":45,"value":2263},{"type":45,"value":5891}," values from ",{"type":39,"tag":89,"props":5893,"children":5895},{"className":5894},[],[5896],{"type":45,"value":1330},{"type":45,"value":5898}," can be passed to sibling endpoints for richer data:",{"type":39,"tag":151,"props":5900,"children":5902},{"className":153,"code":5901,"language":155,"meta":156,"style":156},"# Get full POI details (hours, reviews, photos, web result mentions)\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n\n# Get AI-generated descriptions\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fdescriptions\" -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n",[5903],{"type":39,"tag":89,"props":5904,"children":5905},{"__ignoreMap":156},[5906,5915,5948,5972,6000,6009,6017,6049,6072],{"type":39,"tag":162,"props":5907,"children":5908},{"class":164,"line":165},[5909],{"type":39,"tag":162,"props":5910,"children":5912},{"style":5911},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[5913],{"type":45,"value":5914},"# Get full POI details (hours, reviews, photos, web result mentions)\n",{"type":39,"tag":162,"props":5916,"children":5917},{"class":164,"line":203},[5918,5922,5926,5930,5935,5939,5944],{"type":39,"tag":162,"props":5919,"children":5920},{"style":169},[5921],{"type":45,"value":172},{"type":39,"tag":162,"props":5923,"children":5924},{"style":175},[5925],{"type":45,"value":178},{"type":39,"tag":162,"props":5927,"children":5928},{"style":181},[5929],{"type":45,"value":184},{"type":39,"tag":162,"props":5931,"children":5932},{"style":175},[5933],{"type":45,"value":5934},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois",{"type":39,"tag":162,"props":5936,"children":5937},{"style":181},[5938],{"type":45,"value":194},{"type":39,"tag":162,"props":5940,"children":5941},{"style":175},[5942],{"type":45,"value":5943}," -G",{"type":39,"tag":162,"props":5945,"children":5946},{"style":197},[5947],{"type":45,"value":200},{"type":39,"tag":162,"props":5949,"children":5950},{"class":164,"line":229},[5951,5955,5959,5964,5968],{"type":39,"tag":162,"props":5952,"children":5953},{"style":175},[5954],{"type":45,"value":309},{"type":39,"tag":162,"props":5956,"children":5957},{"style":181},[5958],{"type":45,"value":184},{"type":39,"tag":162,"props":5960,"children":5961},{"style":175},[5962],{"type":45,"value":5963},"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=",{"type":39,"tag":162,"props":5965,"children":5966},{"style":181},[5967],{"type":45,"value":194},{"type":39,"tag":162,"props":5969,"children":5970},{"style":197},[5971],{"type":45,"value":200},{"type":39,"tag":162,"props":5973,"children":5974},{"class":164,"line":254},[5975,5979,5983,5987,5991,5995],{"type":39,"tag":162,"props":5976,"children":5977},{"style":175},[5978],{"type":45,"value":209},{"type":39,"tag":162,"props":5980,"children":5981},{"style":181},[5982],{"type":45,"value":184},{"type":39,"tag":162,"props":5984,"children":5985},{"style":175},[5986],{"type":45,"value":268},{"type":39,"tag":162,"props":5988,"children":5989},{"style":181},[5990],{"type":45,"value":273},{"type":39,"tag":162,"props":5992,"children":5993},{"style":197},[5994],{"type":45,"value":278},{"type":39,"tag":162,"props":5996,"children":5997},{"style":181},[5998],{"type":45,"value":5999},"}\"\n",{"type":39,"tag":162,"props":6001,"children":6002},{"class":164,"line":290},[6003],{"type":39,"tag":162,"props":6004,"children":6006},{"emptyLinePlaceholder":6005},true,[6007],{"type":45,"value":6008},"\n",{"type":39,"tag":162,"props":6010,"children":6011},{"class":164,"line":303},[6012],{"type":39,"tag":162,"props":6013,"children":6014},{"style":5911},[6015],{"type":45,"value":6016},"# Get AI-generated descriptions\n",{"type":39,"tag":162,"props":6018,"children":6019},{"class":164,"line":329},[6020,6024,6028,6032,6037,6041,6045],{"type":39,"tag":162,"props":6021,"children":6022},{"style":169},[6023],{"type":45,"value":172},{"type":39,"tag":162,"props":6025,"children":6026},{"style":175},[6027],{"type":45,"value":178},{"type":39,"tag":162,"props":6029,"children":6030},{"style":181},[6031],{"type":45,"value":184},{"type":39,"tag":162,"props":6033,"children":6034},{"style":175},[6035],{"type":45,"value":6036},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fdescriptions",{"type":39,"tag":162,"props":6038,"children":6039},{"style":181},[6040],{"type":45,"value":194},{"type":39,"tag":162,"props":6042,"children":6043},{"style":175},[6044],{"type":45,"value":5943},{"type":39,"tag":162,"props":6046,"children":6047},{"style":197},[6048],{"type":45,"value":200},{"type":39,"tag":162,"props":6050,"children":6051},{"class":164,"line":354},[6052,6056,6060,6064,6068],{"type":39,"tag":162,"props":6053,"children":6054},{"style":175},[6055],{"type":45,"value":309},{"type":39,"tag":162,"props":6057,"children":6058},{"style":181},[6059],{"type":45,"value":184},{"type":39,"tag":162,"props":6061,"children":6062},{"style":175},[6063],{"type":45,"value":5963},{"type":39,"tag":162,"props":6065,"children":6066},{"style":181},[6067],{"type":45,"value":194},{"type":39,"tag":162,"props":6069,"children":6070},{"style":197},[6071],{"type":45,"value":200},{"type":39,"tag":162,"props":6073,"children":6074},{"class":164,"line":379},[6075,6079,6083,6087,6091,6095],{"type":39,"tag":162,"props":6076,"children":6077},{"style":175},[6078],{"type":45,"value":209},{"type":39,"tag":162,"props":6080,"children":6081},{"style":181},[6082],{"type":45,"value":184},{"type":39,"tag":162,"props":6084,"children":6085},{"style":175},[6086],{"type":45,"value":268},{"type":39,"tag":162,"props":6088,"children":6089},{"style":181},[6090],{"type":45,"value":273},{"type":39,"tag":162,"props":6092,"children":6093},{"style":197},[6094],{"type":45,"value":278},{"type":39,"tag":162,"props":6096,"children":6097},{"style":181},[6098],{"type":45,"value":5999},{"type":39,"tag":137,"props":6100,"children":6102},{"id":6101},"use-cases",[6103],{"type":45,"value":6104},"Use Cases",{"type":39,"tag":6106,"props":6107,"children":6108},"ul",{},[6109,6120,6130],{"type":39,"tag":6110,"props":6111,"children":6112},"li",{},[6113,6118],{"type":39,"tag":56,"props":6114,"children":6115},{},[6116],{"type":45,"value":6117},"Map-based exploration",{"type":45,"value":6119},": Search for POIs within a visible map viewport using coordinates + radius. No prior query needed.",{"type":39,"tag":6110,"props":6121,"children":6122},{},[6123,6128],{"type":39,"tag":56,"props":6124,"children":6125},{},[6126],{"type":45,"value":6127},"Location-aware apps",{"type":45,"value":6129},": Build \"nearby\" features — pass device GPS coordinates and a query to find relevant businesses.",{"type":39,"tag":6110,"props":6131,"children":6132},{},[6133,6138,6140,6146],{"type":39,"tag":56,"props":6134,"children":6135},{},[6136],{"type":45,"value":6137},"Travel planning",{"type":45,"value":6139},": Search for attractions, restaurants, and hotels by location string (e.g., ",{"type":39,"tag":89,"props":6141,"children":6143},{"className":6142},[],[6144],{"type":45,"value":6145},"paris france",{"type":45,"value":6147},") without needing exact coordinates.",{"type":39,"tag":137,"props":6149,"children":6151},{"id":6150},"notes",[6152],{"type":45,"value":6153},"Notes",{"type":39,"tag":6106,"props":6155,"children":6156},{},[6157,6167],{"type":39,"tag":6110,"props":6158,"children":6159},{},[6160,6165],{"type":39,"tag":56,"props":6161,"children":6162},{},[6163],{"type":45,"value":6164},"Finds places, not pages",{"type":45,"value":6166},": This endpoint searches a geographic index of physical places. Use web search for general information retrieval.",{"type":39,"tag":6110,"props":6168,"children":6169},{},[6170,6175,6177,6183],{"type":39,"tag":56,"props":6171,"children":6172},{},[6173],{"type":45,"value":6174},"Choosing a radius",{"type":45,"value":6176},": A tighter radius (below ~20 km) gives more focused results. Raise it to reach specific or well-known places further afield; for common category searches (e.g., ",{"type":39,"tag":89,"props":6178,"children":6180},{"className":6179},[],[6181],{"type":45,"value":6182},"restaurants",{"type":45,"value":6184},"), the default bias or tighter works best.",{"type":39,"tag":6186,"props":6187,"children":6188},"style",{},[6189],{"type":45,"value":6190},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":6192,"total":4080},[6193,6205,6219,6231,6240,6250,6259,6265,6274,6283,6291,6300],{"slug":6194,"name":6194,"fn":6195,"description":6196,"org":6197,"tags":6198,"stars":22,"repoUrl":23,"updatedAt":6204},"answers","get AI-grounded answers via Brave","USE FOR AI-grounded answers via OpenAI-compatible \u002Fchat\u002Fcompletions. Two modes: single-search (fast) or deep research (enable_research=true, thorough multi-search). Streaming\u002Fblocking. Citations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6199,6200,6203],{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},"LLM","llm",{"name":85,"slug":1131,"type":15},"2026-08-16T03:30:47.874725",{"slug":6206,"name":6206,"fn":6207,"description":6208,"org":6209,"tags":6210,"stars":22,"repoUrl":23,"updatedAt":6218},"bx","perform token-efficient web searches","USE FOR web search, research, RAG, grounding, browse, find, lookups, fact-checking, documentation, agentic AI. All-in-one, optimized for AI agents. Pre-extracted, token-budgeted web content, deep research, news, images, videos, places, custom ranking",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6211,6214,6215,6216,6217],{"name":6212,"slug":6213,"type":15},"AI Context","ai-context",{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},{"name":13,"slug":14,"type":15},{"name":85,"slug":1131,"type":15},"2026-04-08T04:55:31.217318",{"slug":6220,"name":6220,"fn":6221,"description":6222,"org":6223,"tags":6224,"stars":22,"repoUrl":23,"updatedAt":6230},"bx-search","search the web via Brave CLI","Web search using the Brave Search CLI (`bx`). Use for ALL web search requests — including \"search for\", \"look up\", \"find\", \"what is\", \"how do I\", \"google this\", and any request needing current or external information. Prefer this over the built-in web_search tool whenever bx is available. Also use for: documentation lookup, troubleshooting research, RAG grounding, news, images, videos, local places, and AI-synthesized answers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6225,6226,6229],{"name":17,"slug":18,"type":15},{"name":6227,"slug":6228,"type":15},"CLI","cli",{"name":85,"slug":1131,"type":15},"2026-04-06T18:06:05.777322",{"slug":6232,"name":6232,"fn":6233,"description":6234,"org":6235,"tags":6236,"stars":22,"repoUrl":23,"updatedAt":6239},"images-search","search images via Brave Search","USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6237,6238],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},"2026-04-06T18:06:04.504482",{"slug":6241,"name":6241,"fn":6242,"description":6243,"org":6244,"tags":6245,"stars":22,"repoUrl":23,"updatedAt":6249},"llm-context","fetch web content for LLM grounding","USE FOR RAG\u002FLLM grounding. Returns pre-extracted web content (text, tables, code) optimized for LLMs. GET + POST. Adjust max_tokens\u002Fcount based on complexity. Supports Goggles, local\u002FPOI. For AI answers use answers. Recommended for anyone building AI\u002Fagentic applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6246,6247,6248],{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},{"name":85,"slug":1131,"type":15},"2026-08-16T03:30:50.868376",{"slug":126,"name":126,"fn":6251,"description":6252,"org":6253,"tags":6254,"stars":22,"repoUrl":23,"updatedAt":6258},"fetch AI-generated descriptions for local POIs","USE FOR getting AI-generated POI text descriptions. Requires POI IDs from local-place-search, or from web-search with result_filter=locations. Returns markdown descriptions grounded in web search context. Max 20 IDs per request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6255,6256,6257],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":85,"slug":1131,"type":15},"2026-08-16T03:30:46.866752",{"slug":4,"name":4,"fn":5,"description":6,"org":6260,"tags":6261,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6262,6263,6264],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":118,"name":118,"fn":6266,"description":6267,"org":6268,"tags":6269,"stars":22,"repoUrl":23,"updatedAt":6273},"fetch local business and POI details","USE FOR getting local business\u002FPOI details. Requires POI IDs from local-place-search, or from web-search with result_filter=locations. Returns full business information including ratings, hours, contact info. Max 20 IDs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6270,6271,6272],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":85,"slug":1131,"type":15},"2026-08-16T03:30:45.859045",{"slug":6275,"name":6275,"fn":6276,"description":6277,"org":6278,"tags":6279,"stars":22,"repoUrl":23,"updatedAt":6282},"news-search","search news articles","USE FOR news search. Returns news articles with title, URL, description, age, thumbnail, profile. Supports freshness and date range filtering, SafeSearch filter and Goggles for custom ranking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6280,6281],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},"2026-08-16T03:30:50.268699",{"slug":1624,"name":1624,"fn":6284,"description":6285,"org":6286,"tags":6287,"stars":22,"repoUrl":23,"updatedAt":6290},"spell-correct search queries","USE FOR spell correction. Returns corrected query if misspelled. Most search endpoints have spellcheck built-in; use this only for pre-search query cleanup or \"Did you mean?\" UI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6288,6289],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},"2026-04-06T18:05:59.499925",{"slug":6292,"name":6292,"fn":6293,"description":6294,"org":6295,"tags":6296,"stars":22,"repoUrl":23,"updatedAt":6299},"suggest","autocomplete search queries","USE FOR query autocomplete\u002Fsuggestions. Fast (\u003C100ms). Returns suggested queries as user types. Supports rich suggestions with entity info. Typo-resilient.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6297,6298],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},"2026-04-06T18:05:54.426217",{"slug":6301,"name":6301,"fn":6302,"description":6303,"org":6304,"tags":6305,"stars":22,"repoUrl":23,"updatedAt":6311},"videos-search","search videos via Brave Search","USE FOR video search. Returns videos with title, URL, thumbnail, duration, view count, creator. Supports freshness filters, SafeSearch, pagination.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6306,6307,6308],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},{"name":6309,"slug":6310,"type":15},"Video","video","2026-08-16T03:30:48.87102",{"items":6313,"total":4080},[6314,6320,6328,6334,6339,6345,6351],{"slug":6194,"name":6194,"fn":6195,"description":6196,"org":6315,"tags":6316,"stars":22,"repoUrl":23,"updatedAt":6204},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6317,6318,6319],{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},{"name":85,"slug":1131,"type":15},{"slug":6206,"name":6206,"fn":6207,"description":6208,"org":6321,"tags":6322,"stars":22,"repoUrl":23,"updatedAt":6218},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6323,6324,6325,6326,6327],{"name":6212,"slug":6213,"type":15},{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},{"name":13,"slug":14,"type":15},{"name":85,"slug":1131,"type":15},{"slug":6220,"name":6220,"fn":6221,"description":6222,"org":6329,"tags":6330,"stars":22,"repoUrl":23,"updatedAt":6230},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6331,6332,6333],{"name":17,"slug":18,"type":15},{"name":6227,"slug":6228,"type":15},{"name":85,"slug":1131,"type":15},{"slug":6232,"name":6232,"fn":6233,"description":6234,"org":6335,"tags":6336,"stars":22,"repoUrl":23,"updatedAt":6239},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6337,6338],{"name":17,"slug":18,"type":15},{"name":85,"slug":1131,"type":15},{"slug":6241,"name":6241,"fn":6242,"description":6243,"org":6340,"tags":6341,"stars":22,"repoUrl":23,"updatedAt":6249},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6342,6343,6344],{"name":17,"slug":18,"type":15},{"name":6201,"slug":6202,"type":15},{"name":85,"slug":1131,"type":15},{"slug":126,"name":126,"fn":6251,"description":6252,"org":6346,"tags":6347,"stars":22,"repoUrl":23,"updatedAt":6258},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6348,6349,6350],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":85,"slug":1131,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":6352,"tags":6353,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6354,6355,6356],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15}]