[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-local-pois":3,"mdc-a8ybxn-key":33,"related-org-brave-local-pois":3708,"related-repo-brave-local-pois":3832},{"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-pois","fetch local business and POI details","USE FOR getting local business\u002FPOI details. Requires POI IDs obtained 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},"brave","Brave","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fbrave.png",[12,16,19],{"name":13,"slug":14,"type":15},"Brave Search","brave-search","tag",{"name":17,"slug":18,"type":15},"Local Search","local-search",{"name":20,"slug":21,"type":15},"Search","search",161,"https:\u002F\u002Fgithub.com\u002Fbrave\u002Fbrave-search-skills","2026-04-06T18:05:55.722361",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-pois","---\nname: local-pois\ndescription: USE FOR getting local business\u002FPOI details. Requires POI IDs obtained from web-search (with result_filter=locations). Returns full business information including ratings, hours, contact info. Max 20 IDs.\n---\n\n# Local POIs (Search API)\n\n> **Requires API Key**: Get one at https:\u002F\u002Fapi.search.brave.com\n>\n> **Plan**: Included in the **Search** plan. See https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe\n>\n> **Two-step flow**: This endpoint requires POI IDs from a prior web search.\n>\n> 1. Call `web-search` with `result_filter=locations` to get POI IDs from `locations.results[].id`\n> 2. Pass those IDs to this endpoint to get full business details\n\n## Quick Start (cURL)\n\n### Get POI Details\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\"\n```\n\n### Multiple POIs with Location Headers\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\" \\\n  -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  --data-urlencode \"ids=loc4HTAVTJKP4RBEBZCEMBI3NG26YD4II4PATIHPDYI=\" \\\n  --data-urlencode \"units=imperial\"\n```\n\n**Note**: POI IDs are opaque strings returned in web search `locations.results[].id`. IDs are ephemeral and expire after ~8 hours. The example IDs above are for illustration — fetch fresh IDs via `web-search` with `result_filter=locations`. Use `--data-urlencode` since IDs may contain `=`.\n\n## Endpoint\n\n```http\nGET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\n```\n\n**Authentication**: `X-Subscription-Token: \u003CAPI_KEY>` header\n\n## Parameters\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `ids` | string[] | **Yes** | — | POI IDs from web search results (1-20) |\n| `search_lang` | string | No | `en` | Language preference (2+ char language code) |\n| `ui_lang` | string | No | `en-US` | UI language (locale code, e.g., \"en-US\") |\n| `units` | string | No | null | `metric` (km) or `imperial` (miles) |\n\n### Location Headers (Optional)\n\nFor distance calculation from user location:\n\n| Header | Type | Range | Description |\n|--|--|--|--|\n| `X-Loc-Lat` | float | -90.0 to 90.0 | User latitude |\n| `X-Loc-Long` | float | -180.0 to 180.0 | User longitude |\n\n## Response Fields\n\nThe response has `type: \"local_pois\"` and a `results` array of `LocationResult` objects:\n\n| Field | Type | Description |\n|--|--|--|\n| `title` | string | Business\u002FPOI name |\n| `url` | string | Canonical URL for the location |\n| `provider_url` | string | Provider page URL |\n| `type` | string | Always `\"location_result\"` |\n| `id` | string | POI identifier (opaque string, valid ~8 hours) |\n| `description` | string? | Short description |\n| `postal_address.type` | string | Always `\"PostalAddress\"` |\n| `postal_address.displayAddress` | string | Formatted display address |\n| `postal_address.streetAddress` | string? | Street address |\n| `postal_address.addressLocality` | string? | City |\n| `postal_address.addressRegion` | string? | State\u002Fregion |\n| `postal_address.postalCode` | string? | Postal\u002FZIP code |\n| `postal_address.country` | string? | Country code |\n| `contact.telephone` | string? | Phone number |\n| `contact.email` | string? | Email address |\n| `rating.ratingValue` | float? | Average rating (≥0) |\n| `rating.bestRating` | float? | Max possible rating |\n| `rating.reviewCount` | int? | Number of reviews |\n| `rating.profile.name` | string? | Rating provider name |\n| `rating.profile.url` | string? | Rating provider URL |\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 (same structure) |\n| `coordinates` | [float, float]? | `[latitude, longitude]` tuple |\n| `distance.value` | float? | Distance from user location |\n| `distance.units` | string? | Distance unit (`km` or `miles`) |\n| `categories` | string[] | Business categories (default `[]`) |\n| `price_range` | string? | Price indicator (`$`, `$$`, `$$$`, `$$$$`) |\n| `serves_cuisine` | string[]? | Cuisine types (restaurants) |\n| `thumbnail.src` | string? | Thumbnail image URL |\n| `thumbnail.original` | string? | Original image URL |\n| `profiles` | object[]? | External profiles (`name`, `url`, `long_name`, `img`) |\n| `reviews.reviews_in_foreign_language` | bool | Whether reviews in a foreign language are available |\n| `pictures.results` | object[]? | Photo thumbnails |\n| `action` | object? | Action to take — has `type` (string) and `url` (string) |\n| `results` | object[]? | Related web results (`LocationWebResult` with `meta_url`) |\n| `timezone` | string? | IANA timezone (e.g., `America\u002FLos_Angeles`) |\n| `timezone_offset` | int? | UTC timezone offset |\n\n### Example Response\n\n```json\n{\n  \"type\": \"local_pois\",\n  \"results\": [\n    {\n      \"type\": \"location_result\",\n      \"title\": \"Park Mediterranean Grill\",\n      \"url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fpark-mediterranean-grill-sf\",\n      \"provider_url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fpark-mediterranean-grill-sf\",\n      \"id\": \"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\",\n      \"postal_address\": {\n        \"type\": \"PostalAddress\",\n        \"displayAddress\": \"123 Main St, San Francisco, CA 94102\",\n        \"streetAddress\": \"123 Main St\",\n        \"addressLocality\": \"San Francisco\",\n        \"addressRegion\": \"CA\",\n        \"postalCode\": \"94102\",\n        \"country\": \"US\"\n      },\n      \"contact\": { \"telephone\": \"+1 415-555-0123\" },\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fexample.com\u002Fthumb.jpg\",\n        \"original\": \"https:\u002F\u002Fexample.com\u002Foriginal.jpg\"\n      },\n      \"rating\": {\n        \"ratingValue\": 4.5,\n        \"bestRating\": 5.0,\n        \"reviewCount\": 234,\n      },\n      \"opening_hours\": {\n        \"current_day\": [\n          { \"abbr_name\": \"Mon\", \"full_name\": \"Monday\", \"opens\": \"07:00\", \"closes\": \"21:00\" }\n        ]\n      },\n      \"coordinates\": [37.7749, -122.4194],\n      \"distance\": { \"value\": 0.3, \"units\": \"miles\" },\n      \"categories\": [\"Mediterranean\", \"Greek\"],\n      \"price_range\": \"$$\",\n      \"serves_cuisine\": [\"Mediterranean\", \"Greek\"],\n      \"timezone\": \"America\u002FLos_Angeles\"\n    }\n  ]\n}\n```\n\n## Getting POI IDs\n\nPOI IDs come from the **Web Search API** (`web-search`) with `result_filter=locations`:\n\n```bash\n# 1. Search for local businesses\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fweb\u002Fsearch?q=coffee+shops+near+me&result_filter=locations\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\"\n\n# 2. Extract POI IDs from locations.results[].id\n# 3. Use those IDs with this endpoint\n```\n\n## Use Cases\n\n- **Local business lookup**: Retrieve full details (hours, contact, address) for POIs surfaced in web search\n- **Restaurant discovery pipeline**: Search for restaurants, fetch POI details, filter by cuisine\u002Frating\u002Fprice_range\n- **Business hours checker**: Get opening_hours for a business to determine if currently open\n- **Location-aware application**: Combine with location headers to get distance calculations for nearby POIs\n\n## Notes\n\n- **ID format**: Opaque strings (use `--data-urlencode` for cURL)\n- **Units**: `metric` or `imperial` for distance measurement preference\n- **Max IDs**: Up to 20 IDs per request\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,141,148,155,329,335,576,622,628,644,662,668,862,868,873,956,962,991,1991,1997,3398,3404,3429,3594,3600,3644,3650,3702],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"local-pois-search-api",[44],{"type":45,"value":46},"text","Local POIs (Search API)",{"type":39,"tag":48,"props":49,"children":50},"blockquote",{},[51,71,93,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,85,87],{"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":20},{"type":45,"value":86}," plan. See ",{"type":39,"tag":64,"props":88,"children":91},{"href":89,"rel":90},"https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe",[68],[92],{"type":45,"value":89},{"type":39,"tag":52,"props":94,"children":95},{},[96,101],{"type":39,"tag":56,"props":97,"children":98},{},[99],{"type":45,"value":100},"Two-step flow",{"type":45,"value":102},": This endpoint requires POI IDs from a prior web search.",{"type":39,"tag":104,"props":105,"children":106},"ol",{},[107,136],{"type":39,"tag":108,"props":109,"children":110},"li",{},[111,113,120,122,128,130],{"type":45,"value":112},"Call ",{"type":39,"tag":114,"props":115,"children":117},"code",{"className":116},[],[118],{"type":45,"value":119},"web-search",{"type":45,"value":121}," with ",{"type":39,"tag":114,"props":123,"children":125},{"className":124},[],[126],{"type":45,"value":127},"result_filter=locations",{"type":45,"value":129}," to get POI IDs from ",{"type":39,"tag":114,"props":131,"children":133},{"className":132},[],[134],{"type":45,"value":135},"locations.results[].id",{"type":39,"tag":108,"props":137,"children":138},{},[139],{"type":45,"value":140},"Pass those IDs to this endpoint to get full business details",{"type":39,"tag":142,"props":143,"children":145},"h2",{"id":144},"quick-start-curl",[146],{"type":45,"value":147},"Quick Start (cURL)",{"type":39,"tag":149,"props":150,"children":152},"h3",{"id":151},"get-poi-details",[153],{"type":45,"value":154},"Get POI Details",{"type":39,"tag":156,"props":157,"children":162},"pre",{"className":158,"code":159,"language":160,"meta":161,"style":161},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\"\n","bash","",[163],{"type":39,"tag":114,"props":164,"children":165},{"__ignoreMap":161},[166,206,232,257,293,306],{"type":39,"tag":167,"props":168,"children":171},"span",{"class":169,"line":170},"line",1,[172,178,184,190,195,200],{"type":39,"tag":167,"props":173,"children":175},{"style":174},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[176],{"type":45,"value":177},"curl",{"type":39,"tag":167,"props":179,"children":181},{"style":180},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[182],{"type":45,"value":183}," -s",{"type":39,"tag":167,"props":185,"children":187},{"style":186},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[188],{"type":45,"value":189}," \"",{"type":39,"tag":167,"props":191,"children":192},{"style":180},[193],{"type":45,"value":194},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois",{"type":39,"tag":167,"props":196,"children":197},{"style":186},[198],{"type":45,"value":199},"\"",{"type":39,"tag":167,"props":201,"children":203},{"style":202},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[204],{"type":45,"value":205}," \\\n",{"type":39,"tag":167,"props":207,"children":209},{"class":169,"line":208},2,[210,215,219,224,228],{"type":39,"tag":167,"props":211,"children":212},{"style":180},[213],{"type":45,"value":214},"  -H",{"type":39,"tag":167,"props":216,"children":217},{"style":186},[218],{"type":45,"value":189},{"type":39,"tag":167,"props":220,"children":221},{"style":180},[222],{"type":45,"value":223},"Accept: application\u002Fjson",{"type":39,"tag":167,"props":225,"children":226},{"style":186},[227],{"type":45,"value":199},{"type":39,"tag":167,"props":229,"children":230},{"style":202},[231],{"type":45,"value":205},{"type":39,"tag":167,"props":233,"children":235},{"class":169,"line":234},3,[236,240,244,249,253],{"type":39,"tag":167,"props":237,"children":238},{"style":180},[239],{"type":45,"value":214},{"type":39,"tag":167,"props":241,"children":242},{"style":186},[243],{"type":45,"value":189},{"type":39,"tag":167,"props":245,"children":246},{"style":180},[247],{"type":45,"value":248},"Accept-Encoding: gzip",{"type":39,"tag":167,"props":250,"children":251},{"style":186},[252],{"type":45,"value":199},{"type":39,"tag":167,"props":254,"children":255},{"style":202},[256],{"type":45,"value":205},{"type":39,"tag":167,"props":258,"children":260},{"class":169,"line":259},4,[261,265,269,274,279,284,289],{"type":39,"tag":167,"props":262,"children":263},{"style":180},[264],{"type":45,"value":214},{"type":39,"tag":167,"props":266,"children":267},{"style":186},[268],{"type":45,"value":189},{"type":39,"tag":167,"props":270,"children":271},{"style":180},[272],{"type":45,"value":273},"X-Subscription-Token: ",{"type":39,"tag":167,"props":275,"children":276},{"style":186},[277],{"type":45,"value":278},"${",{"type":39,"tag":167,"props":280,"children":281},{"style":202},[282],{"type":45,"value":283},"BRAVE_SEARCH_API_KEY",{"type":39,"tag":167,"props":285,"children":286},{"style":186},[287],{"type":45,"value":288},"}\"",{"type":39,"tag":167,"props":290,"children":291},{"style":202},[292],{"type":45,"value":205},{"type":39,"tag":167,"props":294,"children":296},{"class":169,"line":295},5,[297,302],{"type":39,"tag":167,"props":298,"children":299},{"style":180},[300],{"type":45,"value":301},"  -G",{"type":39,"tag":167,"props":303,"children":304},{"style":202},[305],{"type":45,"value":205},{"type":39,"tag":167,"props":307,"children":309},{"class":169,"line":308},6,[310,315,319,324],{"type":39,"tag":167,"props":311,"children":312},{"style":180},[313],{"type":45,"value":314},"  --data-urlencode",{"type":39,"tag":167,"props":316,"children":317},{"style":186},[318],{"type":45,"value":189},{"type":39,"tag":167,"props":320,"children":321},{"style":180},[322],{"type":45,"value":323},"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=",{"type":39,"tag":167,"props":325,"children":326},{"style":186},[327],{"type":45,"value":328},"\"\n",{"type":39,"tag":149,"props":330,"children":332},{"id":331},"multiple-pois-with-location-headers",[333],{"type":45,"value":334},"Multiple POIs with Location Headers",{"type":39,"tag":156,"props":336,"children":338},{"className":158,"code":337,"language":160,"meta":161,"style":161},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"Accept-Encoding: gzip\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\" \\\n  -G \\\n  --data-urlencode \"ids=loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\" \\\n  --data-urlencode \"ids=loc4HTAVTJKP4RBEBZCEMBI3NG26YD4II4PATIHPDYI=\" \\\n  --data-urlencode \"units=imperial\"\n",[339],{"type":39,"tag":114,"props":340,"children":341},{"__ignoreMap":161},[342,369,392,415,446,470,494,506,530,555],{"type":39,"tag":167,"props":343,"children":344},{"class":169,"line":170},[345,349,353,357,361,365],{"type":39,"tag":167,"props":346,"children":347},{"style":174},[348],{"type":45,"value":177},{"type":39,"tag":167,"props":350,"children":351},{"style":180},[352],{"type":45,"value":183},{"type":39,"tag":167,"props":354,"children":355},{"style":186},[356],{"type":45,"value":189},{"type":39,"tag":167,"props":358,"children":359},{"style":180},[360],{"type":45,"value":194},{"type":39,"tag":167,"props":362,"children":363},{"style":186},[364],{"type":45,"value":199},{"type":39,"tag":167,"props":366,"children":367},{"style":202},[368],{"type":45,"value":205},{"type":39,"tag":167,"props":370,"children":371},{"class":169,"line":208},[372,376,380,384,388],{"type":39,"tag":167,"props":373,"children":374},{"style":180},[375],{"type":45,"value":214},{"type":39,"tag":167,"props":377,"children":378},{"style":186},[379],{"type":45,"value":189},{"type":39,"tag":167,"props":381,"children":382},{"style":180},[383],{"type":45,"value":223},{"type":39,"tag":167,"props":385,"children":386},{"style":186},[387],{"type":45,"value":199},{"type":39,"tag":167,"props":389,"children":390},{"style":202},[391],{"type":45,"value":205},{"type":39,"tag":167,"props":393,"children":394},{"class":169,"line":234},[395,399,403,407,411],{"type":39,"tag":167,"props":396,"children":397},{"style":180},[398],{"type":45,"value":214},{"type":39,"tag":167,"props":400,"children":401},{"style":186},[402],{"type":45,"value":189},{"type":39,"tag":167,"props":404,"children":405},{"style":180},[406],{"type":45,"value":248},{"type":39,"tag":167,"props":408,"children":409},{"style":186},[410],{"type":45,"value":199},{"type":39,"tag":167,"props":412,"children":413},{"style":202},[414],{"type":45,"value":205},{"type":39,"tag":167,"props":416,"children":417},{"class":169,"line":259},[418,422,426,430,434,438,442],{"type":39,"tag":167,"props":419,"children":420},{"style":180},[421],{"type":45,"value":214},{"type":39,"tag":167,"props":423,"children":424},{"style":186},[425],{"type":45,"value":189},{"type":39,"tag":167,"props":427,"children":428},{"style":180},[429],{"type":45,"value":273},{"type":39,"tag":167,"props":431,"children":432},{"style":186},[433],{"type":45,"value":278},{"type":39,"tag":167,"props":435,"children":436},{"style":202},[437],{"type":45,"value":283},{"type":39,"tag":167,"props":439,"children":440},{"style":186},[441],{"type":45,"value":288},{"type":39,"tag":167,"props":443,"children":444},{"style":202},[445],{"type":45,"value":205},{"type":39,"tag":167,"props":447,"children":448},{"class":169,"line":295},[449,453,457,462,466],{"type":39,"tag":167,"props":450,"children":451},{"style":180},[452],{"type":45,"value":214},{"type":39,"tag":167,"props":454,"children":455},{"style":186},[456],{"type":45,"value":189},{"type":39,"tag":167,"props":458,"children":459},{"style":180},[460],{"type":45,"value":461},"X-Loc-Lat: 37.7749",{"type":39,"tag":167,"props":463,"children":464},{"style":186},[465],{"type":45,"value":199},{"type":39,"tag":167,"props":467,"children":468},{"style":202},[469],{"type":45,"value":205},{"type":39,"tag":167,"props":471,"children":472},{"class":169,"line":308},[473,477,481,486,490],{"type":39,"tag":167,"props":474,"children":475},{"style":180},[476],{"type":45,"value":214},{"type":39,"tag":167,"props":478,"children":479},{"style":186},[480],{"type":45,"value":189},{"type":39,"tag":167,"props":482,"children":483},{"style":180},[484],{"type":45,"value":485},"X-Loc-Long: -122.4194",{"type":39,"tag":167,"props":487,"children":488},{"style":186},[489],{"type":45,"value":199},{"type":39,"tag":167,"props":491,"children":492},{"style":202},[493],{"type":45,"value":205},{"type":39,"tag":167,"props":495,"children":497},{"class":169,"line":496},7,[498,502],{"type":39,"tag":167,"props":499,"children":500},{"style":180},[501],{"type":45,"value":301},{"type":39,"tag":167,"props":503,"children":504},{"style":202},[505],{"type":45,"value":205},{"type":39,"tag":167,"props":507,"children":509},{"class":169,"line":508},8,[510,514,518,522,526],{"type":39,"tag":167,"props":511,"children":512},{"style":180},[513],{"type":45,"value":314},{"type":39,"tag":167,"props":515,"children":516},{"style":186},[517],{"type":45,"value":189},{"type":39,"tag":167,"props":519,"children":520},{"style":180},[521],{"type":45,"value":323},{"type":39,"tag":167,"props":523,"children":524},{"style":186},[525],{"type":45,"value":199},{"type":39,"tag":167,"props":527,"children":528},{"style":202},[529],{"type":45,"value":205},{"type":39,"tag":167,"props":531,"children":533},{"class":169,"line":532},9,[534,538,542,547,551],{"type":39,"tag":167,"props":535,"children":536},{"style":180},[537],{"type":45,"value":314},{"type":39,"tag":167,"props":539,"children":540},{"style":186},[541],{"type":45,"value":189},{"type":39,"tag":167,"props":543,"children":544},{"style":180},[545],{"type":45,"value":546},"ids=loc4HTAVTJKP4RBEBZCEMBI3NG26YD4II4PATIHPDYI=",{"type":39,"tag":167,"props":548,"children":549},{"style":186},[550],{"type":45,"value":199},{"type":39,"tag":167,"props":552,"children":553},{"style":202},[554],{"type":45,"value":205},{"type":39,"tag":167,"props":556,"children":558},{"class":169,"line":557},10,[559,563,567,572],{"type":39,"tag":167,"props":560,"children":561},{"style":180},[562],{"type":45,"value":314},{"type":39,"tag":167,"props":564,"children":565},{"style":186},[566],{"type":45,"value":189},{"type":39,"tag":167,"props":568,"children":569},{"style":180},[570],{"type":45,"value":571},"units=imperial",{"type":39,"tag":167,"props":573,"children":574},{"style":186},[575],{"type":45,"value":328},{"type":39,"tag":52,"props":577,"children":578},{},[579,584,586,591,593,598,599,604,606,612,614,620],{"type":39,"tag":56,"props":580,"children":581},{},[582],{"type":45,"value":583},"Note",{"type":45,"value":585},": POI IDs are opaque strings returned in web search ",{"type":39,"tag":114,"props":587,"children":589},{"className":588},[],[590],{"type":45,"value":135},{"type":45,"value":592},". IDs are ephemeral and expire after ~8 hours. The example IDs above are for illustration — fetch fresh IDs via ",{"type":39,"tag":114,"props":594,"children":596},{"className":595},[],[597],{"type":45,"value":119},{"type":45,"value":121},{"type":39,"tag":114,"props":600,"children":602},{"className":601},[],[603],{"type":45,"value":127},{"type":45,"value":605},". Use ",{"type":39,"tag":114,"props":607,"children":609},{"className":608},[],[610],{"type":45,"value":611},"--data-urlencode",{"type":45,"value":613}," since IDs may contain ",{"type":39,"tag":114,"props":615,"children":617},{"className":616},[],[618],{"type":45,"value":619},"=",{"type":45,"value":621},".",{"type":39,"tag":142,"props":623,"children":625},{"id":624},"endpoint",[626],{"type":45,"value":627},"Endpoint",{"type":39,"tag":156,"props":629,"children":633},{"className":630,"code":631,"language":632,"meta":161,"style":161},"language-http shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","GET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Flocal\u002Fpois\n","http",[634],{"type":39,"tag":114,"props":635,"children":636},{"__ignoreMap":161},[637],{"type":39,"tag":167,"props":638,"children":639},{"class":169,"line":170},[640],{"type":39,"tag":167,"props":641,"children":642},{},[643],{"type":45,"value":631},{"type":39,"tag":52,"props":645,"children":646},{},[647,652,654,660],{"type":39,"tag":56,"props":648,"children":649},{},[650],{"type":45,"value":651},"Authentication",{"type":45,"value":653},": ",{"type":39,"tag":114,"props":655,"children":657},{"className":656},[],[658],{"type":45,"value":659},"X-Subscription-Token: \u003CAPI_KEY>",{"type":45,"value":661}," header",{"type":39,"tag":142,"props":663,"children":665},{"id":664},"parameters",[666],{"type":45,"value":667},"Parameters",{"type":39,"tag":669,"props":670,"children":671},"table",{},[672,706],{"type":39,"tag":673,"props":674,"children":675},"thead",{},[676],{"type":39,"tag":677,"props":678,"children":679},"tr",{},[680,686,691,696,701],{"type":39,"tag":681,"props":682,"children":683},"th",{},[684],{"type":45,"value":685},"Parameter",{"type":39,"tag":681,"props":687,"children":688},{},[689],{"type":45,"value":690},"Type",{"type":39,"tag":681,"props":692,"children":693},{},[694],{"type":45,"value":695},"Required",{"type":39,"tag":681,"props":697,"children":698},{},[699],{"type":45,"value":700},"Default",{"type":39,"tag":681,"props":702,"children":703},{},[704],{"type":45,"value":705},"Description",{"type":39,"tag":707,"props":708,"children":709},"tbody",{},[710,749,784,818],{"type":39,"tag":677,"props":711,"children":712},{},[713,723,731,739,744],{"type":39,"tag":714,"props":715,"children":716},"td",{},[717],{"type":39,"tag":114,"props":718,"children":720},{"className":719},[],[721],{"type":45,"value":722},"ids",{"type":39,"tag":714,"props":724,"children":725},{},[726,728],{"type":45,"value":727},"string",{"type":39,"tag":167,"props":729,"children":730},{},[],{"type":39,"tag":714,"props":732,"children":733},{},[734],{"type":39,"tag":56,"props":735,"children":736},{},[737],{"type":45,"value":738},"Yes",{"type":39,"tag":714,"props":740,"children":741},{},[742],{"type":45,"value":743},"—",{"type":39,"tag":714,"props":745,"children":746},{},[747],{"type":45,"value":748},"POI IDs from web search results (1-20)",{"type":39,"tag":677,"props":750,"children":751},{},[752,761,765,770,779],{"type":39,"tag":714,"props":753,"children":754},{},[755],{"type":39,"tag":114,"props":756,"children":758},{"className":757},[],[759],{"type":45,"value":760},"search_lang",{"type":39,"tag":714,"props":762,"children":763},{},[764],{"type":45,"value":727},{"type":39,"tag":714,"props":766,"children":767},{},[768],{"type":45,"value":769},"No",{"type":39,"tag":714,"props":771,"children":772},{},[773],{"type":39,"tag":114,"props":774,"children":776},{"className":775},[],[777],{"type":45,"value":778},"en",{"type":39,"tag":714,"props":780,"children":781},{},[782],{"type":45,"value":783},"Language preference (2+ char language code)",{"type":39,"tag":677,"props":785,"children":786},{},[787,796,800,804,813],{"type":39,"tag":714,"props":788,"children":789},{},[790],{"type":39,"tag":114,"props":791,"children":793},{"className":792},[],[794],{"type":45,"value":795},"ui_lang",{"type":39,"tag":714,"props":797,"children":798},{},[799],{"type":45,"value":727},{"type":39,"tag":714,"props":801,"children":802},{},[803],{"type":45,"value":769},{"type":39,"tag":714,"props":805,"children":806},{},[807],{"type":39,"tag":114,"props":808,"children":810},{"className":809},[],[811],{"type":45,"value":812},"en-US",{"type":39,"tag":714,"props":814,"children":815},{},[816],{"type":45,"value":817},"UI language (locale code, e.g., \"en-US\")",{"type":39,"tag":677,"props":819,"children":820},{},[821,830,834,838,843],{"type":39,"tag":714,"props":822,"children":823},{},[824],{"type":39,"tag":114,"props":825,"children":827},{"className":826},[],[828],{"type":45,"value":829},"units",{"type":39,"tag":714,"props":831,"children":832},{},[833],{"type":45,"value":727},{"type":39,"tag":714,"props":835,"children":836},{},[837],{"type":45,"value":769},{"type":39,"tag":714,"props":839,"children":840},{},[841],{"type":45,"value":842},"null",{"type":39,"tag":714,"props":844,"children":845},{},[846,852,854,860],{"type":39,"tag":114,"props":847,"children":849},{"className":848},[],[850],{"type":45,"value":851},"metric",{"type":45,"value":853}," (km) or ",{"type":39,"tag":114,"props":855,"children":857},{"className":856},[],[858],{"type":45,"value":859},"imperial",{"type":45,"value":861}," (miles)",{"type":39,"tag":149,"props":863,"children":865},{"id":864},"location-headers-optional",[866],{"type":45,"value":867},"Location Headers (Optional)",{"type":39,"tag":52,"props":869,"children":870},{},[871],{"type":45,"value":872},"For distance calculation from user location:",{"type":39,"tag":669,"props":874,"children":875},{},[876,900],{"type":39,"tag":673,"props":877,"children":878},{},[879],{"type":39,"tag":677,"props":880,"children":881},{},[882,887,891,896],{"type":39,"tag":681,"props":883,"children":884},{},[885],{"type":45,"value":886},"Header",{"type":39,"tag":681,"props":888,"children":889},{},[890],{"type":45,"value":690},{"type":39,"tag":681,"props":892,"children":893},{},[894],{"type":45,"value":895},"Range",{"type":39,"tag":681,"props":897,"children":898},{},[899],{"type":45,"value":705},{"type":39,"tag":707,"props":901,"children":902},{},[903,930],{"type":39,"tag":677,"props":904,"children":905},{},[906,915,920,925],{"type":39,"tag":714,"props":907,"children":908},{},[909],{"type":39,"tag":114,"props":910,"children":912},{"className":911},[],[913],{"type":45,"value":914},"X-Loc-Lat",{"type":39,"tag":714,"props":916,"children":917},{},[918],{"type":45,"value":919},"float",{"type":39,"tag":714,"props":921,"children":922},{},[923],{"type":45,"value":924},"-90.0 to 90.0",{"type":39,"tag":714,"props":926,"children":927},{},[928],{"type":45,"value":929},"User latitude",{"type":39,"tag":677,"props":931,"children":932},{},[933,942,946,951],{"type":39,"tag":714,"props":934,"children":935},{},[936],{"type":39,"tag":114,"props":937,"children":939},{"className":938},[],[940],{"type":45,"value":941},"X-Loc-Long",{"type":39,"tag":714,"props":943,"children":944},{},[945],{"type":45,"value":919},{"type":39,"tag":714,"props":947,"children":948},{},[949],{"type":45,"value":950},"-180.0 to 180.0",{"type":39,"tag":714,"props":952,"children":953},{},[954],{"type":45,"value":955},"User longitude",{"type":39,"tag":142,"props":957,"children":959},{"id":958},"response-fields",[960],{"type":45,"value":961},"Response Fields",{"type":39,"tag":52,"props":963,"children":964},{},[965,967,973,975,981,983,989],{"type":45,"value":966},"The response has ",{"type":39,"tag":114,"props":968,"children":970},{"className":969},[],[971],{"type":45,"value":972},"type: \"local_pois\"",{"type":45,"value":974}," and a ",{"type":39,"tag":114,"props":976,"children":978},{"className":977},[],[979],{"type":45,"value":980},"results",{"type":45,"value":982}," array of ",{"type":39,"tag":114,"props":984,"children":986},{"className":985},[],[987],{"type":45,"value":988},"LocationResult",{"type":45,"value":990}," objects:",{"type":39,"tag":669,"props":992,"children":993},{},[994,1013],{"type":39,"tag":673,"props":995,"children":996},{},[997],{"type":39,"tag":677,"props":998,"children":999},{},[1000,1005,1009],{"type":39,"tag":681,"props":1001,"children":1002},{},[1003],{"type":45,"value":1004},"Field",{"type":39,"tag":681,"props":1006,"children":1007},{},[1008],{"type":45,"value":690},{"type":39,"tag":681,"props":1010,"children":1011},{},[1012],{"type":45,"value":705},{"type":39,"tag":707,"props":1014,"children":1015},{},[1016,1037,1058,1079,1106,1127,1149,1175,1196,1217,1238,1259,1280,1301,1322,1343,1365,1386,1408,1429,1450,1507,1533,1565,1586,1622,1653,1702,1727,1748,1769,1821,1843,1868,1904,1942,1970],{"type":39,"tag":677,"props":1017,"children":1018},{},[1019,1028,1032],{"type":39,"tag":714,"props":1020,"children":1021},{},[1022],{"type":39,"tag":114,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":45,"value":1027},"title",{"type":39,"tag":714,"props":1029,"children":1030},{},[1031],{"type":45,"value":727},{"type":39,"tag":714,"props":1033,"children":1034},{},[1035],{"type":45,"value":1036},"Business\u002FPOI name",{"type":39,"tag":677,"props":1038,"children":1039},{},[1040,1049,1053],{"type":39,"tag":714,"props":1041,"children":1042},{},[1043],{"type":39,"tag":114,"props":1044,"children":1046},{"className":1045},[],[1047],{"type":45,"value":1048},"url",{"type":39,"tag":714,"props":1050,"children":1051},{},[1052],{"type":45,"value":727},{"type":39,"tag":714,"props":1054,"children":1055},{},[1056],{"type":45,"value":1057},"Canonical URL for the location",{"type":39,"tag":677,"props":1059,"children":1060},{},[1061,1070,1074],{"type":39,"tag":714,"props":1062,"children":1063},{},[1064],{"type":39,"tag":114,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":45,"value":1069},"provider_url",{"type":39,"tag":714,"props":1071,"children":1072},{},[1073],{"type":45,"value":727},{"type":39,"tag":714,"props":1075,"children":1076},{},[1077],{"type":45,"value":1078},"Provider page URL",{"type":39,"tag":677,"props":1080,"children":1081},{},[1082,1091,1095],{"type":39,"tag":714,"props":1083,"children":1084},{},[1085],{"type":39,"tag":114,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":45,"value":1090},"type",{"type":39,"tag":714,"props":1092,"children":1093},{},[1094],{"type":45,"value":727},{"type":39,"tag":714,"props":1096,"children":1097},{},[1098,1100],{"type":45,"value":1099},"Always ",{"type":39,"tag":114,"props":1101,"children":1103},{"className":1102},[],[1104],{"type":45,"value":1105},"\"location_result\"",{"type":39,"tag":677,"props":1107,"children":1108},{},[1109,1118,1122],{"type":39,"tag":714,"props":1110,"children":1111},{},[1112],{"type":39,"tag":114,"props":1113,"children":1115},{"className":1114},[],[1116],{"type":45,"value":1117},"id",{"type":39,"tag":714,"props":1119,"children":1120},{},[1121],{"type":45,"value":727},{"type":39,"tag":714,"props":1123,"children":1124},{},[1125],{"type":45,"value":1126},"POI identifier (opaque string, valid ~8 hours)",{"type":39,"tag":677,"props":1128,"children":1129},{},[1130,1139,1144],{"type":39,"tag":714,"props":1131,"children":1132},{},[1133],{"type":39,"tag":114,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":45,"value":1138},"description",{"type":39,"tag":714,"props":1140,"children":1141},{},[1142],{"type":45,"value":1143},"string?",{"type":39,"tag":714,"props":1145,"children":1146},{},[1147],{"type":45,"value":1148},"Short description",{"type":39,"tag":677,"props":1150,"children":1151},{},[1152,1161,1165],{"type":39,"tag":714,"props":1153,"children":1154},{},[1155],{"type":39,"tag":114,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":45,"value":1160},"postal_address.type",{"type":39,"tag":714,"props":1162,"children":1163},{},[1164],{"type":45,"value":727},{"type":39,"tag":714,"props":1166,"children":1167},{},[1168,1169],{"type":45,"value":1099},{"type":39,"tag":114,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":45,"value":1174},"\"PostalAddress\"",{"type":39,"tag":677,"props":1176,"children":1177},{},[1178,1187,1191],{"type":39,"tag":714,"props":1179,"children":1180},{},[1181],{"type":39,"tag":114,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":45,"value":1186},"postal_address.displayAddress",{"type":39,"tag":714,"props":1188,"children":1189},{},[1190],{"type":45,"value":727},{"type":39,"tag":714,"props":1192,"children":1193},{},[1194],{"type":45,"value":1195},"Formatted display address",{"type":39,"tag":677,"props":1197,"children":1198},{},[1199,1208,1212],{"type":39,"tag":714,"props":1200,"children":1201},{},[1202],{"type":39,"tag":114,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":45,"value":1207},"postal_address.streetAddress",{"type":39,"tag":714,"props":1209,"children":1210},{},[1211],{"type":45,"value":1143},{"type":39,"tag":714,"props":1213,"children":1214},{},[1215],{"type":45,"value":1216},"Street address",{"type":39,"tag":677,"props":1218,"children":1219},{},[1220,1229,1233],{"type":39,"tag":714,"props":1221,"children":1222},{},[1223],{"type":39,"tag":114,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":45,"value":1228},"postal_address.addressLocality",{"type":39,"tag":714,"props":1230,"children":1231},{},[1232],{"type":45,"value":1143},{"type":39,"tag":714,"props":1234,"children":1235},{},[1236],{"type":45,"value":1237},"City",{"type":39,"tag":677,"props":1239,"children":1240},{},[1241,1250,1254],{"type":39,"tag":714,"props":1242,"children":1243},{},[1244],{"type":39,"tag":114,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":45,"value":1249},"postal_address.addressRegion",{"type":39,"tag":714,"props":1251,"children":1252},{},[1253],{"type":45,"value":1143},{"type":39,"tag":714,"props":1255,"children":1256},{},[1257],{"type":45,"value":1258},"State\u002Fregion",{"type":39,"tag":677,"props":1260,"children":1261},{},[1262,1271,1275],{"type":39,"tag":714,"props":1263,"children":1264},{},[1265],{"type":39,"tag":114,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":45,"value":1270},"postal_address.postalCode",{"type":39,"tag":714,"props":1272,"children":1273},{},[1274],{"type":45,"value":1143},{"type":39,"tag":714,"props":1276,"children":1277},{},[1278],{"type":45,"value":1279},"Postal\u002FZIP code",{"type":39,"tag":677,"props":1281,"children":1282},{},[1283,1292,1296],{"type":39,"tag":714,"props":1284,"children":1285},{},[1286],{"type":39,"tag":114,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":45,"value":1291},"postal_address.country",{"type":39,"tag":714,"props":1293,"children":1294},{},[1295],{"type":45,"value":1143},{"type":39,"tag":714,"props":1297,"children":1298},{},[1299],{"type":45,"value":1300},"Country code",{"type":39,"tag":677,"props":1302,"children":1303},{},[1304,1313,1317],{"type":39,"tag":714,"props":1305,"children":1306},{},[1307],{"type":39,"tag":114,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":45,"value":1312},"contact.telephone",{"type":39,"tag":714,"props":1314,"children":1315},{},[1316],{"type":45,"value":1143},{"type":39,"tag":714,"props":1318,"children":1319},{},[1320],{"type":45,"value":1321},"Phone number",{"type":39,"tag":677,"props":1323,"children":1324},{},[1325,1334,1338],{"type":39,"tag":714,"props":1326,"children":1327},{},[1328],{"type":39,"tag":114,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":45,"value":1333},"contact.email",{"type":39,"tag":714,"props":1335,"children":1336},{},[1337],{"type":45,"value":1143},{"type":39,"tag":714,"props":1339,"children":1340},{},[1341],{"type":45,"value":1342},"Email address",{"type":39,"tag":677,"props":1344,"children":1345},{},[1346,1355,1360],{"type":39,"tag":714,"props":1347,"children":1348},{},[1349],{"type":39,"tag":114,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":45,"value":1354},"rating.ratingValue",{"type":39,"tag":714,"props":1356,"children":1357},{},[1358],{"type":45,"value":1359},"float?",{"type":39,"tag":714,"props":1361,"children":1362},{},[1363],{"type":45,"value":1364},"Average rating (≥0)",{"type":39,"tag":677,"props":1366,"children":1367},{},[1368,1377,1381],{"type":39,"tag":714,"props":1369,"children":1370},{},[1371],{"type":39,"tag":114,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":45,"value":1376},"rating.bestRating",{"type":39,"tag":714,"props":1378,"children":1379},{},[1380],{"type":45,"value":1359},{"type":39,"tag":714,"props":1382,"children":1383},{},[1384],{"type":45,"value":1385},"Max possible rating",{"type":39,"tag":677,"props":1387,"children":1388},{},[1389,1398,1403],{"type":39,"tag":714,"props":1390,"children":1391},{},[1392],{"type":39,"tag":114,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":45,"value":1397},"rating.reviewCount",{"type":39,"tag":714,"props":1399,"children":1400},{},[1401],{"type":45,"value":1402},"int?",{"type":39,"tag":714,"props":1404,"children":1405},{},[1406],{"type":45,"value":1407},"Number of reviews",{"type":39,"tag":677,"props":1409,"children":1410},{},[1411,1420,1424],{"type":39,"tag":714,"props":1412,"children":1413},{},[1414],{"type":39,"tag":114,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":45,"value":1419},"rating.profile.name",{"type":39,"tag":714,"props":1421,"children":1422},{},[1423],{"type":45,"value":1143},{"type":39,"tag":714,"props":1425,"children":1426},{},[1427],{"type":45,"value":1428},"Rating provider name",{"type":39,"tag":677,"props":1430,"children":1431},{},[1432,1441,1445],{"type":39,"tag":714,"props":1433,"children":1434},{},[1435],{"type":39,"tag":114,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":45,"value":1440},"rating.profile.url",{"type":39,"tag":714,"props":1442,"children":1443},{},[1444],{"type":45,"value":1143},{"type":39,"tag":714,"props":1446,"children":1447},{},[1448],{"type":45,"value":1449},"Rating provider URL",{"type":39,"tag":677,"props":1451,"children":1452},{},[1453,1462,1472],{"type":39,"tag":714,"props":1454,"children":1455},{},[1456],{"type":39,"tag":114,"props":1457,"children":1459},{"className":1458},[],[1460],{"type":45,"value":1461},"opening_hours.current_day",{"type":39,"tag":714,"props":1463,"children":1464},{},[1465,1467,1470],{"type":45,"value":1466},"object",{"type":39,"tag":167,"props":1468,"children":1469},{},[],{"type":45,"value":1471},"?",{"type":39,"tag":714,"props":1473,"children":1474},{},[1475,1477,1483,1485,1491,1492,1498,1499,1505],{"type":45,"value":1476},"Today's hours (",{"type":39,"tag":114,"props":1478,"children":1480},{"className":1479},[],[1481],{"type":45,"value":1482},"abbr_name",{"type":45,"value":1484},", ",{"type":39,"tag":114,"props":1486,"children":1488},{"className":1487},[],[1489],{"type":45,"value":1490},"full_name",{"type":45,"value":1484},{"type":39,"tag":114,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":45,"value":1497},"opens",{"type":45,"value":1484},{"type":39,"tag":114,"props":1500,"children":1502},{"className":1501},[],[1503],{"type":45,"value":1504},"closes",{"type":45,"value":1506},")",{"type":39,"tag":677,"props":1508,"children":1509},{},[1510,1519,1528],{"type":39,"tag":714,"props":1511,"children":1512},{},[1513],{"type":39,"tag":114,"props":1514,"children":1516},{"className":1515},[],[1517],{"type":45,"value":1518},"opening_hours.days",{"type":39,"tag":714,"props":1520,"children":1521},{},[1522,1524,1527],{"type":45,"value":1523},"object[]",{"type":39,"tag":167,"props":1525,"children":1526},{},[],{"type":45,"value":1471},{"type":39,"tag":714,"props":1529,"children":1530},{},[1531],{"type":45,"value":1532},"Hours for each day of the week (same structure)",{"type":39,"tag":677,"props":1534,"children":1535},{},[1536,1545,1554],{"type":39,"tag":714,"props":1537,"children":1538},{},[1539],{"type":39,"tag":114,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":45,"value":1544},"coordinates",{"type":39,"tag":714,"props":1546,"children":1547},{},[1548,1553],{"type":39,"tag":167,"props":1549,"children":1550},{},[1551],{"type":45,"value":1552},"float, float",{"type":45,"value":1471},{"type":39,"tag":714,"props":1555,"children":1556},{},[1557,1563],{"type":39,"tag":114,"props":1558,"children":1560},{"className":1559},[],[1561],{"type":45,"value":1562},"[latitude, longitude]",{"type":45,"value":1564}," tuple",{"type":39,"tag":677,"props":1566,"children":1567},{},[1568,1577,1581],{"type":39,"tag":714,"props":1569,"children":1570},{},[1571],{"type":39,"tag":114,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":45,"value":1576},"distance.value",{"type":39,"tag":714,"props":1578,"children":1579},{},[1580],{"type":45,"value":1359},{"type":39,"tag":714,"props":1582,"children":1583},{},[1584],{"type":45,"value":1585},"Distance from user location",{"type":39,"tag":677,"props":1587,"children":1588},{},[1589,1598,1602],{"type":39,"tag":714,"props":1590,"children":1591},{},[1592],{"type":39,"tag":114,"props":1593,"children":1595},{"className":1594},[],[1596],{"type":45,"value":1597},"distance.units",{"type":39,"tag":714,"props":1599,"children":1600},{},[1601],{"type":45,"value":1143},{"type":39,"tag":714,"props":1603,"children":1604},{},[1605,1607,1613,1615,1621],{"type":45,"value":1606},"Distance unit (",{"type":39,"tag":114,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":45,"value":1612},"km",{"type":45,"value":1614}," or ",{"type":39,"tag":114,"props":1616,"children":1618},{"className":1617},[],[1619],{"type":45,"value":1620},"miles",{"type":45,"value":1506},{"type":39,"tag":677,"props":1623,"children":1624},{},[1625,1634,1641],{"type":39,"tag":714,"props":1626,"children":1627},{},[1628],{"type":39,"tag":114,"props":1629,"children":1631},{"className":1630},[],[1632],{"type":45,"value":1633},"categories",{"type":39,"tag":714,"props":1635,"children":1636},{},[1637,1638],{"type":45,"value":727},{"type":39,"tag":167,"props":1639,"children":1640},{},[],{"type":39,"tag":714,"props":1642,"children":1643},{},[1644,1646,1652],{"type":45,"value":1645},"Business categories (default ",{"type":39,"tag":114,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":45,"value":1651},"[]",{"type":45,"value":1506},{"type":39,"tag":677,"props":1654,"children":1655},{},[1656,1665,1669],{"type":39,"tag":714,"props":1657,"children":1658},{},[1659],{"type":39,"tag":114,"props":1660,"children":1662},{"className":1661},[],[1663],{"type":45,"value":1664},"price_range",{"type":39,"tag":714,"props":1666,"children":1667},{},[1668],{"type":45,"value":1143},{"type":39,"tag":714,"props":1670,"children":1671},{},[1672,1674,1680,1681,1687,1688,1694,1695,1701],{"type":45,"value":1673},"Price indicator (",{"type":39,"tag":114,"props":1675,"children":1677},{"className":1676},[],[1678],{"type":45,"value":1679},"$",{"type":45,"value":1484},{"type":39,"tag":114,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":45,"value":1686},"$$",{"type":45,"value":1484},{"type":39,"tag":114,"props":1689,"children":1691},{"className":1690},[],[1692],{"type":45,"value":1693},"$$$",{"type":45,"value":1484},{"type":39,"tag":114,"props":1696,"children":1698},{"className":1697},[],[1699],{"type":45,"value":1700},"$$$$",{"type":45,"value":1506},{"type":39,"tag":677,"props":1703,"children":1704},{},[1705,1714,1722],{"type":39,"tag":714,"props":1706,"children":1707},{},[1708],{"type":39,"tag":114,"props":1709,"children":1711},{"className":1710},[],[1712],{"type":45,"value":1713},"serves_cuisine",{"type":39,"tag":714,"props":1715,"children":1716},{},[1717,1718,1721],{"type":45,"value":727},{"type":39,"tag":167,"props":1719,"children":1720},{},[],{"type":45,"value":1471},{"type":39,"tag":714,"props":1723,"children":1724},{},[1725],{"type":45,"value":1726},"Cuisine types (restaurants)",{"type":39,"tag":677,"props":1728,"children":1729},{},[1730,1739,1743],{"type":39,"tag":714,"props":1731,"children":1732},{},[1733],{"type":39,"tag":114,"props":1734,"children":1736},{"className":1735},[],[1737],{"type":45,"value":1738},"thumbnail.src",{"type":39,"tag":714,"props":1740,"children":1741},{},[1742],{"type":45,"value":1143},{"type":39,"tag":714,"props":1744,"children":1745},{},[1746],{"type":45,"value":1747},"Thumbnail image URL",{"type":39,"tag":677,"props":1749,"children":1750},{},[1751,1760,1764],{"type":39,"tag":714,"props":1752,"children":1753},{},[1754],{"type":39,"tag":114,"props":1755,"children":1757},{"className":1756},[],[1758],{"type":45,"value":1759},"thumbnail.original",{"type":39,"tag":714,"props":1761,"children":1762},{},[1763],{"type":45,"value":1143},{"type":39,"tag":714,"props":1765,"children":1766},{},[1767],{"type":45,"value":1768},"Original image URL",{"type":39,"tag":677,"props":1770,"children":1771},{},[1772,1781,1789],{"type":39,"tag":714,"props":1773,"children":1774},{},[1775],{"type":39,"tag":114,"props":1776,"children":1778},{"className":1777},[],[1779],{"type":45,"value":1780},"profiles",{"type":39,"tag":714,"props":1782,"children":1783},{},[1784,1785,1788],{"type":45,"value":1466},{"type":39,"tag":167,"props":1786,"children":1787},{},[],{"type":45,"value":1471},{"type":39,"tag":714,"props":1790,"children":1791},{},[1792,1794,1800,1801,1806,1807,1813,1814,1820],{"type":45,"value":1793},"External profiles (",{"type":39,"tag":114,"props":1795,"children":1797},{"className":1796},[],[1798],{"type":45,"value":1799},"name",{"type":45,"value":1484},{"type":39,"tag":114,"props":1802,"children":1804},{"className":1803},[],[1805],{"type":45,"value":1048},{"type":45,"value":1484},{"type":39,"tag":114,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":45,"value":1812},"long_name",{"type":45,"value":1484},{"type":39,"tag":114,"props":1815,"children":1817},{"className":1816},[],[1818],{"type":45,"value":1819},"img",{"type":45,"value":1506},{"type":39,"tag":677,"props":1822,"children":1823},{},[1824,1833,1838],{"type":39,"tag":714,"props":1825,"children":1826},{},[1827],{"type":39,"tag":114,"props":1828,"children":1830},{"className":1829},[],[1831],{"type":45,"value":1832},"reviews.reviews_in_foreign_language",{"type":39,"tag":714,"props":1834,"children":1835},{},[1836],{"type":45,"value":1837},"bool",{"type":39,"tag":714,"props":1839,"children":1840},{},[1841],{"type":45,"value":1842},"Whether reviews in a foreign language are available",{"type":39,"tag":677,"props":1844,"children":1845},{},[1846,1855,1863],{"type":39,"tag":714,"props":1847,"children":1848},{},[1849],{"type":39,"tag":114,"props":1850,"children":1852},{"className":1851},[],[1853],{"type":45,"value":1854},"pictures.results",{"type":39,"tag":714,"props":1856,"children":1857},{},[1858,1859,1862],{"type":45,"value":1466},{"type":39,"tag":167,"props":1860,"children":1861},{},[],{"type":45,"value":1471},{"type":39,"tag":714,"props":1864,"children":1865},{},[1866],{"type":45,"value":1867},"Photo thumbnails",{"type":39,"tag":677,"props":1869,"children":1870},{},[1871,1880,1885],{"type":39,"tag":714,"props":1872,"children":1873},{},[1874],{"type":39,"tag":114,"props":1875,"children":1877},{"className":1876},[],[1878],{"type":45,"value":1879},"action",{"type":39,"tag":714,"props":1881,"children":1882},{},[1883],{"type":45,"value":1884},"object?",{"type":39,"tag":714,"props":1886,"children":1887},{},[1888,1890,1895,1897,1902],{"type":45,"value":1889},"Action to take — has ",{"type":39,"tag":114,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":45,"value":1090},{"type":45,"value":1896}," (string) and ",{"type":39,"tag":114,"props":1898,"children":1900},{"className":1899},[],[1901],{"type":45,"value":1048},{"type":45,"value":1903}," (string)",{"type":39,"tag":677,"props":1905,"children":1906},{},[1907,1915,1923],{"type":39,"tag":714,"props":1908,"children":1909},{},[1910],{"type":39,"tag":114,"props":1911,"children":1913},{"className":1912},[],[1914],{"type":45,"value":980},{"type":39,"tag":714,"props":1916,"children":1917},{},[1918,1919,1922],{"type":45,"value":1466},{"type":39,"tag":167,"props":1920,"children":1921},{},[],{"type":45,"value":1471},{"type":39,"tag":714,"props":1924,"children":1925},{},[1926,1928,1934,1935,1941],{"type":45,"value":1927},"Related web results (",{"type":39,"tag":114,"props":1929,"children":1931},{"className":1930},[],[1932],{"type":45,"value":1933},"LocationWebResult",{"type":45,"value":121},{"type":39,"tag":114,"props":1936,"children":1938},{"className":1937},[],[1939],{"type":45,"value":1940},"meta_url",{"type":45,"value":1506},{"type":39,"tag":677,"props":1943,"children":1944},{},[1945,1954,1958],{"type":39,"tag":714,"props":1946,"children":1947},{},[1948],{"type":39,"tag":114,"props":1949,"children":1951},{"className":1950},[],[1952],{"type":45,"value":1953},"timezone",{"type":39,"tag":714,"props":1955,"children":1956},{},[1957],{"type":45,"value":1143},{"type":39,"tag":714,"props":1959,"children":1960},{},[1961,1963,1969],{"type":45,"value":1962},"IANA timezone (e.g., ",{"type":39,"tag":114,"props":1964,"children":1966},{"className":1965},[],[1967],{"type":45,"value":1968},"America\u002FLos_Angeles",{"type":45,"value":1506},{"type":39,"tag":677,"props":1971,"children":1972},{},[1973,1982,1986],{"type":39,"tag":714,"props":1974,"children":1975},{},[1976],{"type":39,"tag":114,"props":1977,"children":1979},{"className":1978},[],[1980],{"type":45,"value":1981},"timezone_offset",{"type":39,"tag":714,"props":1983,"children":1984},{},[1985],{"type":45,"value":1402},{"type":39,"tag":714,"props":1987,"children":1988},{},[1989],{"type":45,"value":1990},"UTC timezone offset",{"type":39,"tag":149,"props":1992,"children":1994},{"id":1993},"example-response",[1995],{"type":45,"value":1996},"Example Response",{"type":39,"tag":156,"props":1998,"children":2002},{"className":1999,"code":2000,"language":2001,"meta":161,"style":161},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"local_pois\",\n  \"results\": [\n    {\n      \"type\": \"location_result\",\n      \"title\": \"Park Mediterranean Grill\",\n      \"url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fpark-mediterranean-grill-sf\",\n      \"provider_url\": \"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fpark-mediterranean-grill-sf\",\n      \"id\": \"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=\",\n      \"postal_address\": {\n        \"type\": \"PostalAddress\",\n        \"displayAddress\": \"123 Main St, San Francisco, CA 94102\",\n        \"streetAddress\": \"123 Main St\",\n        \"addressLocality\": \"San Francisco\",\n        \"addressRegion\": \"CA\",\n        \"postalCode\": \"94102\",\n        \"country\": \"US\"\n      },\n      \"contact\": { \"telephone\": \"+1 415-555-0123\" },\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fexample.com\u002Fthumb.jpg\",\n        \"original\": \"https:\u002F\u002Fexample.com\u002Foriginal.jpg\"\n      },\n      \"rating\": {\n        \"ratingValue\": 4.5,\n        \"bestRating\": 5.0,\n        \"reviewCount\": 234,\n      },\n      \"opening_hours\": {\n        \"current_day\": [\n          { \"abbr_name\": \"Mon\", \"full_name\": \"Monday\", \"opens\": \"07:00\", \"closes\": \"21:00\" }\n        ]\n      },\n      \"coordinates\": [37.7749, -122.4194],\n      \"distance\": { \"value\": 0.3, \"units\": \"miles\" },\n      \"categories\": [\"Mediterranean\", \"Greek\"],\n      \"price_range\": \"$$\",\n      \"serves_cuisine\": [\"Mediterranean\", \"Greek\"],\n      \"timezone\": \"America\u002FLos_Angeles\"\n    }\n  ]\n}\n","json",[2003],{"type":39,"tag":114,"props":2004,"children":2005},{"__ignoreMap":161},[2006,2014,2054,2078,2086,2123,2159,2195,2230,2266,2291,2329,2367,2405,2443,2481,2519,2553,2562,2623,2648,2686,2720,2728,2753,2783,2813,2843,2851,2876,2901,3045,3054,3062,3106,3189,3247,3283,3339,3371,3380,3389],{"type":39,"tag":167,"props":2007,"children":2008},{"class":169,"line":170},[2009],{"type":39,"tag":167,"props":2010,"children":2011},{"style":186},[2012],{"type":45,"value":2013},"{\n",{"type":39,"tag":167,"props":2015,"children":2016},{"class":169,"line":208},[2017,2022,2027,2031,2036,2040,2045,2049],{"type":39,"tag":167,"props":2018,"children":2019},{"style":186},[2020],{"type":45,"value":2021},"  \"",{"type":39,"tag":167,"props":2023,"children":2025},{"style":2024},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2026],{"type":45,"value":1090},{"type":39,"tag":167,"props":2028,"children":2029},{"style":186},[2030],{"type":45,"value":199},{"type":39,"tag":167,"props":2032,"children":2033},{"style":186},[2034],{"type":45,"value":2035},":",{"type":39,"tag":167,"props":2037,"children":2038},{"style":186},[2039],{"type":45,"value":189},{"type":39,"tag":167,"props":2041,"children":2042},{"style":180},[2043],{"type":45,"value":2044},"local_pois",{"type":39,"tag":167,"props":2046,"children":2047},{"style":186},[2048],{"type":45,"value":199},{"type":39,"tag":167,"props":2050,"children":2051},{"style":186},[2052],{"type":45,"value":2053},",\n",{"type":39,"tag":167,"props":2055,"children":2056},{"class":169,"line":234},[2057,2061,2065,2069,2073],{"type":39,"tag":167,"props":2058,"children":2059},{"style":186},[2060],{"type":45,"value":2021},{"type":39,"tag":167,"props":2062,"children":2063},{"style":2024},[2064],{"type":45,"value":980},{"type":39,"tag":167,"props":2066,"children":2067},{"style":186},[2068],{"type":45,"value":199},{"type":39,"tag":167,"props":2070,"children":2071},{"style":186},[2072],{"type":45,"value":2035},{"type":39,"tag":167,"props":2074,"children":2075},{"style":186},[2076],{"type":45,"value":2077}," [\n",{"type":39,"tag":167,"props":2079,"children":2080},{"class":169,"line":259},[2081],{"type":39,"tag":167,"props":2082,"children":2083},{"style":186},[2084],{"type":45,"value":2085},"    {\n",{"type":39,"tag":167,"props":2087,"children":2088},{"class":169,"line":295},[2089,2094,2098,2102,2106,2110,2115,2119],{"type":39,"tag":167,"props":2090,"children":2091},{"style":186},[2092],{"type":45,"value":2093},"      \"",{"type":39,"tag":167,"props":2095,"children":2096},{"style":174},[2097],{"type":45,"value":1090},{"type":39,"tag":167,"props":2099,"children":2100},{"style":186},[2101],{"type":45,"value":199},{"type":39,"tag":167,"props":2103,"children":2104},{"style":186},[2105],{"type":45,"value":2035},{"type":39,"tag":167,"props":2107,"children":2108},{"style":186},[2109],{"type":45,"value":189},{"type":39,"tag":167,"props":2111,"children":2112},{"style":180},[2113],{"type":45,"value":2114},"location_result",{"type":39,"tag":167,"props":2116,"children":2117},{"style":186},[2118],{"type":45,"value":199},{"type":39,"tag":167,"props":2120,"children":2121},{"style":186},[2122],{"type":45,"value":2053},{"type":39,"tag":167,"props":2124,"children":2125},{"class":169,"line":308},[2126,2130,2134,2138,2142,2146,2151,2155],{"type":39,"tag":167,"props":2127,"children":2128},{"style":186},[2129],{"type":45,"value":2093},{"type":39,"tag":167,"props":2131,"children":2132},{"style":174},[2133],{"type":45,"value":1027},{"type":39,"tag":167,"props":2135,"children":2136},{"style":186},[2137],{"type":45,"value":199},{"type":39,"tag":167,"props":2139,"children":2140},{"style":186},[2141],{"type":45,"value":2035},{"type":39,"tag":167,"props":2143,"children":2144},{"style":186},[2145],{"type":45,"value":189},{"type":39,"tag":167,"props":2147,"children":2148},{"style":180},[2149],{"type":45,"value":2150},"Park Mediterranean Grill",{"type":39,"tag":167,"props":2152,"children":2153},{"style":186},[2154],{"type":45,"value":199},{"type":39,"tag":167,"props":2156,"children":2157},{"style":186},[2158],{"type":45,"value":2053},{"type":39,"tag":167,"props":2160,"children":2161},{"class":169,"line":496},[2162,2166,2170,2174,2178,2182,2187,2191],{"type":39,"tag":167,"props":2163,"children":2164},{"style":186},[2165],{"type":45,"value":2093},{"type":39,"tag":167,"props":2167,"children":2168},{"style":174},[2169],{"type":45,"value":1048},{"type":39,"tag":167,"props":2171,"children":2172},{"style":186},[2173],{"type":45,"value":199},{"type":39,"tag":167,"props":2175,"children":2176},{"style":186},[2177],{"type":45,"value":2035},{"type":39,"tag":167,"props":2179,"children":2180},{"style":186},[2181],{"type":45,"value":189},{"type":39,"tag":167,"props":2183,"children":2184},{"style":180},[2185],{"type":45,"value":2186},"https:\u002F\u002Fyelp.com\u002Fbiz\u002Fpark-mediterranean-grill-sf",{"type":39,"tag":167,"props":2188,"children":2189},{"style":186},[2190],{"type":45,"value":199},{"type":39,"tag":167,"props":2192,"children":2193},{"style":186},[2194],{"type":45,"value":2053},{"type":39,"tag":167,"props":2196,"children":2197},{"class":169,"line":508},[2198,2202,2206,2210,2214,2218,2222,2226],{"type":39,"tag":167,"props":2199,"children":2200},{"style":186},[2201],{"type":45,"value":2093},{"type":39,"tag":167,"props":2203,"children":2204},{"style":174},[2205],{"type":45,"value":1069},{"type":39,"tag":167,"props":2207,"children":2208},{"style":186},[2209],{"type":45,"value":199},{"type":39,"tag":167,"props":2211,"children":2212},{"style":186},[2213],{"type":45,"value":2035},{"type":39,"tag":167,"props":2215,"children":2216},{"style":186},[2217],{"type":45,"value":189},{"type":39,"tag":167,"props":2219,"children":2220},{"style":180},[2221],{"type":45,"value":2186},{"type":39,"tag":167,"props":2223,"children":2224},{"style":186},[2225],{"type":45,"value":199},{"type":39,"tag":167,"props":2227,"children":2228},{"style":186},[2229],{"type":45,"value":2053},{"type":39,"tag":167,"props":2231,"children":2232},{"class":169,"line":532},[2233,2237,2241,2245,2249,2253,2258,2262],{"type":39,"tag":167,"props":2234,"children":2235},{"style":186},[2236],{"type":45,"value":2093},{"type":39,"tag":167,"props":2238,"children":2239},{"style":174},[2240],{"type":45,"value":1117},{"type":39,"tag":167,"props":2242,"children":2243},{"style":186},[2244],{"type":45,"value":199},{"type":39,"tag":167,"props":2246,"children":2247},{"style":186},[2248],{"type":45,"value":2035},{"type":39,"tag":167,"props":2250,"children":2251},{"style":186},[2252],{"type":45,"value":189},{"type":39,"tag":167,"props":2254,"children":2255},{"style":180},[2256],{"type":45,"value":2257},"loc4CQWMJWLD4VBEBZ62XQLJTGK6YCJEEJDNAAAAAAA=",{"type":39,"tag":167,"props":2259,"children":2260},{"style":186},[2261],{"type":45,"value":199},{"type":39,"tag":167,"props":2263,"children":2264},{"style":186},[2265],{"type":45,"value":2053},{"type":39,"tag":167,"props":2267,"children":2268},{"class":169,"line":557},[2269,2273,2278,2282,2286],{"type":39,"tag":167,"props":2270,"children":2271},{"style":186},[2272],{"type":45,"value":2093},{"type":39,"tag":167,"props":2274,"children":2275},{"style":174},[2276],{"type":45,"value":2277},"postal_address",{"type":39,"tag":167,"props":2279,"children":2280},{"style":186},[2281],{"type":45,"value":199},{"type":39,"tag":167,"props":2283,"children":2284},{"style":186},[2285],{"type":45,"value":2035},{"type":39,"tag":167,"props":2287,"children":2288},{"style":186},[2289],{"type":45,"value":2290}," {\n",{"type":39,"tag":167,"props":2292,"children":2293},{"class":169,"line":26},[2294,2299,2304,2308,2312,2316,2321,2325],{"type":39,"tag":167,"props":2295,"children":2296},{"style":186},[2297],{"type":45,"value":2298},"        \"",{"type":39,"tag":167,"props":2300,"children":2302},{"style":2301},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2303],{"type":45,"value":1090},{"type":39,"tag":167,"props":2305,"children":2306},{"style":186},[2307],{"type":45,"value":199},{"type":39,"tag":167,"props":2309,"children":2310},{"style":186},[2311],{"type":45,"value":2035},{"type":39,"tag":167,"props":2313,"children":2314},{"style":186},[2315],{"type":45,"value":189},{"type":39,"tag":167,"props":2317,"children":2318},{"style":180},[2319],{"type":45,"value":2320},"PostalAddress",{"type":39,"tag":167,"props":2322,"children":2323},{"style":186},[2324],{"type":45,"value":199},{"type":39,"tag":167,"props":2326,"children":2327},{"style":186},[2328],{"type":45,"value":2053},{"type":39,"tag":167,"props":2330,"children":2332},{"class":169,"line":2331},12,[2333,2337,2342,2346,2350,2354,2359,2363],{"type":39,"tag":167,"props":2334,"children":2335},{"style":186},[2336],{"type":45,"value":2298},{"type":39,"tag":167,"props":2338,"children":2339},{"style":2301},[2340],{"type":45,"value":2341},"displayAddress",{"type":39,"tag":167,"props":2343,"children":2344},{"style":186},[2345],{"type":45,"value":199},{"type":39,"tag":167,"props":2347,"children":2348},{"style":186},[2349],{"type":45,"value":2035},{"type":39,"tag":167,"props":2351,"children":2352},{"style":186},[2353],{"type":45,"value":189},{"type":39,"tag":167,"props":2355,"children":2356},{"style":180},[2357],{"type":45,"value":2358},"123 Main St, San Francisco, CA 94102",{"type":39,"tag":167,"props":2360,"children":2361},{"style":186},[2362],{"type":45,"value":199},{"type":39,"tag":167,"props":2364,"children":2365},{"style":186},[2366],{"type":45,"value":2053},{"type":39,"tag":167,"props":2368,"children":2370},{"class":169,"line":2369},13,[2371,2375,2380,2384,2388,2392,2397,2401],{"type":39,"tag":167,"props":2372,"children":2373},{"style":186},[2374],{"type":45,"value":2298},{"type":39,"tag":167,"props":2376,"children":2377},{"style":2301},[2378],{"type":45,"value":2379},"streetAddress",{"type":39,"tag":167,"props":2381,"children":2382},{"style":186},[2383],{"type":45,"value":199},{"type":39,"tag":167,"props":2385,"children":2386},{"style":186},[2387],{"type":45,"value":2035},{"type":39,"tag":167,"props":2389,"children":2390},{"style":186},[2391],{"type":45,"value":189},{"type":39,"tag":167,"props":2393,"children":2394},{"style":180},[2395],{"type":45,"value":2396},"123 Main St",{"type":39,"tag":167,"props":2398,"children":2399},{"style":186},[2400],{"type":45,"value":199},{"type":39,"tag":167,"props":2402,"children":2403},{"style":186},[2404],{"type":45,"value":2053},{"type":39,"tag":167,"props":2406,"children":2408},{"class":169,"line":2407},14,[2409,2413,2418,2422,2426,2430,2435,2439],{"type":39,"tag":167,"props":2410,"children":2411},{"style":186},[2412],{"type":45,"value":2298},{"type":39,"tag":167,"props":2414,"children":2415},{"style":2301},[2416],{"type":45,"value":2417},"addressLocality",{"type":39,"tag":167,"props":2419,"children":2420},{"style":186},[2421],{"type":45,"value":199},{"type":39,"tag":167,"props":2423,"children":2424},{"style":186},[2425],{"type":45,"value":2035},{"type":39,"tag":167,"props":2427,"children":2428},{"style":186},[2429],{"type":45,"value":189},{"type":39,"tag":167,"props":2431,"children":2432},{"style":180},[2433],{"type":45,"value":2434},"San Francisco",{"type":39,"tag":167,"props":2436,"children":2437},{"style":186},[2438],{"type":45,"value":199},{"type":39,"tag":167,"props":2440,"children":2441},{"style":186},[2442],{"type":45,"value":2053},{"type":39,"tag":167,"props":2444,"children":2446},{"class":169,"line":2445},15,[2447,2451,2456,2460,2464,2468,2473,2477],{"type":39,"tag":167,"props":2448,"children":2449},{"style":186},[2450],{"type":45,"value":2298},{"type":39,"tag":167,"props":2452,"children":2453},{"style":2301},[2454],{"type":45,"value":2455},"addressRegion",{"type":39,"tag":167,"props":2457,"children":2458},{"style":186},[2459],{"type":45,"value":199},{"type":39,"tag":167,"props":2461,"children":2462},{"style":186},[2463],{"type":45,"value":2035},{"type":39,"tag":167,"props":2465,"children":2466},{"style":186},[2467],{"type":45,"value":189},{"type":39,"tag":167,"props":2469,"children":2470},{"style":180},[2471],{"type":45,"value":2472},"CA",{"type":39,"tag":167,"props":2474,"children":2475},{"style":186},[2476],{"type":45,"value":199},{"type":39,"tag":167,"props":2478,"children":2479},{"style":186},[2480],{"type":45,"value":2053},{"type":39,"tag":167,"props":2482,"children":2484},{"class":169,"line":2483},16,[2485,2489,2494,2498,2502,2506,2511,2515],{"type":39,"tag":167,"props":2486,"children":2487},{"style":186},[2488],{"type":45,"value":2298},{"type":39,"tag":167,"props":2490,"children":2491},{"style":2301},[2492],{"type":45,"value":2493},"postalCode",{"type":39,"tag":167,"props":2495,"children":2496},{"style":186},[2497],{"type":45,"value":199},{"type":39,"tag":167,"props":2499,"children":2500},{"style":186},[2501],{"type":45,"value":2035},{"type":39,"tag":167,"props":2503,"children":2504},{"style":186},[2505],{"type":45,"value":189},{"type":39,"tag":167,"props":2507,"children":2508},{"style":180},[2509],{"type":45,"value":2510},"94102",{"type":39,"tag":167,"props":2512,"children":2513},{"style":186},[2514],{"type":45,"value":199},{"type":39,"tag":167,"props":2516,"children":2517},{"style":186},[2518],{"type":45,"value":2053},{"type":39,"tag":167,"props":2520,"children":2522},{"class":169,"line":2521},17,[2523,2527,2532,2536,2540,2544,2549],{"type":39,"tag":167,"props":2524,"children":2525},{"style":186},[2526],{"type":45,"value":2298},{"type":39,"tag":167,"props":2528,"children":2529},{"style":2301},[2530],{"type":45,"value":2531},"country",{"type":39,"tag":167,"props":2533,"children":2534},{"style":186},[2535],{"type":45,"value":199},{"type":39,"tag":167,"props":2537,"children":2538},{"style":186},[2539],{"type":45,"value":2035},{"type":39,"tag":167,"props":2541,"children":2542},{"style":186},[2543],{"type":45,"value":189},{"type":39,"tag":167,"props":2545,"children":2546},{"style":180},[2547],{"type":45,"value":2548},"US",{"type":39,"tag":167,"props":2550,"children":2551},{"style":186},[2552],{"type":45,"value":328},{"type":39,"tag":167,"props":2554,"children":2556},{"class":169,"line":2555},18,[2557],{"type":39,"tag":167,"props":2558,"children":2559},{"style":186},[2560],{"type":45,"value":2561},"      },\n",{"type":39,"tag":167,"props":2563,"children":2565},{"class":169,"line":2564},19,[2566,2570,2575,2579,2583,2588,2592,2597,2601,2605,2609,2614,2618],{"type":39,"tag":167,"props":2567,"children":2568},{"style":186},[2569],{"type":45,"value":2093},{"type":39,"tag":167,"props":2571,"children":2572},{"style":174},[2573],{"type":45,"value":2574},"contact",{"type":39,"tag":167,"props":2576,"children":2577},{"style":186},[2578],{"type":45,"value":199},{"type":39,"tag":167,"props":2580,"children":2581},{"style":186},[2582],{"type":45,"value":2035},{"type":39,"tag":167,"props":2584,"children":2585},{"style":186},[2586],{"type":45,"value":2587}," {",{"type":39,"tag":167,"props":2589,"children":2590},{"style":186},[2591],{"type":45,"value":189},{"type":39,"tag":167,"props":2593,"children":2594},{"style":2301},[2595],{"type":45,"value":2596},"telephone",{"type":39,"tag":167,"props":2598,"children":2599},{"style":186},[2600],{"type":45,"value":199},{"type":39,"tag":167,"props":2602,"children":2603},{"style":186},[2604],{"type":45,"value":2035},{"type":39,"tag":167,"props":2606,"children":2607},{"style":186},[2608],{"type":45,"value":189},{"type":39,"tag":167,"props":2610,"children":2611},{"style":180},[2612],{"type":45,"value":2613},"+1 415-555-0123",{"type":39,"tag":167,"props":2615,"children":2616},{"style":186},[2617],{"type":45,"value":199},{"type":39,"tag":167,"props":2619,"children":2620},{"style":186},[2621],{"type":45,"value":2622}," },\n",{"type":39,"tag":167,"props":2624,"children":2626},{"class":169,"line":2625},20,[2627,2631,2636,2640,2644],{"type":39,"tag":167,"props":2628,"children":2629},{"style":186},[2630],{"type":45,"value":2093},{"type":39,"tag":167,"props":2632,"children":2633},{"style":174},[2634],{"type":45,"value":2635},"thumbnail",{"type":39,"tag":167,"props":2637,"children":2638},{"style":186},[2639],{"type":45,"value":199},{"type":39,"tag":167,"props":2641,"children":2642},{"style":186},[2643],{"type":45,"value":2035},{"type":39,"tag":167,"props":2645,"children":2646},{"style":186},[2647],{"type":45,"value":2290},{"type":39,"tag":167,"props":2649,"children":2651},{"class":169,"line":2650},21,[2652,2656,2661,2665,2669,2673,2678,2682],{"type":39,"tag":167,"props":2653,"children":2654},{"style":186},[2655],{"type":45,"value":2298},{"type":39,"tag":167,"props":2657,"children":2658},{"style":2301},[2659],{"type":45,"value":2660},"src",{"type":39,"tag":167,"props":2662,"children":2663},{"style":186},[2664],{"type":45,"value":199},{"type":39,"tag":167,"props":2666,"children":2667},{"style":186},[2668],{"type":45,"value":2035},{"type":39,"tag":167,"props":2670,"children":2671},{"style":186},[2672],{"type":45,"value":189},{"type":39,"tag":167,"props":2674,"children":2675},{"style":180},[2676],{"type":45,"value":2677},"https:\u002F\u002Fexample.com\u002Fthumb.jpg",{"type":39,"tag":167,"props":2679,"children":2680},{"style":186},[2681],{"type":45,"value":199},{"type":39,"tag":167,"props":2683,"children":2684},{"style":186},[2685],{"type":45,"value":2053},{"type":39,"tag":167,"props":2687,"children":2689},{"class":169,"line":2688},22,[2690,2694,2699,2703,2707,2711,2716],{"type":39,"tag":167,"props":2691,"children":2692},{"style":186},[2693],{"type":45,"value":2298},{"type":39,"tag":167,"props":2695,"children":2696},{"style":2301},[2697],{"type":45,"value":2698},"original",{"type":39,"tag":167,"props":2700,"children":2701},{"style":186},[2702],{"type":45,"value":199},{"type":39,"tag":167,"props":2704,"children":2705},{"style":186},[2706],{"type":45,"value":2035},{"type":39,"tag":167,"props":2708,"children":2709},{"style":186},[2710],{"type":45,"value":189},{"type":39,"tag":167,"props":2712,"children":2713},{"style":180},[2714],{"type":45,"value":2715},"https:\u002F\u002Fexample.com\u002Foriginal.jpg",{"type":39,"tag":167,"props":2717,"children":2718},{"style":186},[2719],{"type":45,"value":328},{"type":39,"tag":167,"props":2721,"children":2723},{"class":169,"line":2722},23,[2724],{"type":39,"tag":167,"props":2725,"children":2726},{"style":186},[2727],{"type":45,"value":2561},{"type":39,"tag":167,"props":2729,"children":2731},{"class":169,"line":2730},24,[2732,2736,2741,2745,2749],{"type":39,"tag":167,"props":2733,"children":2734},{"style":186},[2735],{"type":45,"value":2093},{"type":39,"tag":167,"props":2737,"children":2738},{"style":174},[2739],{"type":45,"value":2740},"rating",{"type":39,"tag":167,"props":2742,"children":2743},{"style":186},[2744],{"type":45,"value":199},{"type":39,"tag":167,"props":2746,"children":2747},{"style":186},[2748],{"type":45,"value":2035},{"type":39,"tag":167,"props":2750,"children":2751},{"style":186},[2752],{"type":45,"value":2290},{"type":39,"tag":167,"props":2754,"children":2756},{"class":169,"line":2755},25,[2757,2761,2766,2770,2774,2779],{"type":39,"tag":167,"props":2758,"children":2759},{"style":186},[2760],{"type":45,"value":2298},{"type":39,"tag":167,"props":2762,"children":2763},{"style":2301},[2764],{"type":45,"value":2765},"ratingValue",{"type":39,"tag":167,"props":2767,"children":2768},{"style":186},[2769],{"type":45,"value":199},{"type":39,"tag":167,"props":2771,"children":2772},{"style":186},[2773],{"type":45,"value":2035},{"type":39,"tag":167,"props":2775,"children":2776},{"style":2301},[2777],{"type":45,"value":2778}," 4.5",{"type":39,"tag":167,"props":2780,"children":2781},{"style":186},[2782],{"type":45,"value":2053},{"type":39,"tag":167,"props":2784,"children":2786},{"class":169,"line":2785},26,[2787,2791,2796,2800,2804,2809],{"type":39,"tag":167,"props":2788,"children":2789},{"style":186},[2790],{"type":45,"value":2298},{"type":39,"tag":167,"props":2792,"children":2793},{"style":2301},[2794],{"type":45,"value":2795},"bestRating",{"type":39,"tag":167,"props":2797,"children":2798},{"style":186},[2799],{"type":45,"value":199},{"type":39,"tag":167,"props":2801,"children":2802},{"style":186},[2803],{"type":45,"value":2035},{"type":39,"tag":167,"props":2805,"children":2806},{"style":2301},[2807],{"type":45,"value":2808}," 5.0",{"type":39,"tag":167,"props":2810,"children":2811},{"style":186},[2812],{"type":45,"value":2053},{"type":39,"tag":167,"props":2814,"children":2816},{"class":169,"line":2815},27,[2817,2821,2826,2830,2834,2839],{"type":39,"tag":167,"props":2818,"children":2819},{"style":186},[2820],{"type":45,"value":2298},{"type":39,"tag":167,"props":2822,"children":2823},{"style":2301},[2824],{"type":45,"value":2825},"reviewCount",{"type":39,"tag":167,"props":2827,"children":2828},{"style":186},[2829],{"type":45,"value":199},{"type":39,"tag":167,"props":2831,"children":2832},{"style":186},[2833],{"type":45,"value":2035},{"type":39,"tag":167,"props":2835,"children":2836},{"style":2301},[2837],{"type":45,"value":2838}," 234",{"type":39,"tag":167,"props":2840,"children":2841},{"style":186},[2842],{"type":45,"value":2053},{"type":39,"tag":167,"props":2844,"children":2846},{"class":169,"line":2845},28,[2847],{"type":39,"tag":167,"props":2848,"children":2849},{"style":186},[2850],{"type":45,"value":2561},{"type":39,"tag":167,"props":2852,"children":2854},{"class":169,"line":2853},29,[2855,2859,2864,2868,2872],{"type":39,"tag":167,"props":2856,"children":2857},{"style":186},[2858],{"type":45,"value":2093},{"type":39,"tag":167,"props":2860,"children":2861},{"style":174},[2862],{"type":45,"value":2863},"opening_hours",{"type":39,"tag":167,"props":2865,"children":2866},{"style":186},[2867],{"type":45,"value":199},{"type":39,"tag":167,"props":2869,"children":2870},{"style":186},[2871],{"type":45,"value":2035},{"type":39,"tag":167,"props":2873,"children":2874},{"style":186},[2875],{"type":45,"value":2290},{"type":39,"tag":167,"props":2877,"children":2879},{"class":169,"line":2878},30,[2880,2884,2889,2893,2897],{"type":39,"tag":167,"props":2881,"children":2882},{"style":186},[2883],{"type":45,"value":2298},{"type":39,"tag":167,"props":2885,"children":2886},{"style":2301},[2887],{"type":45,"value":2888},"current_day",{"type":39,"tag":167,"props":2890,"children":2891},{"style":186},[2892],{"type":45,"value":199},{"type":39,"tag":167,"props":2894,"children":2895},{"style":186},[2896],{"type":45,"value":2035},{"type":39,"tag":167,"props":2898,"children":2899},{"style":186},[2900],{"type":45,"value":2077},{"type":39,"tag":167,"props":2902,"children":2904},{"class":169,"line":2903},31,[2905,2910,2914,2919,2923,2927,2931,2936,2940,2945,2949,2953,2957,2961,2965,2970,2974,2978,2982,2986,2990,2994,2998,3003,3007,3011,3015,3019,3023,3027,3031,3036,3040],{"type":39,"tag":167,"props":2906,"children":2907},{"style":186},[2908],{"type":45,"value":2909},"          {",{"type":39,"tag":167,"props":2911,"children":2912},{"style":186},[2913],{"type":45,"value":189},{"type":39,"tag":167,"props":2915,"children":2917},{"style":2916},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2918],{"type":45,"value":1482},{"type":39,"tag":167,"props":2920,"children":2921},{"style":186},[2922],{"type":45,"value":199},{"type":39,"tag":167,"props":2924,"children":2925},{"style":186},[2926],{"type":45,"value":2035},{"type":39,"tag":167,"props":2928,"children":2929},{"style":186},[2930],{"type":45,"value":189},{"type":39,"tag":167,"props":2932,"children":2933},{"style":180},[2934],{"type":45,"value":2935},"Mon",{"type":39,"tag":167,"props":2937,"children":2938},{"style":186},[2939],{"type":45,"value":199},{"type":39,"tag":167,"props":2941,"children":2942},{"style":186},[2943],{"type":45,"value":2944},",",{"type":39,"tag":167,"props":2946,"children":2947},{"style":186},[2948],{"type":45,"value":189},{"type":39,"tag":167,"props":2950,"children":2951},{"style":2916},[2952],{"type":45,"value":1490},{"type":39,"tag":167,"props":2954,"children":2955},{"style":186},[2956],{"type":45,"value":199},{"type":39,"tag":167,"props":2958,"children":2959},{"style":186},[2960],{"type":45,"value":2035},{"type":39,"tag":167,"props":2962,"children":2963},{"style":186},[2964],{"type":45,"value":189},{"type":39,"tag":167,"props":2966,"children":2967},{"style":180},[2968],{"type":45,"value":2969},"Monday",{"type":39,"tag":167,"props":2971,"children":2972},{"style":186},[2973],{"type":45,"value":199},{"type":39,"tag":167,"props":2975,"children":2976},{"style":186},[2977],{"type":45,"value":2944},{"type":39,"tag":167,"props":2979,"children":2980},{"style":186},[2981],{"type":45,"value":189},{"type":39,"tag":167,"props":2983,"children":2984},{"style":2916},[2985],{"type":45,"value":1497},{"type":39,"tag":167,"props":2987,"children":2988},{"style":186},[2989],{"type":45,"value":199},{"type":39,"tag":167,"props":2991,"children":2992},{"style":186},[2993],{"type":45,"value":2035},{"type":39,"tag":167,"props":2995,"children":2996},{"style":186},[2997],{"type":45,"value":189},{"type":39,"tag":167,"props":2999,"children":3000},{"style":180},[3001],{"type":45,"value":3002},"07:00",{"type":39,"tag":167,"props":3004,"children":3005},{"style":186},[3006],{"type":45,"value":199},{"type":39,"tag":167,"props":3008,"children":3009},{"style":186},[3010],{"type":45,"value":2944},{"type":39,"tag":167,"props":3012,"children":3013},{"style":186},[3014],{"type":45,"value":189},{"type":39,"tag":167,"props":3016,"children":3017},{"style":2916},[3018],{"type":45,"value":1504},{"type":39,"tag":167,"props":3020,"children":3021},{"style":186},[3022],{"type":45,"value":199},{"type":39,"tag":167,"props":3024,"children":3025},{"style":186},[3026],{"type":45,"value":2035},{"type":39,"tag":167,"props":3028,"children":3029},{"style":186},[3030],{"type":45,"value":189},{"type":39,"tag":167,"props":3032,"children":3033},{"style":180},[3034],{"type":45,"value":3035},"21:00",{"type":39,"tag":167,"props":3037,"children":3038},{"style":186},[3039],{"type":45,"value":199},{"type":39,"tag":167,"props":3041,"children":3042},{"style":186},[3043],{"type":45,"value":3044}," }\n",{"type":39,"tag":167,"props":3046,"children":3048},{"class":169,"line":3047},32,[3049],{"type":39,"tag":167,"props":3050,"children":3051},{"style":186},[3052],{"type":45,"value":3053},"        ]\n",{"type":39,"tag":167,"props":3055,"children":3057},{"class":169,"line":3056},33,[3058],{"type":39,"tag":167,"props":3059,"children":3060},{"style":186},[3061],{"type":45,"value":2561},{"type":39,"tag":167,"props":3063,"children":3065},{"class":169,"line":3064},34,[3066,3070,3074,3078,3082,3087,3092,3096,3101],{"type":39,"tag":167,"props":3067,"children":3068},{"style":186},[3069],{"type":45,"value":2093},{"type":39,"tag":167,"props":3071,"children":3072},{"style":174},[3073],{"type":45,"value":1544},{"type":39,"tag":167,"props":3075,"children":3076},{"style":186},[3077],{"type":45,"value":199},{"type":39,"tag":167,"props":3079,"children":3080},{"style":186},[3081],{"type":45,"value":2035},{"type":39,"tag":167,"props":3083,"children":3084},{"style":186},[3085],{"type":45,"value":3086}," [",{"type":39,"tag":167,"props":3088,"children":3089},{"style":2301},[3090],{"type":45,"value":3091},"37.7749",{"type":39,"tag":167,"props":3093,"children":3094},{"style":186},[3095],{"type":45,"value":2944},{"type":39,"tag":167,"props":3097,"children":3098},{"style":2301},[3099],{"type":45,"value":3100}," -122.4194",{"type":39,"tag":167,"props":3102,"children":3103},{"style":186},[3104],{"type":45,"value":3105},"],\n",{"type":39,"tag":167,"props":3107,"children":3109},{"class":169,"line":3108},35,[3110,3114,3119,3123,3127,3131,3135,3140,3144,3148,3153,3157,3161,3165,3169,3173,3177,3181,3185],{"type":39,"tag":167,"props":3111,"children":3112},{"style":186},[3113],{"type":45,"value":2093},{"type":39,"tag":167,"props":3115,"children":3116},{"style":174},[3117],{"type":45,"value":3118},"distance",{"type":39,"tag":167,"props":3120,"children":3121},{"style":186},[3122],{"type":45,"value":199},{"type":39,"tag":167,"props":3124,"children":3125},{"style":186},[3126],{"type":45,"value":2035},{"type":39,"tag":167,"props":3128,"children":3129},{"style":186},[3130],{"type":45,"value":2587},{"type":39,"tag":167,"props":3132,"children":3133},{"style":186},[3134],{"type":45,"value":189},{"type":39,"tag":167,"props":3136,"children":3137},{"style":2301},[3138],{"type":45,"value":3139},"value",{"type":39,"tag":167,"props":3141,"children":3142},{"style":186},[3143],{"type":45,"value":199},{"type":39,"tag":167,"props":3145,"children":3146},{"style":186},[3147],{"type":45,"value":2035},{"type":39,"tag":167,"props":3149,"children":3150},{"style":2301},[3151],{"type":45,"value":3152}," 0.3",{"type":39,"tag":167,"props":3154,"children":3155},{"style":186},[3156],{"type":45,"value":2944},{"type":39,"tag":167,"props":3158,"children":3159},{"style":186},[3160],{"type":45,"value":189},{"type":39,"tag":167,"props":3162,"children":3163},{"style":2301},[3164],{"type":45,"value":829},{"type":39,"tag":167,"props":3166,"children":3167},{"style":186},[3168],{"type":45,"value":199},{"type":39,"tag":167,"props":3170,"children":3171},{"style":186},[3172],{"type":45,"value":2035},{"type":39,"tag":167,"props":3174,"children":3175},{"style":186},[3176],{"type":45,"value":189},{"type":39,"tag":167,"props":3178,"children":3179},{"style":180},[3180],{"type":45,"value":1620},{"type":39,"tag":167,"props":3182,"children":3183},{"style":186},[3184],{"type":45,"value":199},{"type":39,"tag":167,"props":3186,"children":3187},{"style":186},[3188],{"type":45,"value":2622},{"type":39,"tag":167,"props":3190,"children":3192},{"class":169,"line":3191},36,[3193,3197,3201,3205,3209,3213,3217,3222,3226,3230,3234,3239,3243],{"type":39,"tag":167,"props":3194,"children":3195},{"style":186},[3196],{"type":45,"value":2093},{"type":39,"tag":167,"props":3198,"children":3199},{"style":174},[3200],{"type":45,"value":1633},{"type":39,"tag":167,"props":3202,"children":3203},{"style":186},[3204],{"type":45,"value":199},{"type":39,"tag":167,"props":3206,"children":3207},{"style":186},[3208],{"type":45,"value":2035},{"type":39,"tag":167,"props":3210,"children":3211},{"style":186},[3212],{"type":45,"value":3086},{"type":39,"tag":167,"props":3214,"children":3215},{"style":186},[3216],{"type":45,"value":199},{"type":39,"tag":167,"props":3218,"children":3219},{"style":180},[3220],{"type":45,"value":3221},"Mediterranean",{"type":39,"tag":167,"props":3223,"children":3224},{"style":186},[3225],{"type":45,"value":199},{"type":39,"tag":167,"props":3227,"children":3228},{"style":186},[3229],{"type":45,"value":2944},{"type":39,"tag":167,"props":3231,"children":3232},{"style":186},[3233],{"type":45,"value":189},{"type":39,"tag":167,"props":3235,"children":3236},{"style":180},[3237],{"type":45,"value":3238},"Greek",{"type":39,"tag":167,"props":3240,"children":3241},{"style":186},[3242],{"type":45,"value":199},{"type":39,"tag":167,"props":3244,"children":3245},{"style":186},[3246],{"type":45,"value":3105},{"type":39,"tag":167,"props":3248,"children":3250},{"class":169,"line":3249},37,[3251,3255,3259,3263,3267,3271,3275,3279],{"type":39,"tag":167,"props":3252,"children":3253},{"style":186},[3254],{"type":45,"value":2093},{"type":39,"tag":167,"props":3256,"children":3257},{"style":174},[3258],{"type":45,"value":1664},{"type":39,"tag":167,"props":3260,"children":3261},{"style":186},[3262],{"type":45,"value":199},{"type":39,"tag":167,"props":3264,"children":3265},{"style":186},[3266],{"type":45,"value":2035},{"type":39,"tag":167,"props":3268,"children":3269},{"style":186},[3270],{"type":45,"value":189},{"type":39,"tag":167,"props":3272,"children":3273},{"style":180},[3274],{"type":45,"value":1686},{"type":39,"tag":167,"props":3276,"children":3277},{"style":186},[3278],{"type":45,"value":199},{"type":39,"tag":167,"props":3280,"children":3281},{"style":186},[3282],{"type":45,"value":2053},{"type":39,"tag":167,"props":3284,"children":3286},{"class":169,"line":3285},38,[3287,3291,3295,3299,3303,3307,3311,3315,3319,3323,3327,3331,3335],{"type":39,"tag":167,"props":3288,"children":3289},{"style":186},[3290],{"type":45,"value":2093},{"type":39,"tag":167,"props":3292,"children":3293},{"style":174},[3294],{"type":45,"value":1713},{"type":39,"tag":167,"props":3296,"children":3297},{"style":186},[3298],{"type":45,"value":199},{"type":39,"tag":167,"props":3300,"children":3301},{"style":186},[3302],{"type":45,"value":2035},{"type":39,"tag":167,"props":3304,"children":3305},{"style":186},[3306],{"type":45,"value":3086},{"type":39,"tag":167,"props":3308,"children":3309},{"style":186},[3310],{"type":45,"value":199},{"type":39,"tag":167,"props":3312,"children":3313},{"style":180},[3314],{"type":45,"value":3221},{"type":39,"tag":167,"props":3316,"children":3317},{"style":186},[3318],{"type":45,"value":199},{"type":39,"tag":167,"props":3320,"children":3321},{"style":186},[3322],{"type":45,"value":2944},{"type":39,"tag":167,"props":3324,"children":3325},{"style":186},[3326],{"type":45,"value":189},{"type":39,"tag":167,"props":3328,"children":3329},{"style":180},[3330],{"type":45,"value":3238},{"type":39,"tag":167,"props":3332,"children":3333},{"style":186},[3334],{"type":45,"value":199},{"type":39,"tag":167,"props":3336,"children":3337},{"style":186},[3338],{"type":45,"value":3105},{"type":39,"tag":167,"props":3340,"children":3342},{"class":169,"line":3341},39,[3343,3347,3351,3355,3359,3363,3367],{"type":39,"tag":167,"props":3344,"children":3345},{"style":186},[3346],{"type":45,"value":2093},{"type":39,"tag":167,"props":3348,"children":3349},{"style":174},[3350],{"type":45,"value":1953},{"type":39,"tag":167,"props":3352,"children":3353},{"style":186},[3354],{"type":45,"value":199},{"type":39,"tag":167,"props":3356,"children":3357},{"style":186},[3358],{"type":45,"value":2035},{"type":39,"tag":167,"props":3360,"children":3361},{"style":186},[3362],{"type":45,"value":189},{"type":39,"tag":167,"props":3364,"children":3365},{"style":180},[3366],{"type":45,"value":1968},{"type":39,"tag":167,"props":3368,"children":3369},{"style":186},[3370],{"type":45,"value":328},{"type":39,"tag":167,"props":3372,"children":3374},{"class":169,"line":3373},40,[3375],{"type":39,"tag":167,"props":3376,"children":3377},{"style":186},[3378],{"type":45,"value":3379},"    }\n",{"type":39,"tag":167,"props":3381,"children":3383},{"class":169,"line":3382},41,[3384],{"type":39,"tag":167,"props":3385,"children":3386},{"style":186},[3387],{"type":45,"value":3388},"  ]\n",{"type":39,"tag":167,"props":3390,"children":3392},{"class":169,"line":3391},42,[3393],{"type":39,"tag":167,"props":3394,"children":3395},{"style":186},[3396],{"type":45,"value":3397},"}\n",{"type":39,"tag":142,"props":3399,"children":3401},{"id":3400},"getting-poi-ids",[3402],{"type":45,"value":3403},"Getting POI IDs",{"type":39,"tag":52,"props":3405,"children":3406},{},[3407,3409,3414,3416,3421,3423,3428],{"type":45,"value":3408},"POI IDs come from the ",{"type":39,"tag":56,"props":3410,"children":3411},{},[3412],{"type":45,"value":3413},"Web Search API",{"type":45,"value":3415}," (",{"type":39,"tag":114,"props":3417,"children":3419},{"className":3418},[],[3420],{"type":45,"value":119},{"type":45,"value":3422},") with ",{"type":39,"tag":114,"props":3424,"children":3426},{"className":3425},[],[3427],{"type":45,"value":127},{"type":45,"value":2035},{"type":39,"tag":156,"props":3430,"children":3432},{"className":158,"code":3431,"language":160,"meta":161,"style":161},"# 1. Search for local businesses\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fweb\u002Fsearch?q=coffee+shops+near+me&result_filter=locations\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -H \"X-Loc-Lat: 37.7749\" \\\n  -H \"X-Loc-Long: -122.4194\"\n\n# 2. Extract POI IDs from locations.results[].id\n# 3. Use those IDs with this endpoint\n",[3433],{"type":39,"tag":114,"props":3434,"children":3435},{"__ignoreMap":161},[3436,3445,3473,3496,3527,3550,3569,3578,3586],{"type":39,"tag":167,"props":3437,"children":3438},{"class":169,"line":170},[3439],{"type":39,"tag":167,"props":3440,"children":3442},{"style":3441},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[3443],{"type":45,"value":3444},"# 1. Search for local businesses\n",{"type":39,"tag":167,"props":3446,"children":3447},{"class":169,"line":208},[3448,3452,3456,3460,3465,3469],{"type":39,"tag":167,"props":3449,"children":3450},{"style":174},[3451],{"type":45,"value":177},{"type":39,"tag":167,"props":3453,"children":3454},{"style":180},[3455],{"type":45,"value":183},{"type":39,"tag":167,"props":3457,"children":3458},{"style":186},[3459],{"type":45,"value":189},{"type":39,"tag":167,"props":3461,"children":3462},{"style":180},[3463],{"type":45,"value":3464},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fweb\u002Fsearch?q=coffee+shops+near+me&result_filter=locations",{"type":39,"tag":167,"props":3466,"children":3467},{"style":186},[3468],{"type":45,"value":199},{"type":39,"tag":167,"props":3470,"children":3471},{"style":202},[3472],{"type":45,"value":205},{"type":39,"tag":167,"props":3474,"children":3475},{"class":169,"line":234},[3476,3480,3484,3488,3492],{"type":39,"tag":167,"props":3477,"children":3478},{"style":180},[3479],{"type":45,"value":214},{"type":39,"tag":167,"props":3481,"children":3482},{"style":186},[3483],{"type":45,"value":189},{"type":39,"tag":167,"props":3485,"children":3486},{"style":180},[3487],{"type":45,"value":223},{"type":39,"tag":167,"props":3489,"children":3490},{"style":186},[3491],{"type":45,"value":199},{"type":39,"tag":167,"props":3493,"children":3494},{"style":202},[3495],{"type":45,"value":205},{"type":39,"tag":167,"props":3497,"children":3498},{"class":169,"line":259},[3499,3503,3507,3511,3515,3519,3523],{"type":39,"tag":167,"props":3500,"children":3501},{"style":180},[3502],{"type":45,"value":214},{"type":39,"tag":167,"props":3504,"children":3505},{"style":186},[3506],{"type":45,"value":189},{"type":39,"tag":167,"props":3508,"children":3509},{"style":180},[3510],{"type":45,"value":273},{"type":39,"tag":167,"props":3512,"children":3513},{"style":186},[3514],{"type":45,"value":278},{"type":39,"tag":167,"props":3516,"children":3517},{"style":202},[3518],{"type":45,"value":283},{"type":39,"tag":167,"props":3520,"children":3521},{"style":186},[3522],{"type":45,"value":288},{"type":39,"tag":167,"props":3524,"children":3525},{"style":202},[3526],{"type":45,"value":205},{"type":39,"tag":167,"props":3528,"children":3529},{"class":169,"line":295},[3530,3534,3538,3542,3546],{"type":39,"tag":167,"props":3531,"children":3532},{"style":180},[3533],{"type":45,"value":214},{"type":39,"tag":167,"props":3535,"children":3536},{"style":186},[3537],{"type":45,"value":189},{"type":39,"tag":167,"props":3539,"children":3540},{"style":180},[3541],{"type":45,"value":461},{"type":39,"tag":167,"props":3543,"children":3544},{"style":186},[3545],{"type":45,"value":199},{"type":39,"tag":167,"props":3547,"children":3548},{"style":202},[3549],{"type":45,"value":205},{"type":39,"tag":167,"props":3551,"children":3552},{"class":169,"line":308},[3553,3557,3561,3565],{"type":39,"tag":167,"props":3554,"children":3555},{"style":180},[3556],{"type":45,"value":214},{"type":39,"tag":167,"props":3558,"children":3559},{"style":186},[3560],{"type":45,"value":189},{"type":39,"tag":167,"props":3562,"children":3563},{"style":180},[3564],{"type":45,"value":485},{"type":39,"tag":167,"props":3566,"children":3567},{"style":186},[3568],{"type":45,"value":328},{"type":39,"tag":167,"props":3570,"children":3571},{"class":169,"line":496},[3572],{"type":39,"tag":167,"props":3573,"children":3575},{"emptyLinePlaceholder":3574},true,[3576],{"type":45,"value":3577},"\n",{"type":39,"tag":167,"props":3579,"children":3580},{"class":169,"line":508},[3581],{"type":39,"tag":167,"props":3582,"children":3583},{"style":3441},[3584],{"type":45,"value":3585},"# 2. Extract POI IDs from locations.results[].id\n",{"type":39,"tag":167,"props":3587,"children":3588},{"class":169,"line":532},[3589],{"type":39,"tag":167,"props":3590,"children":3591},{"style":3441},[3592],{"type":45,"value":3593},"# 3. Use those IDs with this endpoint\n",{"type":39,"tag":142,"props":3595,"children":3597},{"id":3596},"use-cases",[3598],{"type":45,"value":3599},"Use Cases",{"type":39,"tag":3601,"props":3602,"children":3603},"ul",{},[3604,3614,3624,3634],{"type":39,"tag":108,"props":3605,"children":3606},{},[3607,3612],{"type":39,"tag":56,"props":3608,"children":3609},{},[3610],{"type":45,"value":3611},"Local business lookup",{"type":45,"value":3613},": Retrieve full details (hours, contact, address) for POIs surfaced in web search",{"type":39,"tag":108,"props":3615,"children":3616},{},[3617,3622],{"type":39,"tag":56,"props":3618,"children":3619},{},[3620],{"type":45,"value":3621},"Restaurant discovery pipeline",{"type":45,"value":3623},": Search for restaurants, fetch POI details, filter by cuisine\u002Frating\u002Fprice_range",{"type":39,"tag":108,"props":3625,"children":3626},{},[3627,3632],{"type":39,"tag":56,"props":3628,"children":3629},{},[3630],{"type":45,"value":3631},"Business hours checker",{"type":45,"value":3633},": Get opening_hours for a business to determine if currently open",{"type":39,"tag":108,"props":3635,"children":3636},{},[3637,3642],{"type":39,"tag":56,"props":3638,"children":3639},{},[3640],{"type":45,"value":3641},"Location-aware application",{"type":45,"value":3643},": Combine with location headers to get distance calculations for nearby POIs",{"type":39,"tag":142,"props":3645,"children":3647},{"id":3646},"notes",[3648],{"type":45,"value":3649},"Notes",{"type":39,"tag":3601,"props":3651,"children":3652},{},[3653,3670,3692],{"type":39,"tag":108,"props":3654,"children":3655},{},[3656,3661,3663,3668],{"type":39,"tag":56,"props":3657,"children":3658},{},[3659],{"type":45,"value":3660},"ID format",{"type":45,"value":3662},": Opaque strings (use ",{"type":39,"tag":114,"props":3664,"children":3666},{"className":3665},[],[3667],{"type":45,"value":611},{"type":45,"value":3669}," for cURL)",{"type":39,"tag":108,"props":3671,"children":3672},{},[3673,3678,3679,3684,3685,3690],{"type":39,"tag":56,"props":3674,"children":3675},{},[3676],{"type":45,"value":3677},"Units",{"type":45,"value":653},{"type":39,"tag":114,"props":3680,"children":3682},{"className":3681},[],[3683],{"type":45,"value":851},{"type":45,"value":1614},{"type":39,"tag":114,"props":3686,"children":3688},{"className":3687},[],[3689],{"type":45,"value":859},{"type":45,"value":3691}," for distance measurement preference",{"type":39,"tag":108,"props":3693,"children":3694},{},[3695,3700],{"type":39,"tag":56,"props":3696,"children":3697},{},[3698],{"type":45,"value":3699},"Max IDs",{"type":45,"value":3701},": Up to 20 IDs per request",{"type":39,"tag":3703,"props":3704,"children":3705},"style",{},[3706],{"type":45,"value":3707},"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":3709,"total":2331},[3710,3722,3738,3750,3759,3769,3779,3785,3794,3803,3812,3824],{"slug":3711,"name":3711,"fn":3712,"description":3713,"org":3714,"tags":3715,"stars":22,"repoUrl":23,"updatedAt":3721},"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},[3716,3717,3720],{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},"LLM","llm",{"name":20,"slug":21,"type":15},"2026-04-06T18:05:53.15861",{"slug":3723,"name":3723,"fn":3724,"description":3725,"org":3726,"tags":3727,"stars":22,"repoUrl":23,"updatedAt":3737},"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},[3728,3731,3732,3733,3736],{"name":3729,"slug":3730,"type":15},"AI Context","ai-context",{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},{"name":3734,"slug":3735,"type":15},"Research","research",{"name":20,"slug":21,"type":15},"2026-04-08T04:55:31.217318",{"slug":3739,"name":3739,"fn":3740,"description":3741,"org":3742,"tags":3743,"stars":22,"repoUrl":23,"updatedAt":3749},"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},[3744,3745,3748],{"name":13,"slug":14,"type":15},{"name":3746,"slug":3747,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"2026-04-06T18:06:05.777322",{"slug":3751,"name":3751,"fn":3752,"description":3753,"org":3754,"tags":3755,"stars":22,"repoUrl":23,"updatedAt":3758},"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},[3756,3757],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:04.504482",{"slug":3760,"name":3760,"fn":3761,"description":3762,"org":3763,"tags":3764,"stars":22,"repoUrl":23,"updatedAt":3768},"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},[3765,3766,3767],{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:58.243978",{"slug":3770,"name":3770,"fn":3771,"description":3772,"org":3773,"tags":3774,"stars":22,"repoUrl":23,"updatedAt":3778},"local-descriptions","fetch AI-generated descriptions for local POIs","USE FOR getting AI-generated POI text descriptions. Requires POI IDs obtained 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},[3775,3776,3777],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:03.239884",{"slug":4,"name":4,"fn":5,"description":6,"org":3780,"tags":3781,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3782,3783,3784],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":3786,"name":3786,"fn":3787,"description":3788,"org":3789,"tags":3790,"stars":22,"repoUrl":23,"updatedAt":3793},"news-search","search news articles","USE FOR news search. Returns news articles with title, URL, description, age, thumbnail. Supports freshness and date range filtering, SafeSearch filter and Goggles for custom ranking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3791,3792],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:01.995483",{"slug":3795,"name":3795,"fn":3796,"description":3797,"org":3798,"tags":3799,"stars":22,"repoUrl":23,"updatedAt":3802},"spellcheck","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},[3800,3801],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:59.499925",{"slug":3804,"name":3804,"fn":3805,"description":3806,"org":3807,"tags":3808,"stars":22,"repoUrl":23,"updatedAt":3811},"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},[3809,3810],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:05:54.426217",{"slug":3813,"name":3813,"fn":3814,"description":3815,"org":3816,"tags":3817,"stars":22,"repoUrl":23,"updatedAt":3823},"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},[3818,3819,3820],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":3821,"slug":3822,"type":15},"Video","video","2026-04-06T18:05:56.996883",{"slug":119,"name":119,"fn":3825,"description":3826,"org":3827,"tags":3828,"stars":22,"repoUrl":23,"updatedAt":3831},"search the web via Brave API","USE FOR web search. Returns ranked results with snippets, URLs, thumbnails. Supports freshness filters, SafeSearch, Goggles for custom ranking, pagination. Primary search endpoint.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3829,3830],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-04-06T18:06:00.748827",{"items":3833,"total":2331},[3834,3840,3848,3854,3859,3865,3871],{"slug":3711,"name":3711,"fn":3712,"description":3713,"org":3835,"tags":3836,"stars":22,"repoUrl":23,"updatedAt":3721},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3837,3838,3839],{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},{"name":20,"slug":21,"type":15},{"slug":3723,"name":3723,"fn":3724,"description":3725,"org":3841,"tags":3842,"stars":22,"repoUrl":23,"updatedAt":3737},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3843,3844,3845,3846,3847],{"name":3729,"slug":3730,"type":15},{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},{"name":3734,"slug":3735,"type":15},{"name":20,"slug":21,"type":15},{"slug":3739,"name":3739,"fn":3740,"description":3741,"org":3849,"tags":3850,"stars":22,"repoUrl":23,"updatedAt":3749},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3851,3852,3853],{"name":13,"slug":14,"type":15},{"name":3746,"slug":3747,"type":15},{"name":20,"slug":21,"type":15},{"slug":3751,"name":3751,"fn":3752,"description":3753,"org":3855,"tags":3856,"stars":22,"repoUrl":23,"updatedAt":3758},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3857,3858],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":3760,"name":3760,"fn":3761,"description":3762,"org":3860,"tags":3861,"stars":22,"repoUrl":23,"updatedAt":3768},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3862,3863,3864],{"name":13,"slug":14,"type":15},{"name":3718,"slug":3719,"type":15},{"name":20,"slug":21,"type":15},{"slug":3770,"name":3770,"fn":3771,"description":3772,"org":3866,"tags":3867,"stars":22,"repoUrl":23,"updatedAt":3778},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3868,3869,3870],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":3872,"tags":3873,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3874,3875,3876],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15}]