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