[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-news-search":3,"mdc-sl99be-key":30,"related-org-brave-news-search":3127,"related-repo-brave-news-search":3253},{"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},"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},"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:01.995483",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\u002Fnews-search","---\nname: news-search\ndescription: 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.\n---\n\n# News 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\u002Fnews\u002Fsearch?q=space+exploration\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n```\n\n### Recent News (Past 24 Hours)\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=cybersecurity\" \\\n  --data-urlencode \"country=US\" \\\n  --data-urlencode \"freshness=pd\" \\\n  --data-urlencode \"count=20\"\n```\n\n### Date Range Filter\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=climate summit\" \\\n  --data-urlencode \"freshness=2026-01-01to2026-01-31\"\n```\n\n## Endpoint\n\n```http\nGET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\nPOST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\n```\n\n**Authentication**: `X-Subscription-Token: \u003CAPI_KEY>` header\n\n**Note**: Both GET and POST are supported. POST is useful for long queries or complex Goggles.\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` | Number of results (1-50) |\n| `offset` | int | No | `0` | Page offset (0-9) |\n| `safesearch` | string | No | `strict` | 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| `spellcheck` | bool | No | `true` | Auto-correct query |\n| `extra_snippets` | bool | No | - | Up to 5 additional excerpts per result |\n| `goggles` | string or array | No | - | Custom ranking filter (URL or inline; repeat param for multiple) |\n| `operators` | bool | No | `true` | Apply search operators |\n| `include_fetch_metadata` | bool | No | `false` | Include fetch timestamps in results |\n\n### Freshness Values\n\n| Value | Description |\n|--|--|\n| `pd` | Past day (24 hours) - ideal for breaking news |\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## Response Format\n\n```json\n{\n  \"type\": \"news\",\n  \"query\": {\n    \"original\": \"space exploration\"\n  },\n  \"results\": [\n    {\n      \"type\": \"news_result\",\n      \"title\": \"New Developments in Space Exploration\",\n      \"url\": \"https:\u002F\u002Fnews.example.com\u002Fspace-exploration\",\n      \"description\": \"Recent missions have advanced our understanding of...\",\n      \"age\": \"2 hours ago\",\n      \"page_age\": \"2026-01-15T14:30:00\",\n      \"page_fetched\": \"2026-01-15T15:00:00Z\",\n      \"meta_url\": {\n        \"scheme\": \"https\",\n        \"netloc\": \"news.example.com\",\n        \"hostname\": \"news.example.com\",\n        \"favicon\": \"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002Fnews.example.com\",\n        \"path\": \"\u002Fspace-exploration\"\n      },\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fimgs.search.brave.com\u002F...\"\n      }\n    }\n  ]\n}\n```\n\n## Response Fields\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Always `\"news\"` |\n| `query.original` | string | The original search query |\n| `query.altered` | string? | Spellcheck-corrected query (if changed) |\n| `query.cleaned` | string? | Cleaned\u002Fnormalized query from spellchecker |\n| `query.spellcheck_off` | bool? | Whether spellcheck was disabled |\n| `query.show_strict_warning` | bool? | True if strict safesearch blocked results |\n| `query.search_operators` | object? | Applied search operators |\n| `query.search_operators.applied` | bool | Whether operators were applied |\n| `query.search_operators.cleaned_query` | string? | Query after operator processing |\n| `query.search_operators.sites` | list[str]? | Domains from `site:` operators |\n| `results[].type` | string | Always `\"news_result\"` |\n| `results[].title` | string | Article title |\n| `results[].url` | string | Source URL of the article |\n| `results[].description` | string? | Article description\u002Fsummary |\n| `results[].age` | string? | Human-readable age (e.g. \"2 hours ago\") |\n| `results[].page_age` | string? | Publication date from source (ISO datetime) |\n| `results[].page_fetched` | string? | When page was last fetched (ISO datetime) |\n| `results[].fetched_content_timestamp` | int? | Fetch timestamp (only with `include_fetch_metadata=true`) |\n| `results[].meta_url.scheme` | string? | URL protocol scheme |\n| `results[].meta_url.netloc` | string? | Network location |\n| `results[].meta_url.hostname` | string? | Lowercased domain name |\n| `results[].meta_url.favicon` | string? | Favicon URL |\n| `results[].meta_url.path` | string? | URL path |\n| `results[].thumbnail.src` | string | Served thumbnail URL |\n| `results[].thumbnail.original` | string? | Original thumbnail URL |\n| `results[].extra_snippets` | list[str]? | Up to 5 additional excerpts per result |\n\n## Goggles (Custom Ranking) — Unique to Brave\n\nGoggles let you **re-rank news results** — boost trusted outlets or suppress unwanted sources.\n\n| Method | Example |\n|--|--|\n| **Hosted** | `--data-urlencode \"goggles=https:\u002F\u002Fraw.githubusercontent.com\u002Fbrave\u002Fgoggles-quickstart\u002Fmain\u002Fgoggles\u002Fhacker_news.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## Search Operators\n\nUse search operators to refine results:\n- `site:local-paper.com` - Limit to specific news site\n- `\"exact phrase\"` - Match exact phrase\n- `-exclude` - Exclude term\n\nSet `operators=false` to disable operator parsing.\n\n## Use Cases\n\n- **Breaking news monitoring**: Use `freshness=pd` for the most recent articles on a topic.\n- **Custom news feeds with Goggles**: Boost trusted sources and discard other sources — unique to Brave.\n- **Historical news research**: Use `freshness=YYYY-MM-DDtoYYYY-MM-DD` to find articles from specific time periods.\n- **Multilingual news**: Combine `country`, `search_lang`, and `ui_lang` for cross-locale results.\n- **Data pipelines**: Set `include_fetch_metadata=true` for `fetched_content_timestamp` on each result.\n\n## Notes\n\n- **SafeSearch**: Defaults to `strict`\n- **Pagination**: Use `offset` (0-9) with `count`\n- **Extra snippets**: Up to 5 additional excerpts when `extra_snippets=true`\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,43,89,96,103,213,219,420,426,569,575,600,618,628,634,1166,1172,1274,1280,2018,2024,2636,2642,2654,2716,2765,2829,2858,2890,2896,2901,2939,2952,2958,3060,3066,3121],{"type":36,"tag":37,"props":38,"children":39},"element","h1",{"id":4},[40],{"type":41,"value":42},"text","News 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\u002Fnews\u002Fsearch?q=space+exploration\" \\\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\u002Fnews\u002Fsearch?q=space+exploration",{"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},"recent-news-past-24-hours",[217],{"type":41,"value":218},"Recent News (Past 24 Hours)",{"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\u002Fnews\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=cybersecurity\" \\\n  --data-urlencode \"country=US\" \\\n  --data-urlencode \"freshness=pd\" \\\n  --data-urlencode \"count=20\"\n",[223],{"type":36,"tag":112,"props":224,"children":225},{"__ignoreMap":109},[226,254,277,309,322,348,373,398],{"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\u002Fnews\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=cybersecurity",{"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},"freshness=pd",{"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],{"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=20",{"type":36,"tag":116,"props":416,"children":417},{"style":135},[418],{"type":41,"value":419},"\"\n",{"type":36,"tag":97,"props":421,"children":423},{"id":422},"date-range-filter",[424],{"type":41,"value":425},"Date Range Filter",{"type":36,"tag":104,"props":427,"children":429},{"className":106,"code":428,"language":108,"meta":109,"style":109},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=climate summit\" \\\n  --data-urlencode \"freshness=2026-01-01to2026-01-31\"\n",[430],{"type":36,"tag":112,"props":431,"children":432},{"__ignoreMap":109},[433,460,483,514,525,549],{"type":36,"tag":116,"props":434,"children":435},{"class":118,"line":119},[436,440,444,448,452,456],{"type":36,"tag":116,"props":437,"children":438},{"style":123},[439],{"type":41,"value":126},{"type":36,"tag":116,"props":441,"children":442},{"style":129},[443],{"type":41,"value":132},{"type":36,"tag":116,"props":445,"children":446},{"style":135},[447],{"type":41,"value":138},{"type":36,"tag":116,"props":449,"children":450},{"style":129},[451],{"type":41,"value":245},{"type":36,"tag":116,"props":453,"children":454},{"style":135},[455],{"type":41,"value":148},{"type":36,"tag":116,"props":457,"children":458},{"style":151},[459],{"type":41,"value":154},{"type":36,"tag":116,"props":461,"children":462},{"class":118,"line":157},[463,467,471,475,479],{"type":36,"tag":116,"props":464,"children":465},{"style":129},[466],{"type":41,"value":163},{"type":36,"tag":116,"props":468,"children":469},{"style":135},[470],{"type":41,"value":138},{"type":36,"tag":116,"props":472,"children":473},{"style":129},[474],{"type":41,"value":172},{"type":36,"tag":116,"props":476,"children":477},{"style":135},[478],{"type":41,"value":148},{"type":36,"tag":116,"props":480,"children":481},{"style":151},[482],{"type":41,"value":154},{"type":36,"tag":116,"props":484,"children":485},{"class":118,"line":183},[486,490,494,498,502,506,510],{"type":36,"tag":116,"props":487,"children":488},{"style":129},[489],{"type":41,"value":163},{"type":36,"tag":116,"props":491,"children":492},{"style":135},[493],{"type":41,"value":138},{"type":36,"tag":116,"props":495,"children":496},{"style":129},[497],{"type":41,"value":197},{"type":36,"tag":116,"props":499,"children":500},{"style":135},[501],{"type":41,"value":202},{"type":36,"tag":116,"props":503,"children":504},{"style":151},[505],{"type":41,"value":207},{"type":36,"tag":116,"props":507,"children":508},{"style":135},[509],{"type":41,"value":304},{"type":36,"tag":116,"props":511,"children":512},{"style":151},[513],{"type":41,"value":154},{"type":36,"tag":116,"props":515,"children":516},{"class":118,"line":311},[517,521],{"type":36,"tag":116,"props":518,"children":519},{"style":129},[520],{"type":41,"value":317},{"type":36,"tag":116,"props":522,"children":523},{"style":151},[524],{"type":41,"value":154},{"type":36,"tag":116,"props":526,"children":527},{"class":118,"line":324},[528,532,536,541,545],{"type":36,"tag":116,"props":529,"children":530},{"style":129},[531],{"type":41,"value":330},{"type":36,"tag":116,"props":533,"children":534},{"style":135},[535],{"type":41,"value":138},{"type":36,"tag":116,"props":537,"children":538},{"style":129},[539],{"type":41,"value":540},"q=climate summit",{"type":36,"tag":116,"props":542,"children":543},{"style":135},[544],{"type":41,"value":148},{"type":36,"tag":116,"props":546,"children":547},{"style":151},[548],{"type":41,"value":154},{"type":36,"tag":116,"props":550,"children":551},{"class":118,"line":350},[552,556,560,565],{"type":36,"tag":116,"props":553,"children":554},{"style":129},[555],{"type":41,"value":330},{"type":36,"tag":116,"props":557,"children":558},{"style":135},[559],{"type":41,"value":138},{"type":36,"tag":116,"props":561,"children":562},{"style":129},[563],{"type":41,"value":564},"freshness=2026-01-01to2026-01-31",{"type":36,"tag":116,"props":566,"children":567},{"style":135},[568],{"type":41,"value":419},{"type":36,"tag":90,"props":570,"children":572},{"id":571},"endpoint",[573],{"type":41,"value":574},"Endpoint",{"type":36,"tag":104,"props":576,"children":580},{"className":577,"code":578,"language":579,"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\u002Fnews\u002Fsearch\nPOST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\n","http",[581],{"type":36,"tag":112,"props":582,"children":583},{"__ignoreMap":109},[584,592],{"type":36,"tag":116,"props":585,"children":586},{"class":118,"line":119},[587],{"type":36,"tag":116,"props":588,"children":589},{},[590],{"type":41,"value":591},"GET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\n",{"type":36,"tag":116,"props":593,"children":594},{"class":118,"line":157},[595],{"type":36,"tag":116,"props":596,"children":597},{},[598],{"type":41,"value":599},"POST https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fnews\u002Fsearch\n",{"type":36,"tag":48,"props":601,"children":602},{},[603,608,610,616],{"type":36,"tag":52,"props":604,"children":605},{},[606],{"type":41,"value":607},"Authentication",{"type":41,"value":609},": ",{"type":36,"tag":112,"props":611,"children":613},{"className":612},[],[614],{"type":41,"value":615},"X-Subscription-Token: \u003CAPI_KEY>",{"type":41,"value":617}," header",{"type":36,"tag":48,"props":619,"children":620},{},[621,626],{"type":36,"tag":52,"props":622,"children":623},{},[624],{"type":41,"value":625},"Note",{"type":41,"value":627},": Both GET and POST are supported. POST is useful for long queries or complex Goggles.",{"type":36,"tag":90,"props":629,"children":631},{"id":630},"parameters",[632],{"type":41,"value":633},"Parameters",{"type":36,"tag":635,"props":636,"children":637},"table",{},[638,672],{"type":36,"tag":639,"props":640,"children":641},"thead",{},[642],{"type":36,"tag":643,"props":644,"children":645},"tr",{},[646,652,657,662,667],{"type":36,"tag":647,"props":648,"children":649},"th",{},[650],{"type":41,"value":651},"Parameter",{"type":36,"tag":647,"props":653,"children":654},{},[655],{"type":41,"value":656},"Type",{"type":36,"tag":647,"props":658,"children":659},{},[660],{"type":41,"value":661},"Required",{"type":36,"tag":647,"props":663,"children":664},{},[665],{"type":41,"value":666},"Default",{"type":36,"tag":647,"props":668,"children":669},{},[670],{"type":41,"value":671},"Description",{"type":36,"tag":673,"props":674,"children":675},"tbody",{},[676,712,755,789,823,858,892,947,1005,1040,1069,1099,1132],{"type":36,"tag":643,"props":677,"children":678},{},[679,689,694,702,707],{"type":36,"tag":680,"props":681,"children":682},"td",{},[683],{"type":36,"tag":112,"props":684,"children":686},{"className":685},[],[687],{"type":41,"value":688},"q",{"type":36,"tag":680,"props":690,"children":691},{},[692],{"type":41,"value":693},"string",{"type":36,"tag":680,"props":695,"children":696},{},[697],{"type":36,"tag":52,"props":698,"children":699},{},[700],{"type":41,"value":701},"Yes",{"type":36,"tag":680,"props":703,"children":704},{},[705],{"type":41,"value":706},"-",{"type":36,"tag":680,"props":708,"children":709},{},[710],{"type":41,"value":711},"Search query (1-400 chars, max 50 words)",{"type":36,"tag":643,"props":713,"children":714},{},[715,724,728,733,742],{"type":36,"tag":680,"props":716,"children":717},{},[718],{"type":36,"tag":112,"props":719,"children":721},{"className":720},[],[722],{"type":41,"value":723},"country",{"type":36,"tag":680,"props":725,"children":726},{},[727],{"type":41,"value":693},{"type":36,"tag":680,"props":729,"children":730},{},[731],{"type":41,"value":732},"No",{"type":36,"tag":680,"props":734,"children":735},{},[736],{"type":36,"tag":112,"props":737,"children":739},{"className":738},[],[740],{"type":41,"value":741},"US",{"type":36,"tag":680,"props":743,"children":744},{},[745,747,753],{"type":41,"value":746},"Search country (2-letter country code or ",{"type":36,"tag":112,"props":748,"children":750},{"className":749},[],[751],{"type":41,"value":752},"ALL",{"type":41,"value":754},")",{"type":36,"tag":643,"props":756,"children":757},{},[758,767,771,775,784],{"type":36,"tag":680,"props":759,"children":760},{},[761],{"type":36,"tag":112,"props":762,"children":764},{"className":763},[],[765],{"type":41,"value":766},"search_lang",{"type":36,"tag":680,"props":768,"children":769},{},[770],{"type":41,"value":693},{"type":36,"tag":680,"props":772,"children":773},{},[774],{"type":41,"value":732},{"type":36,"tag":680,"props":776,"children":777},{},[778],{"type":36,"tag":112,"props":779,"children":781},{"className":780},[],[782],{"type":41,"value":783},"en",{"type":36,"tag":680,"props":785,"children":786},{},[787],{"type":41,"value":788},"Language preference (2+ char language code)",{"type":36,"tag":643,"props":790,"children":791},{},[792,801,805,809,818],{"type":36,"tag":680,"props":793,"children":794},{},[795],{"type":36,"tag":112,"props":796,"children":798},{"className":797},[],[799],{"type":41,"value":800},"ui_lang",{"type":36,"tag":680,"props":802,"children":803},{},[804],{"type":41,"value":693},{"type":36,"tag":680,"props":806,"children":807},{},[808],{"type":41,"value":732},{"type":36,"tag":680,"props":810,"children":811},{},[812],{"type":36,"tag":112,"props":813,"children":815},{"className":814},[],[816],{"type":41,"value":817},"en-US",{"type":36,"tag":680,"props":819,"children":820},{},[821],{"type":41,"value":822},"UI language (e.g., \"en-US\")",{"type":36,"tag":643,"props":824,"children":825},{},[826,835,840,844,853],{"type":36,"tag":680,"props":827,"children":828},{},[829],{"type":36,"tag":112,"props":830,"children":832},{"className":831},[],[833],{"type":41,"value":834},"count",{"type":36,"tag":680,"props":836,"children":837},{},[838],{"type":41,"value":839},"int",{"type":36,"tag":680,"props":841,"children":842},{},[843],{"type":41,"value":732},{"type":36,"tag":680,"props":845,"children":846},{},[847],{"type":36,"tag":112,"props":848,"children":850},{"className":849},[],[851],{"type":41,"value":852},"20",{"type":36,"tag":680,"props":854,"children":855},{},[856],{"type":41,"value":857},"Number of results (1-50)",{"type":36,"tag":643,"props":859,"children":860},{},[861,870,874,878,887],{"type":36,"tag":680,"props":862,"children":863},{},[864],{"type":36,"tag":112,"props":865,"children":867},{"className":866},[],[868],{"type":41,"value":869},"offset",{"type":36,"tag":680,"props":871,"children":872},{},[873],{"type":41,"value":839},{"type":36,"tag":680,"props":875,"children":876},{},[877],{"type":41,"value":732},{"type":36,"tag":680,"props":879,"children":880},{},[881],{"type":36,"tag":112,"props":882,"children":884},{"className":883},[],[885],{"type":41,"value":886},"0",{"type":36,"tag":680,"props":888,"children":889},{},[890],{"type":41,"value":891},"Page offset (0-9)",{"type":36,"tag":643,"props":893,"children":894},{},[895,904,908,912,921],{"type":36,"tag":680,"props":896,"children":897},{},[898],{"type":36,"tag":112,"props":899,"children":901},{"className":900},[],[902],{"type":41,"value":903},"safesearch",{"type":36,"tag":680,"props":905,"children":906},{},[907],{"type":41,"value":693},{"type":36,"tag":680,"props":909,"children":910},{},[911],{"type":41,"value":732},{"type":36,"tag":680,"props":913,"children":914},{},[915],{"type":36,"tag":112,"props":916,"children":918},{"className":917},[],[919],{"type":41,"value":920},"strict",{"type":36,"tag":680,"props":922,"children":923},{},[924,926,932,934,940,941,946],{"type":41,"value":925},"Adult content filter (",{"type":36,"tag":112,"props":927,"children":929},{"className":928},[],[930],{"type":41,"value":931},"off",{"type":41,"value":933},"\u002F",{"type":36,"tag":112,"props":935,"children":937},{"className":936},[],[938],{"type":41,"value":939},"moderate",{"type":41,"value":933},{"type":36,"tag":112,"props":942,"children":944},{"className":943},[],[945],{"type":41,"value":920},{"type":41,"value":754},{"type":36,"tag":643,"props":948,"children":949},{},[950,959,963,967,971],{"type":36,"tag":680,"props":951,"children":952},{},[953],{"type":36,"tag":112,"props":954,"children":956},{"className":955},[],[957],{"type":41,"value":958},"freshness",{"type":36,"tag":680,"props":960,"children":961},{},[962],{"type":41,"value":693},{"type":36,"tag":680,"props":964,"children":965},{},[966],{"type":41,"value":732},{"type":36,"tag":680,"props":968,"children":969},{},[970],{"type":41,"value":706},{"type":36,"tag":680,"props":972,"children":973},{},[974,976,982,983,989,990,996,997,1003],{"type":41,"value":975},"Time filter (",{"type":36,"tag":112,"props":977,"children":979},{"className":978},[],[980],{"type":41,"value":981},"pd",{"type":41,"value":933},{"type":36,"tag":112,"props":984,"children":986},{"className":985},[],[987],{"type":41,"value":988},"pw",{"type":41,"value":933},{"type":36,"tag":112,"props":991,"children":993},{"className":992},[],[994],{"type":41,"value":995},"pm",{"type":41,"value":933},{"type":36,"tag":112,"props":998,"children":1000},{"className":999},[],[1001],{"type":41,"value":1002},"py",{"type":41,"value":1004}," or date range)",{"type":36,"tag":643,"props":1006,"children":1007},{},[1008,1017,1022,1026,1035],{"type":36,"tag":680,"props":1009,"children":1010},{},[1011],{"type":36,"tag":112,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":41,"value":1016},"spellcheck",{"type":36,"tag":680,"props":1018,"children":1019},{},[1020],{"type":41,"value":1021},"bool",{"type":36,"tag":680,"props":1023,"children":1024},{},[1025],{"type":41,"value":732},{"type":36,"tag":680,"props":1027,"children":1028},{},[1029],{"type":36,"tag":112,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":41,"value":1034},"true",{"type":36,"tag":680,"props":1036,"children":1037},{},[1038],{"type":41,"value":1039},"Auto-correct query",{"type":36,"tag":643,"props":1041,"children":1042},{},[1043,1052,1056,1060,1064],{"type":36,"tag":680,"props":1044,"children":1045},{},[1046],{"type":36,"tag":112,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":41,"value":1051},"extra_snippets",{"type":36,"tag":680,"props":1053,"children":1054},{},[1055],{"type":41,"value":1021},{"type":36,"tag":680,"props":1057,"children":1058},{},[1059],{"type":41,"value":732},{"type":36,"tag":680,"props":1061,"children":1062},{},[1063],{"type":41,"value":706},{"type":36,"tag":680,"props":1065,"children":1066},{},[1067],{"type":41,"value":1068},"Up to 5 additional excerpts per result",{"type":36,"tag":643,"props":1070,"children":1071},{},[1072,1081,1086,1090,1094],{"type":36,"tag":680,"props":1073,"children":1074},{},[1075],{"type":36,"tag":112,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":41,"value":1080},"goggles",{"type":36,"tag":680,"props":1082,"children":1083},{},[1084],{"type":41,"value":1085},"string or array",{"type":36,"tag":680,"props":1087,"children":1088},{},[1089],{"type":41,"value":732},{"type":36,"tag":680,"props":1091,"children":1092},{},[1093],{"type":41,"value":706},{"type":36,"tag":680,"props":1095,"children":1096},{},[1097],{"type":41,"value":1098},"Custom ranking filter (URL or inline; repeat param for multiple)",{"type":36,"tag":643,"props":1100,"children":1101},{},[1102,1111,1115,1119,1127],{"type":36,"tag":680,"props":1103,"children":1104},{},[1105],{"type":36,"tag":112,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":41,"value":1110},"operators",{"type":36,"tag":680,"props":1112,"children":1113},{},[1114],{"type":41,"value":1021},{"type":36,"tag":680,"props":1116,"children":1117},{},[1118],{"type":41,"value":732},{"type":36,"tag":680,"props":1120,"children":1121},{},[1122],{"type":36,"tag":112,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":41,"value":1034},{"type":36,"tag":680,"props":1128,"children":1129},{},[1130],{"type":41,"value":1131},"Apply search operators",{"type":36,"tag":643,"props":1133,"children":1134},{},[1135,1144,1148,1152,1161],{"type":36,"tag":680,"props":1136,"children":1137},{},[1138],{"type":36,"tag":112,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":41,"value":1143},"include_fetch_metadata",{"type":36,"tag":680,"props":1145,"children":1146},{},[1147],{"type":41,"value":1021},{"type":36,"tag":680,"props":1149,"children":1150},{},[1151],{"type":41,"value":732},{"type":36,"tag":680,"props":1153,"children":1154},{},[1155],{"type":36,"tag":112,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":41,"value":1160},"false",{"type":36,"tag":680,"props":1162,"children":1163},{},[1164],{"type":41,"value":1165},"Include fetch timestamps in results",{"type":36,"tag":97,"props":1167,"children":1169},{"id":1168},"freshness-values",[1170],{"type":41,"value":1171},"Freshness Values",{"type":36,"tag":635,"props":1173,"children":1174},{},[1175,1190],{"type":36,"tag":639,"props":1176,"children":1177},{},[1178],{"type":36,"tag":643,"props":1179,"children":1180},{},[1181,1186],{"type":36,"tag":647,"props":1182,"children":1183},{},[1184],{"type":41,"value":1185},"Value",{"type":36,"tag":647,"props":1187,"children":1188},{},[1189],{"type":41,"value":671},{"type":36,"tag":673,"props":1191,"children":1192},{},[1193,1209,1225,1241,1257],{"type":36,"tag":643,"props":1194,"children":1195},{},[1196,1204],{"type":36,"tag":680,"props":1197,"children":1198},{},[1199],{"type":36,"tag":112,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":41,"value":981},{"type":36,"tag":680,"props":1205,"children":1206},{},[1207],{"type":41,"value":1208},"Past day (24 hours) - ideal for breaking news",{"type":36,"tag":643,"props":1210,"children":1211},{},[1212,1220],{"type":36,"tag":680,"props":1213,"children":1214},{},[1215],{"type":36,"tag":112,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":41,"value":988},{"type":36,"tag":680,"props":1221,"children":1222},{},[1223],{"type":41,"value":1224},"Past week (7 days)",{"type":36,"tag":643,"props":1226,"children":1227},{},[1228,1236],{"type":36,"tag":680,"props":1229,"children":1230},{},[1231],{"type":36,"tag":112,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":41,"value":995},{"type":36,"tag":680,"props":1237,"children":1238},{},[1239],{"type":41,"value":1240},"Past month (31 days)",{"type":36,"tag":643,"props":1242,"children":1243},{},[1244,1252],{"type":36,"tag":680,"props":1245,"children":1246},{},[1247],{"type":36,"tag":112,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":41,"value":1002},{"type":36,"tag":680,"props":1253,"children":1254},{},[1255],{"type":41,"value":1256},"Past year (365 days)",{"type":36,"tag":643,"props":1258,"children":1259},{},[1260,1269],{"type":36,"tag":680,"props":1261,"children":1262},{},[1263],{"type":36,"tag":112,"props":1264,"children":1266},{"className":1265},[],[1267],{"type":41,"value":1268},"YYYY-MM-DDtoYYYY-MM-DD",{"type":36,"tag":680,"props":1270,"children":1271},{},[1272],{"type":41,"value":1273},"Custom date range",{"type":36,"tag":90,"props":1275,"children":1277},{"id":1276},"response-format",[1278],{"type":41,"value":1279},"Response Format",{"type":36,"tag":104,"props":1281,"children":1285},{"className":1282,"code":1283,"language":1284,"meta":109,"style":109},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"news\",\n  \"query\": {\n    \"original\": \"space exploration\"\n  },\n  \"results\": [\n    {\n      \"type\": \"news_result\",\n      \"title\": \"New Developments in Space Exploration\",\n      \"url\": \"https:\u002F\u002Fnews.example.com\u002Fspace-exploration\",\n      \"description\": \"Recent missions have advanced our understanding of...\",\n      \"age\": \"2 hours ago\",\n      \"page_age\": \"2026-01-15T14:30:00\",\n      \"page_fetched\": \"2026-01-15T15:00:00Z\",\n      \"meta_url\": {\n        \"scheme\": \"https\",\n        \"netloc\": \"news.example.com\",\n        \"hostname\": \"news.example.com\",\n        \"favicon\": \"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002Fnews.example.com\",\n        \"path\": \"\u002Fspace-exploration\"\n      },\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fimgs.search.brave.com\u002F...\"\n      }\n    }\n  ]\n}\n","json",[1286],{"type":36,"tag":112,"props":1287,"children":1288},{"__ignoreMap":109},[1289,1297,1338,1363,1397,1405,1430,1438,1475,1513,1551,1588,1626,1664,1702,1727,1767,1805,1842,1880,1914,1923,1948,1982,1991,2000,2009],{"type":36,"tag":116,"props":1290,"children":1291},{"class":118,"line":119},[1292],{"type":36,"tag":116,"props":1293,"children":1294},{"style":135},[1295],{"type":41,"value":1296},"{\n",{"type":36,"tag":116,"props":1298,"children":1299},{"class":118,"line":157},[1300,1305,1311,1315,1320,1324,1329,1333],{"type":36,"tag":116,"props":1301,"children":1302},{"style":135},[1303],{"type":41,"value":1304},"  \"",{"type":36,"tag":116,"props":1306,"children":1308},{"style":1307},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1309],{"type":41,"value":1310},"type",{"type":36,"tag":116,"props":1312,"children":1313},{"style":135},[1314],{"type":41,"value":148},{"type":36,"tag":116,"props":1316,"children":1317},{"style":135},[1318],{"type":41,"value":1319},":",{"type":36,"tag":116,"props":1321,"children":1322},{"style":135},[1323],{"type":41,"value":138},{"type":36,"tag":116,"props":1325,"children":1326},{"style":129},[1327],{"type":41,"value":1328},"news",{"type":36,"tag":116,"props":1330,"children":1331},{"style":135},[1332],{"type":41,"value":148},{"type":36,"tag":116,"props":1334,"children":1335},{"style":135},[1336],{"type":41,"value":1337},",\n",{"type":36,"tag":116,"props":1339,"children":1340},{"class":118,"line":183},[1341,1345,1350,1354,1358],{"type":36,"tag":116,"props":1342,"children":1343},{"style":135},[1344],{"type":41,"value":1304},{"type":36,"tag":116,"props":1346,"children":1347},{"style":1307},[1348],{"type":41,"value":1349},"query",{"type":36,"tag":116,"props":1351,"children":1352},{"style":135},[1353],{"type":41,"value":148},{"type":36,"tag":116,"props":1355,"children":1356},{"style":135},[1357],{"type":41,"value":1319},{"type":36,"tag":116,"props":1359,"children":1360},{"style":135},[1361],{"type":41,"value":1362}," {\n",{"type":36,"tag":116,"props":1364,"children":1365},{"class":118,"line":311},[1366,1371,1376,1380,1384,1388,1393],{"type":36,"tag":116,"props":1367,"children":1368},{"style":135},[1369],{"type":41,"value":1370},"    \"",{"type":36,"tag":116,"props":1372,"children":1373},{"style":123},[1374],{"type":41,"value":1375},"original",{"type":36,"tag":116,"props":1377,"children":1378},{"style":135},[1379],{"type":41,"value":148},{"type":36,"tag":116,"props":1381,"children":1382},{"style":135},[1383],{"type":41,"value":1319},{"type":36,"tag":116,"props":1385,"children":1386},{"style":135},[1387],{"type":41,"value":138},{"type":36,"tag":116,"props":1389,"children":1390},{"style":129},[1391],{"type":41,"value":1392},"space exploration",{"type":36,"tag":116,"props":1394,"children":1395},{"style":135},[1396],{"type":41,"value":419},{"type":36,"tag":116,"props":1398,"children":1399},{"class":118,"line":324},[1400],{"type":36,"tag":116,"props":1401,"children":1402},{"style":135},[1403],{"type":41,"value":1404},"  },\n",{"type":36,"tag":116,"props":1406,"children":1407},{"class":118,"line":350},[1408,1412,1417,1421,1425],{"type":36,"tag":116,"props":1409,"children":1410},{"style":135},[1411],{"type":41,"value":1304},{"type":36,"tag":116,"props":1413,"children":1414},{"style":1307},[1415],{"type":41,"value":1416},"results",{"type":36,"tag":116,"props":1418,"children":1419},{"style":135},[1420],{"type":41,"value":148},{"type":36,"tag":116,"props":1422,"children":1423},{"style":135},[1424],{"type":41,"value":1319},{"type":36,"tag":116,"props":1426,"children":1427},{"style":135},[1428],{"type":41,"value":1429}," [\n",{"type":36,"tag":116,"props":1431,"children":1432},{"class":118,"line":375},[1433],{"type":36,"tag":116,"props":1434,"children":1435},{"style":135},[1436],{"type":41,"value":1437},"    {\n",{"type":36,"tag":116,"props":1439,"children":1440},{"class":118,"line":400},[1441,1446,1450,1454,1458,1462,1467,1471],{"type":36,"tag":116,"props":1442,"children":1443},{"style":135},[1444],{"type":41,"value":1445},"      \"",{"type":36,"tag":116,"props":1447,"children":1448},{"style":123},[1449],{"type":41,"value":1310},{"type":36,"tag":116,"props":1451,"children":1452},{"style":135},[1453],{"type":41,"value":148},{"type":36,"tag":116,"props":1455,"children":1456},{"style":135},[1457],{"type":41,"value":1319},{"type":36,"tag":116,"props":1459,"children":1460},{"style":135},[1461],{"type":41,"value":138},{"type":36,"tag":116,"props":1463,"children":1464},{"style":129},[1465],{"type":41,"value":1466},"news_result",{"type":36,"tag":116,"props":1468,"children":1469},{"style":135},[1470],{"type":41,"value":148},{"type":36,"tag":116,"props":1472,"children":1473},{"style":135},[1474],{"type":41,"value":1337},{"type":36,"tag":116,"props":1476,"children":1478},{"class":118,"line":1477},9,[1479,1483,1488,1492,1496,1500,1505,1509],{"type":36,"tag":116,"props":1480,"children":1481},{"style":135},[1482],{"type":41,"value":1445},{"type":36,"tag":116,"props":1484,"children":1485},{"style":123},[1486],{"type":41,"value":1487},"title",{"type":36,"tag":116,"props":1489,"children":1490},{"style":135},[1491],{"type":41,"value":148},{"type":36,"tag":116,"props":1493,"children":1494},{"style":135},[1495],{"type":41,"value":1319},{"type":36,"tag":116,"props":1497,"children":1498},{"style":135},[1499],{"type":41,"value":138},{"type":36,"tag":116,"props":1501,"children":1502},{"style":129},[1503],{"type":41,"value":1504},"New Developments in Space Exploration",{"type":36,"tag":116,"props":1506,"children":1507},{"style":135},[1508],{"type":41,"value":148},{"type":36,"tag":116,"props":1510,"children":1511},{"style":135},[1512],{"type":41,"value":1337},{"type":36,"tag":116,"props":1514,"children":1516},{"class":118,"line":1515},10,[1517,1521,1526,1530,1534,1538,1543,1547],{"type":36,"tag":116,"props":1518,"children":1519},{"style":135},[1520],{"type":41,"value":1445},{"type":36,"tag":116,"props":1522,"children":1523},{"style":123},[1524],{"type":41,"value":1525},"url",{"type":36,"tag":116,"props":1527,"children":1528},{"style":135},[1529],{"type":41,"value":148},{"type":36,"tag":116,"props":1531,"children":1532},{"style":135},[1533],{"type":41,"value":1319},{"type":36,"tag":116,"props":1535,"children":1536},{"style":135},[1537],{"type":41,"value":138},{"type":36,"tag":116,"props":1539,"children":1540},{"style":129},[1541],{"type":41,"value":1542},"https:\u002F\u002Fnews.example.com\u002Fspace-exploration",{"type":36,"tag":116,"props":1544,"children":1545},{"style":135},[1546],{"type":41,"value":148},{"type":36,"tag":116,"props":1548,"children":1549},{"style":135},[1550],{"type":41,"value":1337},{"type":36,"tag":116,"props":1552,"children":1553},{"class":118,"line":23},[1554,1558,1563,1567,1571,1575,1580,1584],{"type":36,"tag":116,"props":1555,"children":1556},{"style":135},[1557],{"type":41,"value":1445},{"type":36,"tag":116,"props":1559,"children":1560},{"style":123},[1561],{"type":41,"value":1562},"description",{"type":36,"tag":116,"props":1564,"children":1565},{"style":135},[1566],{"type":41,"value":148},{"type":36,"tag":116,"props":1568,"children":1569},{"style":135},[1570],{"type":41,"value":1319},{"type":36,"tag":116,"props":1572,"children":1573},{"style":135},[1574],{"type":41,"value":138},{"type":36,"tag":116,"props":1576,"children":1577},{"style":129},[1578],{"type":41,"value":1579},"Recent missions have advanced our understanding of...",{"type":36,"tag":116,"props":1581,"children":1582},{"style":135},[1583],{"type":41,"value":148},{"type":36,"tag":116,"props":1585,"children":1586},{"style":135},[1587],{"type":41,"value":1337},{"type":36,"tag":116,"props":1589,"children":1591},{"class":118,"line":1590},12,[1592,1596,1601,1605,1609,1613,1618,1622],{"type":36,"tag":116,"props":1593,"children":1594},{"style":135},[1595],{"type":41,"value":1445},{"type":36,"tag":116,"props":1597,"children":1598},{"style":123},[1599],{"type":41,"value":1600},"age",{"type":36,"tag":116,"props":1602,"children":1603},{"style":135},[1604],{"type":41,"value":148},{"type":36,"tag":116,"props":1606,"children":1607},{"style":135},[1608],{"type":41,"value":1319},{"type":36,"tag":116,"props":1610,"children":1611},{"style":135},[1612],{"type":41,"value":138},{"type":36,"tag":116,"props":1614,"children":1615},{"style":129},[1616],{"type":41,"value":1617},"2 hours ago",{"type":36,"tag":116,"props":1619,"children":1620},{"style":135},[1621],{"type":41,"value":148},{"type":36,"tag":116,"props":1623,"children":1624},{"style":135},[1625],{"type":41,"value":1337},{"type":36,"tag":116,"props":1627,"children":1629},{"class":118,"line":1628},13,[1630,1634,1639,1643,1647,1651,1656,1660],{"type":36,"tag":116,"props":1631,"children":1632},{"style":135},[1633],{"type":41,"value":1445},{"type":36,"tag":116,"props":1635,"children":1636},{"style":123},[1637],{"type":41,"value":1638},"page_age",{"type":36,"tag":116,"props":1640,"children":1641},{"style":135},[1642],{"type":41,"value":148},{"type":36,"tag":116,"props":1644,"children":1645},{"style":135},[1646],{"type":41,"value":1319},{"type":36,"tag":116,"props":1648,"children":1649},{"style":135},[1650],{"type":41,"value":138},{"type":36,"tag":116,"props":1652,"children":1653},{"style":129},[1654],{"type":41,"value":1655},"2026-01-15T14:30:00",{"type":36,"tag":116,"props":1657,"children":1658},{"style":135},[1659],{"type":41,"value":148},{"type":36,"tag":116,"props":1661,"children":1662},{"style":135},[1663],{"type":41,"value":1337},{"type":36,"tag":116,"props":1665,"children":1667},{"class":118,"line":1666},14,[1668,1672,1677,1681,1685,1689,1694,1698],{"type":36,"tag":116,"props":1669,"children":1670},{"style":135},[1671],{"type":41,"value":1445},{"type":36,"tag":116,"props":1673,"children":1674},{"style":123},[1675],{"type":41,"value":1676},"page_fetched",{"type":36,"tag":116,"props":1678,"children":1679},{"style":135},[1680],{"type":41,"value":148},{"type":36,"tag":116,"props":1682,"children":1683},{"style":135},[1684],{"type":41,"value":1319},{"type":36,"tag":116,"props":1686,"children":1687},{"style":135},[1688],{"type":41,"value":138},{"type":36,"tag":116,"props":1690,"children":1691},{"style":129},[1692],{"type":41,"value":1693},"2026-01-15T15:00:00Z",{"type":36,"tag":116,"props":1695,"children":1696},{"style":135},[1697],{"type":41,"value":148},{"type":36,"tag":116,"props":1699,"children":1700},{"style":135},[1701],{"type":41,"value":1337},{"type":36,"tag":116,"props":1703,"children":1705},{"class":118,"line":1704},15,[1706,1710,1715,1719,1723],{"type":36,"tag":116,"props":1707,"children":1708},{"style":135},[1709],{"type":41,"value":1445},{"type":36,"tag":116,"props":1711,"children":1712},{"style":123},[1713],{"type":41,"value":1714},"meta_url",{"type":36,"tag":116,"props":1716,"children":1717},{"style":135},[1718],{"type":41,"value":148},{"type":36,"tag":116,"props":1720,"children":1721},{"style":135},[1722],{"type":41,"value":1319},{"type":36,"tag":116,"props":1724,"children":1725},{"style":135},[1726],{"type":41,"value":1362},{"type":36,"tag":116,"props":1728,"children":1730},{"class":118,"line":1729},16,[1731,1736,1742,1746,1750,1754,1759,1763],{"type":36,"tag":116,"props":1732,"children":1733},{"style":135},[1734],{"type":41,"value":1735},"        \"",{"type":36,"tag":116,"props":1737,"children":1739},{"style":1738},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1740],{"type":41,"value":1741},"scheme",{"type":36,"tag":116,"props":1743,"children":1744},{"style":135},[1745],{"type":41,"value":148},{"type":36,"tag":116,"props":1747,"children":1748},{"style":135},[1749],{"type":41,"value":1319},{"type":36,"tag":116,"props":1751,"children":1752},{"style":135},[1753],{"type":41,"value":138},{"type":36,"tag":116,"props":1755,"children":1756},{"style":129},[1757],{"type":41,"value":1758},"https",{"type":36,"tag":116,"props":1760,"children":1761},{"style":135},[1762],{"type":41,"value":148},{"type":36,"tag":116,"props":1764,"children":1765},{"style":135},[1766],{"type":41,"value":1337},{"type":36,"tag":116,"props":1768,"children":1770},{"class":118,"line":1769},17,[1771,1775,1780,1784,1788,1792,1797,1801],{"type":36,"tag":116,"props":1772,"children":1773},{"style":135},[1774],{"type":41,"value":1735},{"type":36,"tag":116,"props":1776,"children":1777},{"style":1738},[1778],{"type":41,"value":1779},"netloc",{"type":36,"tag":116,"props":1781,"children":1782},{"style":135},[1783],{"type":41,"value":148},{"type":36,"tag":116,"props":1785,"children":1786},{"style":135},[1787],{"type":41,"value":1319},{"type":36,"tag":116,"props":1789,"children":1790},{"style":135},[1791],{"type":41,"value":138},{"type":36,"tag":116,"props":1793,"children":1794},{"style":129},[1795],{"type":41,"value":1796},"news.example.com",{"type":36,"tag":116,"props":1798,"children":1799},{"style":135},[1800],{"type":41,"value":148},{"type":36,"tag":116,"props":1802,"children":1803},{"style":135},[1804],{"type":41,"value":1337},{"type":36,"tag":116,"props":1806,"children":1808},{"class":118,"line":1807},18,[1809,1813,1818,1822,1826,1830,1834,1838],{"type":36,"tag":116,"props":1810,"children":1811},{"style":135},[1812],{"type":41,"value":1735},{"type":36,"tag":116,"props":1814,"children":1815},{"style":1738},[1816],{"type":41,"value":1817},"hostname",{"type":36,"tag":116,"props":1819,"children":1820},{"style":135},[1821],{"type":41,"value":148},{"type":36,"tag":116,"props":1823,"children":1824},{"style":135},[1825],{"type":41,"value":1319},{"type":36,"tag":116,"props":1827,"children":1828},{"style":135},[1829],{"type":41,"value":138},{"type":36,"tag":116,"props":1831,"children":1832},{"style":129},[1833],{"type":41,"value":1796},{"type":36,"tag":116,"props":1835,"children":1836},{"style":135},[1837],{"type":41,"value":148},{"type":36,"tag":116,"props":1839,"children":1840},{"style":135},[1841],{"type":41,"value":1337},{"type":36,"tag":116,"props":1843,"children":1845},{"class":118,"line":1844},19,[1846,1850,1855,1859,1863,1867,1872,1876],{"type":36,"tag":116,"props":1847,"children":1848},{"style":135},[1849],{"type":41,"value":1735},{"type":36,"tag":116,"props":1851,"children":1852},{"style":1738},[1853],{"type":41,"value":1854},"favicon",{"type":36,"tag":116,"props":1856,"children":1857},{"style":135},[1858],{"type":41,"value":148},{"type":36,"tag":116,"props":1860,"children":1861},{"style":135},[1862],{"type":41,"value":1319},{"type":36,"tag":116,"props":1864,"children":1865},{"style":135},[1866],{"type":41,"value":138},{"type":36,"tag":116,"props":1868,"children":1869},{"style":129},[1870],{"type":41,"value":1871},"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002Fnews.example.com",{"type":36,"tag":116,"props":1873,"children":1874},{"style":135},[1875],{"type":41,"value":148},{"type":36,"tag":116,"props":1877,"children":1878},{"style":135},[1879],{"type":41,"value":1337},{"type":36,"tag":116,"props":1881,"children":1883},{"class":118,"line":1882},20,[1884,1888,1893,1897,1901,1905,1910],{"type":36,"tag":116,"props":1885,"children":1886},{"style":135},[1887],{"type":41,"value":1735},{"type":36,"tag":116,"props":1889,"children":1890},{"style":1738},[1891],{"type":41,"value":1892},"path",{"type":36,"tag":116,"props":1894,"children":1895},{"style":135},[1896],{"type":41,"value":148},{"type":36,"tag":116,"props":1898,"children":1899},{"style":135},[1900],{"type":41,"value":1319},{"type":36,"tag":116,"props":1902,"children":1903},{"style":135},[1904],{"type":41,"value":138},{"type":36,"tag":116,"props":1906,"children":1907},{"style":129},[1908],{"type":41,"value":1909},"\u002Fspace-exploration",{"type":36,"tag":116,"props":1911,"children":1912},{"style":135},[1913],{"type":41,"value":419},{"type":36,"tag":116,"props":1915,"children":1917},{"class":118,"line":1916},21,[1918],{"type":36,"tag":116,"props":1919,"children":1920},{"style":135},[1921],{"type":41,"value":1922},"      },\n",{"type":36,"tag":116,"props":1924,"children":1926},{"class":118,"line":1925},22,[1927,1931,1936,1940,1944],{"type":36,"tag":116,"props":1928,"children":1929},{"style":135},[1930],{"type":41,"value":1445},{"type":36,"tag":116,"props":1932,"children":1933},{"style":123},[1934],{"type":41,"value":1935},"thumbnail",{"type":36,"tag":116,"props":1937,"children":1938},{"style":135},[1939],{"type":41,"value":148},{"type":36,"tag":116,"props":1941,"children":1942},{"style":135},[1943],{"type":41,"value":1319},{"type":36,"tag":116,"props":1945,"children":1946},{"style":135},[1947],{"type":41,"value":1362},{"type":36,"tag":116,"props":1949,"children":1951},{"class":118,"line":1950},23,[1952,1956,1961,1965,1969,1973,1978],{"type":36,"tag":116,"props":1953,"children":1954},{"style":135},[1955],{"type":41,"value":1735},{"type":36,"tag":116,"props":1957,"children":1958},{"style":1738},[1959],{"type":41,"value":1960},"src",{"type":36,"tag":116,"props":1962,"children":1963},{"style":135},[1964],{"type":41,"value":148},{"type":36,"tag":116,"props":1966,"children":1967},{"style":135},[1968],{"type":41,"value":1319},{"type":36,"tag":116,"props":1970,"children":1971},{"style":135},[1972],{"type":41,"value":138},{"type":36,"tag":116,"props":1974,"children":1975},{"style":129},[1976],{"type":41,"value":1977},"https:\u002F\u002Fimgs.search.brave.com\u002F...",{"type":36,"tag":116,"props":1979,"children":1980},{"style":135},[1981],{"type":41,"value":419},{"type":36,"tag":116,"props":1983,"children":1985},{"class":118,"line":1984},24,[1986],{"type":36,"tag":116,"props":1987,"children":1988},{"style":135},[1989],{"type":41,"value":1990},"      }\n",{"type":36,"tag":116,"props":1992,"children":1994},{"class":118,"line":1993},25,[1995],{"type":36,"tag":116,"props":1996,"children":1997},{"style":135},[1998],{"type":41,"value":1999},"    }\n",{"type":36,"tag":116,"props":2001,"children":2003},{"class":118,"line":2002},26,[2004],{"type":36,"tag":116,"props":2005,"children":2006},{"style":135},[2007],{"type":41,"value":2008},"  ]\n",{"type":36,"tag":116,"props":2010,"children":2012},{"class":118,"line":2011},27,[2013],{"type":36,"tag":116,"props":2014,"children":2015},{"style":135},[2016],{"type":41,"value":2017},"}\n",{"type":36,"tag":90,"props":2019,"children":2021},{"id":2020},"response-fields",[2022],{"type":41,"value":2023},"Response Fields",{"type":36,"tag":635,"props":2025,"children":2026},{},[2027,2046],{"type":36,"tag":639,"props":2028,"children":2029},{},[2030],{"type":36,"tag":643,"props":2031,"children":2032},{},[2033,2038,2042],{"type":36,"tag":647,"props":2034,"children":2035},{},[2036],{"type":41,"value":2037},"Field",{"type":36,"tag":647,"props":2039,"children":2040},{},[2041],{"type":41,"value":656},{"type":36,"tag":647,"props":2043,"children":2044},{},[2045],{"type":41,"value":671},{"type":36,"tag":673,"props":2047,"children":2048},{},[2049,2075,2096,2118,2139,2161,2182,2204,2225,2246,2283,2309,2330,2351,2372,2393,2414,2435,2464,2485,2506,2527,2548,2569,2590,2611],{"type":36,"tag":643,"props":2050,"children":2051},{},[2052,2060,2064],{"type":36,"tag":680,"props":2053,"children":2054},{},[2055],{"type":36,"tag":112,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":41,"value":1310},{"type":36,"tag":680,"props":2061,"children":2062},{},[2063],{"type":41,"value":693},{"type":36,"tag":680,"props":2065,"children":2066},{},[2067,2069],{"type":41,"value":2068},"Always ",{"type":36,"tag":112,"props":2070,"children":2072},{"className":2071},[],[2073],{"type":41,"value":2074},"\"news\"",{"type":36,"tag":643,"props":2076,"children":2077},{},[2078,2087,2091],{"type":36,"tag":680,"props":2079,"children":2080},{},[2081],{"type":36,"tag":112,"props":2082,"children":2084},{"className":2083},[],[2085],{"type":41,"value":2086},"query.original",{"type":36,"tag":680,"props":2088,"children":2089},{},[2090],{"type":41,"value":693},{"type":36,"tag":680,"props":2092,"children":2093},{},[2094],{"type":41,"value":2095},"The original search query",{"type":36,"tag":643,"props":2097,"children":2098},{},[2099,2108,2113],{"type":36,"tag":680,"props":2100,"children":2101},{},[2102],{"type":36,"tag":112,"props":2103,"children":2105},{"className":2104},[],[2106],{"type":41,"value":2107},"query.altered",{"type":36,"tag":680,"props":2109,"children":2110},{},[2111],{"type":41,"value":2112},"string?",{"type":36,"tag":680,"props":2114,"children":2115},{},[2116],{"type":41,"value":2117},"Spellcheck-corrected query (if changed)",{"type":36,"tag":643,"props":2119,"children":2120},{},[2121,2130,2134],{"type":36,"tag":680,"props":2122,"children":2123},{},[2124],{"type":36,"tag":112,"props":2125,"children":2127},{"className":2126},[],[2128],{"type":41,"value":2129},"query.cleaned",{"type":36,"tag":680,"props":2131,"children":2132},{},[2133],{"type":41,"value":2112},{"type":36,"tag":680,"props":2135,"children":2136},{},[2137],{"type":41,"value":2138},"Cleaned\u002Fnormalized query from spellchecker",{"type":36,"tag":643,"props":2140,"children":2141},{},[2142,2151,2156],{"type":36,"tag":680,"props":2143,"children":2144},{},[2145],{"type":36,"tag":112,"props":2146,"children":2148},{"className":2147},[],[2149],{"type":41,"value":2150},"query.spellcheck_off",{"type":36,"tag":680,"props":2152,"children":2153},{},[2154],{"type":41,"value":2155},"bool?",{"type":36,"tag":680,"props":2157,"children":2158},{},[2159],{"type":41,"value":2160},"Whether spellcheck was disabled",{"type":36,"tag":643,"props":2162,"children":2163},{},[2164,2173,2177],{"type":36,"tag":680,"props":2165,"children":2166},{},[2167],{"type":36,"tag":112,"props":2168,"children":2170},{"className":2169},[],[2171],{"type":41,"value":2172},"query.show_strict_warning",{"type":36,"tag":680,"props":2174,"children":2175},{},[2176],{"type":41,"value":2155},{"type":36,"tag":680,"props":2178,"children":2179},{},[2180],{"type":41,"value":2181},"True if strict safesearch blocked results",{"type":36,"tag":643,"props":2183,"children":2184},{},[2185,2194,2199],{"type":36,"tag":680,"props":2186,"children":2187},{},[2188],{"type":36,"tag":112,"props":2189,"children":2191},{"className":2190},[],[2192],{"type":41,"value":2193},"query.search_operators",{"type":36,"tag":680,"props":2195,"children":2196},{},[2197],{"type":41,"value":2198},"object?",{"type":36,"tag":680,"props":2200,"children":2201},{},[2202],{"type":41,"value":2203},"Applied search operators",{"type":36,"tag":643,"props":2205,"children":2206},{},[2207,2216,2220],{"type":36,"tag":680,"props":2208,"children":2209},{},[2210],{"type":36,"tag":112,"props":2211,"children":2213},{"className":2212},[],[2214],{"type":41,"value":2215},"query.search_operators.applied",{"type":36,"tag":680,"props":2217,"children":2218},{},[2219],{"type":41,"value":1021},{"type":36,"tag":680,"props":2221,"children":2222},{},[2223],{"type":41,"value":2224},"Whether operators were applied",{"type":36,"tag":643,"props":2226,"children":2227},{},[2228,2237,2241],{"type":36,"tag":680,"props":2229,"children":2230},{},[2231],{"type":36,"tag":112,"props":2232,"children":2234},{"className":2233},[],[2235],{"type":41,"value":2236},"query.search_operators.cleaned_query",{"type":36,"tag":680,"props":2238,"children":2239},{},[2240],{"type":41,"value":2112},{"type":36,"tag":680,"props":2242,"children":2243},{},[2244],{"type":41,"value":2245},"Query after operator processing",{"type":36,"tag":643,"props":2247,"children":2248},{},[2249,2258,2270],{"type":36,"tag":680,"props":2250,"children":2251},{},[2252],{"type":36,"tag":112,"props":2253,"children":2255},{"className":2254},[],[2256],{"type":41,"value":2257},"query.search_operators.sites",{"type":36,"tag":680,"props":2259,"children":2260},{},[2261,2263,2268],{"type":41,"value":2262},"list",{"type":36,"tag":116,"props":2264,"children":2265},{},[2266],{"type":41,"value":2267},"str",{"type":41,"value":2269},"?",{"type":36,"tag":680,"props":2271,"children":2272},{},[2273,2275,2281],{"type":41,"value":2274},"Domains from ",{"type":36,"tag":112,"props":2276,"children":2278},{"className":2277},[],[2279],{"type":41,"value":2280},"site:",{"type":41,"value":2282}," operators",{"type":36,"tag":643,"props":2284,"children":2285},{},[2286,2295,2299],{"type":36,"tag":680,"props":2287,"children":2288},{},[2289],{"type":36,"tag":112,"props":2290,"children":2292},{"className":2291},[],[2293],{"type":41,"value":2294},"results[].type",{"type":36,"tag":680,"props":2296,"children":2297},{},[2298],{"type":41,"value":693},{"type":36,"tag":680,"props":2300,"children":2301},{},[2302,2303],{"type":41,"value":2068},{"type":36,"tag":112,"props":2304,"children":2306},{"className":2305},[],[2307],{"type":41,"value":2308},"\"news_result\"",{"type":36,"tag":643,"props":2310,"children":2311},{},[2312,2321,2325],{"type":36,"tag":680,"props":2313,"children":2314},{},[2315],{"type":36,"tag":112,"props":2316,"children":2318},{"className":2317},[],[2319],{"type":41,"value":2320},"results[].title",{"type":36,"tag":680,"props":2322,"children":2323},{},[2324],{"type":41,"value":693},{"type":36,"tag":680,"props":2326,"children":2327},{},[2328],{"type":41,"value":2329},"Article title",{"type":36,"tag":643,"props":2331,"children":2332},{},[2333,2342,2346],{"type":36,"tag":680,"props":2334,"children":2335},{},[2336],{"type":36,"tag":112,"props":2337,"children":2339},{"className":2338},[],[2340],{"type":41,"value":2341},"results[].url",{"type":36,"tag":680,"props":2343,"children":2344},{},[2345],{"type":41,"value":693},{"type":36,"tag":680,"props":2347,"children":2348},{},[2349],{"type":41,"value":2350},"Source URL of the article",{"type":36,"tag":643,"props":2352,"children":2353},{},[2354,2363,2367],{"type":36,"tag":680,"props":2355,"children":2356},{},[2357],{"type":36,"tag":112,"props":2358,"children":2360},{"className":2359},[],[2361],{"type":41,"value":2362},"results[].description",{"type":36,"tag":680,"props":2364,"children":2365},{},[2366],{"type":41,"value":2112},{"type":36,"tag":680,"props":2368,"children":2369},{},[2370],{"type":41,"value":2371},"Article description\u002Fsummary",{"type":36,"tag":643,"props":2373,"children":2374},{},[2375,2384,2388],{"type":36,"tag":680,"props":2376,"children":2377},{},[2378],{"type":36,"tag":112,"props":2379,"children":2381},{"className":2380},[],[2382],{"type":41,"value":2383},"results[].age",{"type":36,"tag":680,"props":2385,"children":2386},{},[2387],{"type":41,"value":2112},{"type":36,"tag":680,"props":2389,"children":2390},{},[2391],{"type":41,"value":2392},"Human-readable age (e.g. \"2 hours ago\")",{"type":36,"tag":643,"props":2394,"children":2395},{},[2396,2405,2409],{"type":36,"tag":680,"props":2397,"children":2398},{},[2399],{"type":36,"tag":112,"props":2400,"children":2402},{"className":2401},[],[2403],{"type":41,"value":2404},"results[].page_age",{"type":36,"tag":680,"props":2406,"children":2407},{},[2408],{"type":41,"value":2112},{"type":36,"tag":680,"props":2410,"children":2411},{},[2412],{"type":41,"value":2413},"Publication date from source (ISO datetime)",{"type":36,"tag":643,"props":2415,"children":2416},{},[2417,2426,2430],{"type":36,"tag":680,"props":2418,"children":2419},{},[2420],{"type":36,"tag":112,"props":2421,"children":2423},{"className":2422},[],[2424],{"type":41,"value":2425},"results[].page_fetched",{"type":36,"tag":680,"props":2427,"children":2428},{},[2429],{"type":41,"value":2112},{"type":36,"tag":680,"props":2431,"children":2432},{},[2433],{"type":41,"value":2434},"When page was last fetched (ISO datetime)",{"type":36,"tag":643,"props":2436,"children":2437},{},[2438,2447,2452],{"type":36,"tag":680,"props":2439,"children":2440},{},[2441],{"type":36,"tag":112,"props":2442,"children":2444},{"className":2443},[],[2445],{"type":41,"value":2446},"results[].fetched_content_timestamp",{"type":36,"tag":680,"props":2448,"children":2449},{},[2450],{"type":41,"value":2451},"int?",{"type":36,"tag":680,"props":2453,"children":2454},{},[2455,2457,2463],{"type":41,"value":2456},"Fetch timestamp (only with ",{"type":36,"tag":112,"props":2458,"children":2460},{"className":2459},[],[2461],{"type":41,"value":2462},"include_fetch_metadata=true",{"type":41,"value":754},{"type":36,"tag":643,"props":2465,"children":2466},{},[2467,2476,2480],{"type":36,"tag":680,"props":2468,"children":2469},{},[2470],{"type":36,"tag":112,"props":2471,"children":2473},{"className":2472},[],[2474],{"type":41,"value":2475},"results[].meta_url.scheme",{"type":36,"tag":680,"props":2477,"children":2478},{},[2479],{"type":41,"value":2112},{"type":36,"tag":680,"props":2481,"children":2482},{},[2483],{"type":41,"value":2484},"URL protocol scheme",{"type":36,"tag":643,"props":2486,"children":2487},{},[2488,2497,2501],{"type":36,"tag":680,"props":2489,"children":2490},{},[2491],{"type":36,"tag":112,"props":2492,"children":2494},{"className":2493},[],[2495],{"type":41,"value":2496},"results[].meta_url.netloc",{"type":36,"tag":680,"props":2498,"children":2499},{},[2500],{"type":41,"value":2112},{"type":36,"tag":680,"props":2502,"children":2503},{},[2504],{"type":41,"value":2505},"Network location",{"type":36,"tag":643,"props":2507,"children":2508},{},[2509,2518,2522],{"type":36,"tag":680,"props":2510,"children":2511},{},[2512],{"type":36,"tag":112,"props":2513,"children":2515},{"className":2514},[],[2516],{"type":41,"value":2517},"results[].meta_url.hostname",{"type":36,"tag":680,"props":2519,"children":2520},{},[2521],{"type":41,"value":2112},{"type":36,"tag":680,"props":2523,"children":2524},{},[2525],{"type":41,"value":2526},"Lowercased domain name",{"type":36,"tag":643,"props":2528,"children":2529},{},[2530,2539,2543],{"type":36,"tag":680,"props":2531,"children":2532},{},[2533],{"type":36,"tag":112,"props":2534,"children":2536},{"className":2535},[],[2537],{"type":41,"value":2538},"results[].meta_url.favicon",{"type":36,"tag":680,"props":2540,"children":2541},{},[2542],{"type":41,"value":2112},{"type":36,"tag":680,"props":2544,"children":2545},{},[2546],{"type":41,"value":2547},"Favicon URL",{"type":36,"tag":643,"props":2549,"children":2550},{},[2551,2560,2564],{"type":36,"tag":680,"props":2552,"children":2553},{},[2554],{"type":36,"tag":112,"props":2555,"children":2557},{"className":2556},[],[2558],{"type":41,"value":2559},"results[].meta_url.path",{"type":36,"tag":680,"props":2561,"children":2562},{},[2563],{"type":41,"value":2112},{"type":36,"tag":680,"props":2565,"children":2566},{},[2567],{"type":41,"value":2568},"URL path",{"type":36,"tag":643,"props":2570,"children":2571},{},[2572,2581,2585],{"type":36,"tag":680,"props":2573,"children":2574},{},[2575],{"type":36,"tag":112,"props":2576,"children":2578},{"className":2577},[],[2579],{"type":41,"value":2580},"results[].thumbnail.src",{"type":36,"tag":680,"props":2582,"children":2583},{},[2584],{"type":41,"value":693},{"type":36,"tag":680,"props":2586,"children":2587},{},[2588],{"type":41,"value":2589},"Served thumbnail URL",{"type":36,"tag":643,"props":2591,"children":2592},{},[2593,2602,2606],{"type":36,"tag":680,"props":2594,"children":2595},{},[2596],{"type":36,"tag":112,"props":2597,"children":2599},{"className":2598},[],[2600],{"type":41,"value":2601},"results[].thumbnail.original",{"type":36,"tag":680,"props":2603,"children":2604},{},[2605],{"type":41,"value":2112},{"type":36,"tag":680,"props":2607,"children":2608},{},[2609],{"type":41,"value":2610},"Original thumbnail URL",{"type":36,"tag":643,"props":2612,"children":2613},{},[2614,2623,2632],{"type":36,"tag":680,"props":2615,"children":2616},{},[2617],{"type":36,"tag":112,"props":2618,"children":2620},{"className":2619},[],[2621],{"type":41,"value":2622},"results[].extra_snippets",{"type":36,"tag":680,"props":2624,"children":2625},{},[2626,2627,2631],{"type":41,"value":2262},{"type":36,"tag":116,"props":2628,"children":2629},{},[2630],{"type":41,"value":2267},{"type":41,"value":2269},{"type":36,"tag":680,"props":2633,"children":2634},{},[2635],{"type":41,"value":1068},{"type":36,"tag":90,"props":2637,"children":2639},{"id":2638},"goggles-custom-ranking-unique-to-brave",[2640],{"type":41,"value":2641},"Goggles (Custom Ranking) — Unique to Brave",{"type":36,"tag":48,"props":2643,"children":2644},{},[2645,2647,2652],{"type":41,"value":2646},"Goggles let you ",{"type":36,"tag":52,"props":2648,"children":2649},{},[2650],{"type":41,"value":2651},"re-rank news results",{"type":41,"value":2653}," — boost trusted outlets or suppress unwanted sources.",{"type":36,"tag":635,"props":2655,"children":2656},{},[2657,2673],{"type":36,"tag":639,"props":2658,"children":2659},{},[2660],{"type":36,"tag":643,"props":2661,"children":2662},{},[2663,2668],{"type":36,"tag":647,"props":2664,"children":2665},{},[2666],{"type":41,"value":2667},"Method",{"type":36,"tag":647,"props":2669,"children":2670},{},[2671],{"type":41,"value":2672},"Example",{"type":36,"tag":673,"props":2674,"children":2675},{},[2676,2696],{"type":36,"tag":643,"props":2677,"children":2678},{},[2679,2687],{"type":36,"tag":680,"props":2680,"children":2681},{},[2682],{"type":36,"tag":52,"props":2683,"children":2684},{},[2685],{"type":41,"value":2686},"Hosted",{"type":36,"tag":680,"props":2688,"children":2689},{},[2690],{"type":36,"tag":112,"props":2691,"children":2693},{"className":2692},[],[2694],{"type":41,"value":2695},"--data-urlencode \"goggles=https:\u002F\u002Fraw.githubusercontent.com\u002Fbrave\u002Fgoggles-quickstart\u002Fmain\u002Fgoggles\u002Fhacker_news.goggle\"",{"type":36,"tag":643,"props":2697,"children":2698},{},[2699,2707],{"type":36,"tag":680,"props":2700,"children":2701},{},[2702],{"type":36,"tag":52,"props":2703,"children":2704},{},[2705],{"type":41,"value":2706},"Inline",{"type":36,"tag":680,"props":2708,"children":2709},{},[2710],{"type":36,"tag":112,"props":2711,"children":2713},{"className":2712},[],[2714],{"type":41,"value":2715},"--data-urlencode 'goggles=$discard\\n$site=example.com'",{"type":36,"tag":44,"props":2717,"children":2718},{},[2719],{"type":36,"tag":48,"props":2720,"children":2721},{},[2722,2726,2728,2734,2736,2742,2743,2749,2751,2757,2759,2763],{"type":36,"tag":52,"props":2723,"children":2724},{},[2725],{"type":41,"value":2686},{"type":41,"value":2727}," goggles must be on GitHub\u002FGitLab, include ",{"type":36,"tag":112,"props":2729,"children":2731},{"className":2730},[],[2732],{"type":41,"value":2733},"! name:",{"type":41,"value":2735},", ",{"type":36,"tag":112,"props":2737,"children":2739},{"className":2738},[],[2740],{"type":41,"value":2741},"! description:",{"type":41,"value":2735},{"type":36,"tag":112,"props":2744,"children":2746},{"className":2745},[],[2747],{"type":41,"value":2748},"! author:",{"type":41,"value":2750}," headers, and be registered at ",{"type":36,"tag":60,"props":2752,"children":2755},{"href":2753,"rel":2754},"https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fcreate",[64],[2756],{"type":41,"value":2753},{"type":41,"value":2758},". ",{"type":36,"tag":52,"props":2760,"children":2761},{},[2762],{"type":41,"value":2706},{"type":41,"value":2764}," rules need no registration.",{"type":36,"tag":48,"props":2766,"children":2767},{},[2768,2773,2774,2780,2782,2788,2790,2796,2797,2803,2805,2811,2813,2819,2821,2827],{"type":36,"tag":52,"props":2769,"children":2770},{},[2771],{"type":41,"value":2772},"Syntax",{"type":41,"value":609},{"type":36,"tag":112,"props":2775,"children":2777},{"className":2776},[],[2778],{"type":41,"value":2779},"$boost=N",{"type":41,"value":2781}," \u002F ",{"type":36,"tag":112,"props":2783,"children":2785},{"className":2784},[],[2786],{"type":41,"value":2787},"$downrank=N",{"type":41,"value":2789}," (1–10), ",{"type":36,"tag":112,"props":2791,"children":2793},{"className":2792},[],[2794],{"type":41,"value":2795},"$discard",{"type":41,"value":2735},{"type":36,"tag":112,"props":2798,"children":2800},{"className":2799},[],[2801],{"type":41,"value":2802},"$site=example.com",{"type":41,"value":2804},". Combine with commas: ",{"type":36,"tag":112,"props":2806,"children":2808},{"className":2807},[],[2809],{"type":41,"value":2810},"$site=example.com,boost=3",{"type":41,"value":2812},". Separate rules with ",{"type":36,"tag":112,"props":2814,"children":2816},{"className":2815},[],[2817],{"type":41,"value":2818},"\\n",{"type":41,"value":2820}," (",{"type":36,"tag":112,"props":2822,"children":2824},{"className":2823},[],[2825],{"type":41,"value":2826},"%0A",{"type":41,"value":2828},").",{"type":36,"tag":48,"props":2830,"children":2831},{},[2832,2837,2838,2844,2846,2851,2852],{"type":36,"tag":52,"props":2833,"children":2834},{},[2835],{"type":41,"value":2836},"Allow list",{"type":41,"value":609},{"type":36,"tag":112,"props":2839,"children":2841},{"className":2840},[],[2842],{"type":41,"value":2843},"$discard\\n$site=docs.python.org\\n$site=developer.mozilla.org",{"type":41,"value":2845}," — ",{"type":36,"tag":52,"props":2847,"children":2848},{},[2849],{"type":41,"value":2850},"Block list",{"type":41,"value":609},{"type":36,"tag":112,"props":2853,"children":2855},{"className":2854},[],[2856],{"type":41,"value":2857},"$discard,site=pinterest.com\\n$discard,site=quora.com",{"type":36,"tag":48,"props":2859,"children":2860},{},[2861,2866,2867,2874,2876,2882,2883],{"type":36,"tag":52,"props":2862,"children":2863},{},[2864],{"type":41,"value":2865},"Resources",{"type":41,"value":609},{"type":36,"tag":60,"props":2868,"children":2871},{"href":2869,"rel":2870},"https:\u002F\u002Fsearch.brave.com\u002Fgoggles\u002Fdiscover",[64],[2872],{"type":41,"value":2873},"Discover",{"type":41,"value":2875}," · ",{"type":36,"tag":60,"props":2877,"children":2880},{"href":2878,"rel":2879},"https:\u002F\u002Fsearch.brave.com\u002Fhelp\u002Fgoggles",[64],[2881],{"type":41,"value":2772},{"type":41,"value":2875},{"type":36,"tag":60,"props":2884,"children":2887},{"href":2885,"rel":2886},"https:\u002F\u002Fgithub.com\u002Fbrave\u002Fgoggles-quickstart",[64],[2888],{"type":41,"value":2889},"Quickstart",{"type":36,"tag":90,"props":2891,"children":2893},{"id":2892},"search-operators",[2894],{"type":41,"value":2895},"Search Operators",{"type":36,"tag":48,"props":2897,"children":2898},{},[2899],{"type":41,"value":2900},"Use search operators to refine results:",{"type":36,"tag":2902,"props":2903,"children":2904},"ul",{},[2905,2917,2928],{"type":36,"tag":2906,"props":2907,"children":2908},"li",{},[2909,2915],{"type":36,"tag":112,"props":2910,"children":2912},{"className":2911},[],[2913],{"type":41,"value":2914},"site:local-paper.com",{"type":41,"value":2916}," - Limit to specific news site",{"type":36,"tag":2906,"props":2918,"children":2919},{},[2920,2926],{"type":36,"tag":112,"props":2921,"children":2923},{"className":2922},[],[2924],{"type":41,"value":2925},"\"exact phrase\"",{"type":41,"value":2927}," - Match exact phrase",{"type":36,"tag":2906,"props":2929,"children":2930},{},[2931,2937],{"type":36,"tag":112,"props":2932,"children":2934},{"className":2933},[],[2935],{"type":41,"value":2936},"-exclude",{"type":41,"value":2938}," - Exclude term",{"type":36,"tag":48,"props":2940,"children":2941},{},[2942,2944,2950],{"type":41,"value":2943},"Set ",{"type":36,"tag":112,"props":2945,"children":2947},{"className":2946},[],[2948],{"type":41,"value":2949},"operators=false",{"type":41,"value":2951}," to disable operator parsing.",{"type":36,"tag":90,"props":2953,"children":2955},{"id":2954},"use-cases",[2956],{"type":41,"value":2957},"Use Cases",{"type":36,"tag":2902,"props":2959,"children":2960},{},[2961,2978,2988,3005,3035],{"type":36,"tag":2906,"props":2962,"children":2963},{},[2964,2969,2971,2976],{"type":36,"tag":52,"props":2965,"children":2966},{},[2967],{"type":41,"value":2968},"Breaking news monitoring",{"type":41,"value":2970},": Use ",{"type":36,"tag":112,"props":2972,"children":2974},{"className":2973},[],[2975],{"type":41,"value":389},{"type":41,"value":2977}," for the most recent articles on a topic.",{"type":36,"tag":2906,"props":2979,"children":2980},{},[2981,2986],{"type":36,"tag":52,"props":2982,"children":2983},{},[2984],{"type":41,"value":2985},"Custom news feeds with Goggles",{"type":41,"value":2987},": Boost trusted sources and discard other sources — unique to Brave.",{"type":36,"tag":2906,"props":2989,"children":2990},{},[2991,2996,2997,3003],{"type":36,"tag":52,"props":2992,"children":2993},{},[2994],{"type":41,"value":2995},"Historical news research",{"type":41,"value":2970},{"type":36,"tag":112,"props":2998,"children":3000},{"className":2999},[],[3001],{"type":41,"value":3002},"freshness=YYYY-MM-DDtoYYYY-MM-DD",{"type":41,"value":3004}," to find articles from specific time periods.",{"type":36,"tag":2906,"props":3006,"children":3007},{},[3008,3013,3015,3020,3021,3026,3028,3033],{"type":36,"tag":52,"props":3009,"children":3010},{},[3011],{"type":41,"value":3012},"Multilingual news",{"type":41,"value":3014},": Combine ",{"type":36,"tag":112,"props":3016,"children":3018},{"className":3017},[],[3019],{"type":41,"value":723},{"type":41,"value":2735},{"type":36,"tag":112,"props":3022,"children":3024},{"className":3023},[],[3025],{"type":41,"value":766},{"type":41,"value":3027},", and ",{"type":36,"tag":112,"props":3029,"children":3031},{"className":3030},[],[3032],{"type":41,"value":800},{"type":41,"value":3034}," for cross-locale results.",{"type":36,"tag":2906,"props":3036,"children":3037},{},[3038,3043,3045,3050,3052,3058],{"type":36,"tag":52,"props":3039,"children":3040},{},[3041],{"type":41,"value":3042},"Data pipelines",{"type":41,"value":3044},": Set ",{"type":36,"tag":112,"props":3046,"children":3048},{"className":3047},[],[3049],{"type":41,"value":2462},{"type":41,"value":3051}," for ",{"type":36,"tag":112,"props":3053,"children":3055},{"className":3054},[],[3056],{"type":41,"value":3057},"fetched_content_timestamp",{"type":41,"value":3059}," on each result.",{"type":36,"tag":90,"props":3061,"children":3063},{"id":3062},"notes",[3064],{"type":41,"value":3065},"Notes",{"type":36,"tag":2902,"props":3067,"children":3068},{},[3069,3084,3105],{"type":36,"tag":2906,"props":3070,"children":3071},{},[3072,3077,3079],{"type":36,"tag":52,"props":3073,"children":3074},{},[3075],{"type":41,"value":3076},"SafeSearch",{"type":41,"value":3078},": Defaults to ",{"type":36,"tag":112,"props":3080,"children":3082},{"className":3081},[],[3083],{"type":41,"value":920},{"type":36,"tag":2906,"props":3085,"children":3086},{},[3087,3092,3093,3098,3100],{"type":36,"tag":52,"props":3088,"children":3089},{},[3090],{"type":41,"value":3091},"Pagination",{"type":41,"value":2970},{"type":36,"tag":112,"props":3094,"children":3096},{"className":3095},[],[3097],{"type":41,"value":869},{"type":41,"value":3099}," (0-9) with ",{"type":36,"tag":112,"props":3101,"children":3103},{"className":3102},[],[3104],{"type":41,"value":834},{"type":36,"tag":2906,"props":3106,"children":3107},{},[3108,3113,3115],{"type":36,"tag":52,"props":3109,"children":3110},{},[3111],{"type":41,"value":3112},"Extra snippets",{"type":41,"value":3114},": Up to 5 additional excerpts when ",{"type":36,"tag":112,"props":3116,"children":3118},{"className":3117},[],[3119],{"type":41,"value":3120},"extra_snippets=true",{"type":36,"tag":3122,"props":3123,"children":3124},"style",{},[3125],{"type":41,"value":3126},"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":3128,"total":1590},[3129,3141,3157,3169,3178,3188,3200,3210,3215,3223,3232,3244],{"slug":3130,"name":3130,"fn":3131,"description":3132,"org":3133,"tags":3134,"stars":19,"repoUrl":20,"updatedAt":3140},"answers","get AI-grounded answers via Brave","USE FOR AI-grounded answers via OpenAI-compatible \u002Fchat\u002Fcompletions. Two modes: single-search (fast) or deep research (enable_research=true, thorough multi-search). Streaming\u002Fblocking. Citations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3135,3136,3139],{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},"LLM","llm",{"name":17,"slug":18,"type":15},"2026-04-06T18:05:53.15861",{"slug":3142,"name":3142,"fn":3143,"description":3144,"org":3145,"tags":3146,"stars":19,"repoUrl":20,"updatedAt":3156},"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},[3147,3150,3151,3152,3155],{"name":3148,"slug":3149,"type":15},"AI Context","ai-context",{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},{"name":3153,"slug":3154,"type":15},"Research","research",{"name":17,"slug":18,"type":15},"2026-04-08T04:55:31.217318",{"slug":3158,"name":3158,"fn":3159,"description":3160,"org":3161,"tags":3162,"stars":19,"repoUrl":20,"updatedAt":3168},"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},[3163,3164,3167],{"name":13,"slug":14,"type":15},{"name":3165,"slug":3166,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:05.777322",{"slug":3170,"name":3170,"fn":3171,"description":3172,"org":3173,"tags":3174,"stars":19,"repoUrl":20,"updatedAt":3177},"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},[3175,3176],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:04.504482",{"slug":3179,"name":3179,"fn":3180,"description":3181,"org":3182,"tags":3183,"stars":19,"repoUrl":20,"updatedAt":3187},"llm-context","fetch web content for LLM grounding","USE FOR RAG\u002FLLM grounding. Returns pre-extracted web content (text, tables, code) optimized for LLMs. GET + POST. Adjust max_tokens\u002Fcount based on complexity. Supports Goggles, local\u002FPOI. For AI answers use answers. Recommended for anyone building AI\u002Fagentic applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3184,3185,3186],{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:58.243978",{"slug":3189,"name":3189,"fn":3190,"description":3191,"org":3192,"tags":3193,"stars":19,"repoUrl":20,"updatedAt":3199},"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},[3194,3195,3198],{"name":13,"slug":14,"type":15},{"name":3196,"slug":3197,"type":15},"Local Search","local-search",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:03.239884",{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3204,"tags":3205,"stars":19,"repoUrl":20,"updatedAt":3209},"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},[3206,3207,3208],{"name":13,"slug":14,"type":15},{"name":3196,"slug":3197,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:55.722361",{"slug":4,"name":4,"fn":5,"description":6,"org":3211,"tags":3212,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3213,3214],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1016,"name":1016,"fn":3216,"description":3217,"org":3218,"tags":3219,"stars":19,"repoUrl":20,"updatedAt":3222},"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},[3220,3221],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:59.499925",{"slug":3224,"name":3224,"fn":3225,"description":3226,"org":3227,"tags":3228,"stars":19,"repoUrl":20,"updatedAt":3231},"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},[3229,3230],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:54.426217",{"slug":3233,"name":3233,"fn":3234,"description":3235,"org":3236,"tags":3237,"stars":19,"repoUrl":20,"updatedAt":3243},"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},[3238,3239,3240],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":3241,"slug":3242,"type":15},"Video","video","2026-04-06T18:05:56.996883",{"slug":3245,"name":3245,"fn":3246,"description":3247,"org":3248,"tags":3249,"stars":19,"repoUrl":20,"updatedAt":3252},"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},[3250,3251],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:00.748827",{"items":3254,"total":1590},[3255,3261,3269,3275,3280,3286,3292],{"slug":3130,"name":3130,"fn":3131,"description":3132,"org":3256,"tags":3257,"stars":19,"repoUrl":20,"updatedAt":3140},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3258,3259,3260],{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},{"name":17,"slug":18,"type":15},{"slug":3142,"name":3142,"fn":3143,"description":3144,"org":3262,"tags":3263,"stars":19,"repoUrl":20,"updatedAt":3156},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3264,3265,3266,3267,3268],{"name":3148,"slug":3149,"type":15},{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},{"name":3153,"slug":3154,"type":15},{"name":17,"slug":18,"type":15},{"slug":3158,"name":3158,"fn":3159,"description":3160,"org":3270,"tags":3271,"stars":19,"repoUrl":20,"updatedAt":3168},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3272,3273,3274],{"name":13,"slug":14,"type":15},{"name":3165,"slug":3166,"type":15},{"name":17,"slug":18,"type":15},{"slug":3170,"name":3170,"fn":3171,"description":3172,"org":3276,"tags":3277,"stars":19,"repoUrl":20,"updatedAt":3177},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3278,3279],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":3179,"name":3179,"fn":3180,"description":3181,"org":3281,"tags":3282,"stars":19,"repoUrl":20,"updatedAt":3187},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3283,3284,3285],{"name":13,"slug":14,"type":15},{"name":3137,"slug":3138,"type":15},{"name":17,"slug":18,"type":15},{"slug":3189,"name":3189,"fn":3190,"description":3191,"org":3287,"tags":3288,"stars":19,"repoUrl":20,"updatedAt":3199},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3289,3290,3291],{"name":13,"slug":14,"type":15},{"name":3196,"slug":3197,"type":15},{"name":17,"slug":18,"type":15},{"slug":3201,"name":3201,"fn":3202,"description":3203,"org":3293,"tags":3294,"stars":19,"repoUrl":20,"updatedAt":3209},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3295,3296,3297],{"name":13,"slug":14,"type":15},{"name":3196,"slug":3197,"type":15},{"name":17,"slug":18,"type":15}]