[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-spellcheck":3,"mdc--43ua7z-key":30,"related-repo-brave-spellcheck":960,"related-org-brave-spellcheck":1044},{"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},"spellcheck","spell-correct search queries","USE FOR spell correction. Returns corrected query if misspelled. Most search endpoints have spellcheck built-in; use this only for pre-search query cleanup or \"Did you mean?\" UI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"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:05:59.499925",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\u002Fspellcheck","---\nname: spellcheck\ndescription: 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.\n---\n\n# Spellcheck\n\n> **Requires API Key**: Get one at https:\u002F\u002Fapi.search.brave.com\n>\n> **Plan**: Included in the **Spellcheck** plan. See https:\u002F\u002Fapi-dashboard.search.brave.com\u002Fapp\u002Fsubscriptions\u002Fsubscribe\n\n## Quick Start (cURL)\n\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fspellcheck\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=artifical inteligence\" \\\n  --data-urlencode \"lang=en\" \\\n  --data-urlencode \"country=US\"\n```\n\n## Endpoint\n\n```http\nGET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fspellcheck\u002Fsearch\n```\n\n**Authentication**: `X-Subscription-Token: \u003CAPI_KEY>` header\n\n## Parameters\n\n| Parameter | Type | Required | Default | Description |\n|--|--|--|--|--|\n| `q` | string | **Yes** | — | Query to spell check (1-400 chars, max 50 words) |\n| `lang` | string | No | `en` | Language preference (2+ char language code, e.g. `en`, `fr`, `de`, `pt-br`, `zh-hans`). 51 codes supported |\n| `country` | string | No | `US` | Search country (2-letter country code or `ALL`) |\n\n## Response Fields\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Always `\"spellcheck\"` |\n| `query.original` | string | The input query as submitted |\n| `results` | array | Spell-corrected suggestions. May be empty when no correction is found |\n| `results[].query` | string | A corrected version of the query |\n\n## Example Response\n\n```json\n{\n  \"type\": \"spellcheck\",\n  \"query\": {\n    \"original\": \"artifical inteligence\"\n  },\n  \"results\": [\n    {\n      \"query\": \"artificial intelligence\"\n    }\n  ]\n}\n```\n\n## Use Cases\n\n- **Pre-search query cleanup**: Check spelling before deciding which search endpoint to call\n- **\"Did you mean?\" UI**: Show users a corrected suggestion before running the search\n- **Batch query normalization**: Clean up user inputs in bulk\n\n## Notes\n\n- **Built-in alternative**: Web Search and LLM Context have `spellcheck=true` by default — use this standalone endpoint only when you need the correction before searching\n- **Context-aware**: Corrections consider the full query context, not just individual words\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,43,89,96,296,302,318,336,342,533,539,655,661,876,882,917,923,954],{"type":36,"tag":37,"props":38,"children":39},"element","h1",{"id":4},[40],{"type":41,"value":42},"text","Spellcheck",{"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":42},{"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":103},"pre",{"className":99,"code":100,"language":101,"meta":102,"style":102},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fspellcheck\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=artifical inteligence\" \\\n  --data-urlencode \"lang=en\" \\\n  --data-urlencode \"country=US\"\n","bash","",[104],{"type":36,"tag":105,"props":106,"children":107},"code",{"__ignoreMap":102},[108,148,174,210,223,249,274],{"type":36,"tag":109,"props":110,"children":113},"span",{"class":111,"line":112},"line",1,[114,120,126,132,137,142],{"type":36,"tag":109,"props":115,"children":117},{"style":116},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[118],{"type":41,"value":119},"curl",{"type":36,"tag":109,"props":121,"children":123},{"style":122},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[124],{"type":41,"value":125}," -s",{"type":36,"tag":109,"props":127,"children":129},{"style":128},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[130],{"type":41,"value":131}," \"",{"type":36,"tag":109,"props":133,"children":134},{"style":122},[135],{"type":41,"value":136},"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fspellcheck\u002Fsearch",{"type":36,"tag":109,"props":138,"children":139},{"style":128},[140],{"type":41,"value":141},"\"",{"type":36,"tag":109,"props":143,"children":145},{"style":144},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[146],{"type":41,"value":147}," \\\n",{"type":36,"tag":109,"props":149,"children":151},{"class":111,"line":150},2,[152,157,161,166,170],{"type":36,"tag":109,"props":153,"children":154},{"style":122},[155],{"type":41,"value":156},"  -H",{"type":36,"tag":109,"props":158,"children":159},{"style":128},[160],{"type":41,"value":131},{"type":36,"tag":109,"props":162,"children":163},{"style":122},[164],{"type":41,"value":165},"Accept: application\u002Fjson",{"type":36,"tag":109,"props":167,"children":168},{"style":128},[169],{"type":41,"value":141},{"type":36,"tag":109,"props":171,"children":172},{"style":144},[173],{"type":41,"value":147},{"type":36,"tag":109,"props":175,"children":177},{"class":111,"line":176},3,[178,182,186,191,196,201,206],{"type":36,"tag":109,"props":179,"children":180},{"style":122},[181],{"type":41,"value":156},{"type":36,"tag":109,"props":183,"children":184},{"style":128},[185],{"type":41,"value":131},{"type":36,"tag":109,"props":187,"children":188},{"style":122},[189],{"type":41,"value":190},"X-Subscription-Token: ",{"type":36,"tag":109,"props":192,"children":193},{"style":128},[194],{"type":41,"value":195},"${",{"type":36,"tag":109,"props":197,"children":198},{"style":144},[199],{"type":41,"value":200},"BRAVE_SEARCH_API_KEY",{"type":36,"tag":109,"props":202,"children":203},{"style":128},[204],{"type":41,"value":205},"}\"",{"type":36,"tag":109,"props":207,"children":208},{"style":144},[209],{"type":41,"value":147},{"type":36,"tag":109,"props":211,"children":213},{"class":111,"line":212},4,[214,219],{"type":36,"tag":109,"props":215,"children":216},{"style":122},[217],{"type":41,"value":218},"  -G",{"type":36,"tag":109,"props":220,"children":221},{"style":144},[222],{"type":41,"value":147},{"type":36,"tag":109,"props":224,"children":226},{"class":111,"line":225},5,[227,232,236,241,245],{"type":36,"tag":109,"props":228,"children":229},{"style":122},[230],{"type":41,"value":231},"  --data-urlencode",{"type":36,"tag":109,"props":233,"children":234},{"style":128},[235],{"type":41,"value":131},{"type":36,"tag":109,"props":237,"children":238},{"style":122},[239],{"type":41,"value":240},"q=artifical inteligence",{"type":36,"tag":109,"props":242,"children":243},{"style":128},[244],{"type":41,"value":141},{"type":36,"tag":109,"props":246,"children":247},{"style":144},[248],{"type":41,"value":147},{"type":36,"tag":109,"props":250,"children":252},{"class":111,"line":251},6,[253,257,261,266,270],{"type":36,"tag":109,"props":254,"children":255},{"style":122},[256],{"type":41,"value":231},{"type":36,"tag":109,"props":258,"children":259},{"style":128},[260],{"type":41,"value":131},{"type":36,"tag":109,"props":262,"children":263},{"style":122},[264],{"type":41,"value":265},"lang=en",{"type":36,"tag":109,"props":267,"children":268},{"style":128},[269],{"type":41,"value":141},{"type":36,"tag":109,"props":271,"children":272},{"style":144},[273],{"type":41,"value":147},{"type":36,"tag":109,"props":275,"children":277},{"class":111,"line":276},7,[278,282,286,291],{"type":36,"tag":109,"props":279,"children":280},{"style":122},[281],{"type":41,"value":231},{"type":36,"tag":109,"props":283,"children":284},{"style":128},[285],{"type":41,"value":131},{"type":36,"tag":109,"props":287,"children":288},{"style":122},[289],{"type":41,"value":290},"country=US",{"type":36,"tag":109,"props":292,"children":293},{"style":128},[294],{"type":41,"value":295},"\"\n",{"type":36,"tag":90,"props":297,"children":299},{"id":298},"endpoint",[300],{"type":41,"value":301},"Endpoint",{"type":36,"tag":97,"props":303,"children":307},{"className":304,"code":305,"language":306,"meta":102,"style":102},"language-http shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","GET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fspellcheck\u002Fsearch\n","http",[308],{"type":36,"tag":105,"props":309,"children":310},{"__ignoreMap":102},[311],{"type":36,"tag":109,"props":312,"children":313},{"class":111,"line":112},[314],{"type":36,"tag":109,"props":315,"children":316},{},[317],{"type":41,"value":305},{"type":36,"tag":48,"props":319,"children":320},{},[321,326,328,334],{"type":36,"tag":52,"props":322,"children":323},{},[324],{"type":41,"value":325},"Authentication",{"type":41,"value":327},": ",{"type":36,"tag":105,"props":329,"children":331},{"className":330},[],[332],{"type":41,"value":333},"X-Subscription-Token: \u003CAPI_KEY>",{"type":41,"value":335}," header",{"type":36,"tag":90,"props":337,"children":339},{"id":338},"parameters",[340],{"type":41,"value":341},"Parameters",{"type":36,"tag":343,"props":344,"children":345},"table",{},[346,380],{"type":36,"tag":347,"props":348,"children":349},"thead",{},[350],{"type":36,"tag":351,"props":352,"children":353},"tr",{},[354,360,365,370,375],{"type":36,"tag":355,"props":356,"children":357},"th",{},[358],{"type":41,"value":359},"Parameter",{"type":36,"tag":355,"props":361,"children":362},{},[363],{"type":41,"value":364},"Type",{"type":36,"tag":355,"props":366,"children":367},{},[368],{"type":41,"value":369},"Required",{"type":36,"tag":355,"props":371,"children":372},{},[373],{"type":41,"value":374},"Default",{"type":36,"tag":355,"props":376,"children":377},{},[378],{"type":41,"value":379},"Description",{"type":36,"tag":381,"props":382,"children":383},"tbody",{},[384,420,491],{"type":36,"tag":351,"props":385,"children":386},{},[387,397,402,410,415],{"type":36,"tag":388,"props":389,"children":390},"td",{},[391],{"type":36,"tag":105,"props":392,"children":394},{"className":393},[],[395],{"type":41,"value":396},"q",{"type":36,"tag":388,"props":398,"children":399},{},[400],{"type":41,"value":401},"string",{"type":36,"tag":388,"props":403,"children":404},{},[405],{"type":36,"tag":52,"props":406,"children":407},{},[408],{"type":41,"value":409},"Yes",{"type":36,"tag":388,"props":411,"children":412},{},[413],{"type":41,"value":414},"—",{"type":36,"tag":388,"props":416,"children":417},{},[418],{"type":41,"value":419},"Query to spell check (1-400 chars, max 50 words)",{"type":36,"tag":351,"props":421,"children":422},{},[423,432,436,441,450],{"type":36,"tag":388,"props":424,"children":425},{},[426],{"type":36,"tag":105,"props":427,"children":429},{"className":428},[],[430],{"type":41,"value":431},"lang",{"type":36,"tag":388,"props":433,"children":434},{},[435],{"type":41,"value":401},{"type":36,"tag":388,"props":437,"children":438},{},[439],{"type":41,"value":440},"No",{"type":36,"tag":388,"props":442,"children":443},{},[444],{"type":36,"tag":105,"props":445,"children":447},{"className":446},[],[448],{"type":41,"value":449},"en",{"type":36,"tag":388,"props":451,"children":452},{},[453,455,460,462,468,469,475,476,482,483,489],{"type":41,"value":454},"Language preference (2+ char language code, e.g. ",{"type":36,"tag":105,"props":456,"children":458},{"className":457},[],[459],{"type":41,"value":449},{"type":41,"value":461},", ",{"type":36,"tag":105,"props":463,"children":465},{"className":464},[],[466],{"type":41,"value":467},"fr",{"type":41,"value":461},{"type":36,"tag":105,"props":470,"children":472},{"className":471},[],[473],{"type":41,"value":474},"de",{"type":41,"value":461},{"type":36,"tag":105,"props":477,"children":479},{"className":478},[],[480],{"type":41,"value":481},"pt-br",{"type":41,"value":461},{"type":36,"tag":105,"props":484,"children":486},{"className":485},[],[487],{"type":41,"value":488},"zh-hans",{"type":41,"value":490},"). 51 codes supported",{"type":36,"tag":351,"props":492,"children":493},{},[494,503,507,511,520],{"type":36,"tag":388,"props":495,"children":496},{},[497],{"type":36,"tag":105,"props":498,"children":500},{"className":499},[],[501],{"type":41,"value":502},"country",{"type":36,"tag":388,"props":504,"children":505},{},[506],{"type":41,"value":401},{"type":36,"tag":388,"props":508,"children":509},{},[510],{"type":41,"value":440},{"type":36,"tag":388,"props":512,"children":513},{},[514],{"type":36,"tag":105,"props":515,"children":517},{"className":516},[],[518],{"type":41,"value":519},"US",{"type":36,"tag":388,"props":521,"children":522},{},[523,525,531],{"type":41,"value":524},"Search country (2-letter country code or ",{"type":36,"tag":105,"props":526,"children":528},{"className":527},[],[529],{"type":41,"value":530},"ALL",{"type":41,"value":532},")",{"type":36,"tag":90,"props":534,"children":536},{"id":535},"response-fields",[537],{"type":41,"value":538},"Response Fields",{"type":36,"tag":343,"props":540,"children":541},{},[542,561],{"type":36,"tag":347,"props":543,"children":544},{},[545],{"type":36,"tag":351,"props":546,"children":547},{},[548,553,557],{"type":36,"tag":355,"props":549,"children":550},{},[551],{"type":41,"value":552},"Field",{"type":36,"tag":355,"props":554,"children":555},{},[556],{"type":41,"value":364},{"type":36,"tag":355,"props":558,"children":559},{},[560],{"type":41,"value":379},{"type":36,"tag":381,"props":562,"children":563},{},[564,591,612,634],{"type":36,"tag":351,"props":565,"children":566},{},[567,576,580],{"type":36,"tag":388,"props":568,"children":569},{},[570],{"type":36,"tag":105,"props":571,"children":573},{"className":572},[],[574],{"type":41,"value":575},"type",{"type":36,"tag":388,"props":577,"children":578},{},[579],{"type":41,"value":401},{"type":36,"tag":388,"props":581,"children":582},{},[583,585],{"type":41,"value":584},"Always ",{"type":36,"tag":105,"props":586,"children":588},{"className":587},[],[589],{"type":41,"value":590},"\"spellcheck\"",{"type":36,"tag":351,"props":592,"children":593},{},[594,603,607],{"type":36,"tag":388,"props":595,"children":596},{},[597],{"type":36,"tag":105,"props":598,"children":600},{"className":599},[],[601],{"type":41,"value":602},"query.original",{"type":36,"tag":388,"props":604,"children":605},{},[606],{"type":41,"value":401},{"type":36,"tag":388,"props":608,"children":609},{},[610],{"type":41,"value":611},"The input query as submitted",{"type":36,"tag":351,"props":613,"children":614},{},[615,624,629],{"type":36,"tag":388,"props":616,"children":617},{},[618],{"type":36,"tag":105,"props":619,"children":621},{"className":620},[],[622],{"type":41,"value":623},"results",{"type":36,"tag":388,"props":625,"children":626},{},[627],{"type":41,"value":628},"array",{"type":36,"tag":388,"props":630,"children":631},{},[632],{"type":41,"value":633},"Spell-corrected suggestions. May be empty when no correction is found",{"type":36,"tag":351,"props":635,"children":636},{},[637,646,650],{"type":36,"tag":388,"props":638,"children":639},{},[640],{"type":36,"tag":105,"props":641,"children":643},{"className":642},[],[644],{"type":41,"value":645},"results[].query",{"type":36,"tag":388,"props":647,"children":648},{},[649],{"type":41,"value":401},{"type":36,"tag":388,"props":651,"children":652},{},[653],{"type":41,"value":654},"A corrected version of the query",{"type":36,"tag":90,"props":656,"children":658},{"id":657},"example-response",[659],{"type":41,"value":660},"Example Response",{"type":36,"tag":97,"props":662,"children":666},{"className":663,"code":664,"language":665,"meta":102,"style":102},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"spellcheck\",\n  \"query\": {\n    \"original\": \"artifical inteligence\"\n  },\n  \"results\": [\n    {\n      \"query\": \"artificial intelligence\"\n    }\n  ]\n}\n","json",[667],{"type":36,"tag":105,"props":668,"children":669},{"__ignoreMap":102},[670,678,717,742,776,784,808,816,850,859,868],{"type":36,"tag":109,"props":671,"children":672},{"class":111,"line":112},[673],{"type":36,"tag":109,"props":674,"children":675},{"style":128},[676],{"type":41,"value":677},"{\n",{"type":36,"tag":109,"props":679,"children":680},{"class":111,"line":150},[681,686,691,695,700,704,708,712],{"type":36,"tag":109,"props":682,"children":683},{"style":128},[684],{"type":41,"value":685},"  \"",{"type":36,"tag":109,"props":687,"children":689},{"style":688},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[690],{"type":41,"value":575},{"type":36,"tag":109,"props":692,"children":693},{"style":128},[694],{"type":41,"value":141},{"type":36,"tag":109,"props":696,"children":697},{"style":128},[698],{"type":41,"value":699},":",{"type":36,"tag":109,"props":701,"children":702},{"style":128},[703],{"type":41,"value":131},{"type":36,"tag":109,"props":705,"children":706},{"style":122},[707],{"type":41,"value":4},{"type":36,"tag":109,"props":709,"children":710},{"style":128},[711],{"type":41,"value":141},{"type":36,"tag":109,"props":713,"children":714},{"style":128},[715],{"type":41,"value":716},",\n",{"type":36,"tag":109,"props":718,"children":719},{"class":111,"line":176},[720,724,729,733,737],{"type":36,"tag":109,"props":721,"children":722},{"style":128},[723],{"type":41,"value":685},{"type":36,"tag":109,"props":725,"children":726},{"style":688},[727],{"type":41,"value":728},"query",{"type":36,"tag":109,"props":730,"children":731},{"style":128},[732],{"type":41,"value":141},{"type":36,"tag":109,"props":734,"children":735},{"style":128},[736],{"type":41,"value":699},{"type":36,"tag":109,"props":738,"children":739},{"style":128},[740],{"type":41,"value":741}," {\n",{"type":36,"tag":109,"props":743,"children":744},{"class":111,"line":212},[745,750,755,759,763,767,772],{"type":36,"tag":109,"props":746,"children":747},{"style":128},[748],{"type":41,"value":749},"    \"",{"type":36,"tag":109,"props":751,"children":752},{"style":116},[753],{"type":41,"value":754},"original",{"type":36,"tag":109,"props":756,"children":757},{"style":128},[758],{"type":41,"value":141},{"type":36,"tag":109,"props":760,"children":761},{"style":128},[762],{"type":41,"value":699},{"type":36,"tag":109,"props":764,"children":765},{"style":128},[766],{"type":41,"value":131},{"type":36,"tag":109,"props":768,"children":769},{"style":122},[770],{"type":41,"value":771},"artifical inteligence",{"type":36,"tag":109,"props":773,"children":774},{"style":128},[775],{"type":41,"value":295},{"type":36,"tag":109,"props":777,"children":778},{"class":111,"line":225},[779],{"type":36,"tag":109,"props":780,"children":781},{"style":128},[782],{"type":41,"value":783},"  },\n",{"type":36,"tag":109,"props":785,"children":786},{"class":111,"line":251},[787,791,795,799,803],{"type":36,"tag":109,"props":788,"children":789},{"style":128},[790],{"type":41,"value":685},{"type":36,"tag":109,"props":792,"children":793},{"style":688},[794],{"type":41,"value":623},{"type":36,"tag":109,"props":796,"children":797},{"style":128},[798],{"type":41,"value":141},{"type":36,"tag":109,"props":800,"children":801},{"style":128},[802],{"type":41,"value":699},{"type":36,"tag":109,"props":804,"children":805},{"style":128},[806],{"type":41,"value":807}," [\n",{"type":36,"tag":109,"props":809,"children":810},{"class":111,"line":276},[811],{"type":36,"tag":109,"props":812,"children":813},{"style":128},[814],{"type":41,"value":815},"    {\n",{"type":36,"tag":109,"props":817,"children":819},{"class":111,"line":818},8,[820,825,829,833,837,841,846],{"type":36,"tag":109,"props":821,"children":822},{"style":128},[823],{"type":41,"value":824},"      \"",{"type":36,"tag":109,"props":826,"children":827},{"style":116},[828],{"type":41,"value":728},{"type":36,"tag":109,"props":830,"children":831},{"style":128},[832],{"type":41,"value":141},{"type":36,"tag":109,"props":834,"children":835},{"style":128},[836],{"type":41,"value":699},{"type":36,"tag":109,"props":838,"children":839},{"style":128},[840],{"type":41,"value":131},{"type":36,"tag":109,"props":842,"children":843},{"style":122},[844],{"type":41,"value":845},"artificial intelligence",{"type":36,"tag":109,"props":847,"children":848},{"style":128},[849],{"type":41,"value":295},{"type":36,"tag":109,"props":851,"children":853},{"class":111,"line":852},9,[854],{"type":36,"tag":109,"props":855,"children":856},{"style":128},[857],{"type":41,"value":858},"    }\n",{"type":36,"tag":109,"props":860,"children":862},{"class":111,"line":861},10,[863],{"type":36,"tag":109,"props":864,"children":865},{"style":128},[866],{"type":41,"value":867},"  ]\n",{"type":36,"tag":109,"props":869,"children":870},{"class":111,"line":23},[871],{"type":36,"tag":109,"props":872,"children":873},{"style":128},[874],{"type":41,"value":875},"}\n",{"type":36,"tag":90,"props":877,"children":879},{"id":878},"use-cases",[880],{"type":41,"value":881},"Use Cases",{"type":36,"tag":883,"props":884,"children":885},"ul",{},[886,897,907],{"type":36,"tag":887,"props":888,"children":889},"li",{},[890,895],{"type":36,"tag":52,"props":891,"children":892},{},[893],{"type":41,"value":894},"Pre-search query cleanup",{"type":41,"value":896},": Check spelling before deciding which search endpoint to call",{"type":36,"tag":887,"props":898,"children":899},{},[900,905],{"type":36,"tag":52,"props":901,"children":902},{},[903],{"type":41,"value":904},"\"Did you mean?\" UI",{"type":41,"value":906},": Show users a corrected suggestion before running the search",{"type":36,"tag":887,"props":908,"children":909},{},[910,915],{"type":36,"tag":52,"props":911,"children":912},{},[913],{"type":41,"value":914},"Batch query normalization",{"type":41,"value":916},": Clean up user inputs in bulk",{"type":36,"tag":90,"props":918,"children":920},{"id":919},"notes",[921],{"type":41,"value":922},"Notes",{"type":36,"tag":883,"props":924,"children":925},{},[926,944],{"type":36,"tag":887,"props":927,"children":928},{},[929,934,936,942],{"type":36,"tag":52,"props":930,"children":931},{},[932],{"type":41,"value":933},"Built-in alternative",{"type":41,"value":935},": Web Search and LLM Context have ",{"type":36,"tag":105,"props":937,"children":939},{"className":938},[],[940],{"type":41,"value":941},"spellcheck=true",{"type":41,"value":943}," by default — use this standalone endpoint only when you need the correction before searching",{"type":36,"tag":887,"props":945,"children":946},{},[947,952],{"type":36,"tag":52,"props":948,"children":949},{},[950],{"type":41,"value":951},"Context-aware",{"type":41,"value":953},": Corrections consider the full query context, not just individual words",{"type":36,"tag":955,"props":956,"children":957},"style",{},[958],{"type":41,"value":959},"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":961,"total":1043},[962,974,990,1002,1011,1021,1033],{"slug":963,"name":963,"fn":964,"description":965,"org":966,"tags":967,"stars":19,"repoUrl":20,"updatedAt":973},"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},[968,969,972],{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},"LLM","llm",{"name":17,"slug":18,"type":15},"2026-04-06T18:05:53.15861",{"slug":975,"name":975,"fn":976,"description":977,"org":978,"tags":979,"stars":19,"repoUrl":20,"updatedAt":989},"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},[980,983,984,985,988],{"name":981,"slug":982,"type":15},"AI Context","ai-context",{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},{"name":986,"slug":987,"type":15},"Research","research",{"name":17,"slug":18,"type":15},"2026-04-08T04:55:31.217318",{"slug":991,"name":991,"fn":992,"description":993,"org":994,"tags":995,"stars":19,"repoUrl":20,"updatedAt":1001},"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},[996,997,1000],{"name":13,"slug":14,"type":15},{"name":998,"slug":999,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:05.777322",{"slug":1003,"name":1003,"fn":1004,"description":1005,"org":1006,"tags":1007,"stars":19,"repoUrl":20,"updatedAt":1010},"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},[1008,1009],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:04.504482",{"slug":1012,"name":1012,"fn":1013,"description":1014,"org":1015,"tags":1016,"stars":19,"repoUrl":20,"updatedAt":1020},"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},[1017,1018,1019],{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:58.243978",{"slug":1022,"name":1022,"fn":1023,"description":1024,"org":1025,"tags":1026,"stars":19,"repoUrl":20,"updatedAt":1032},"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},[1027,1028,1031],{"name":13,"slug":14,"type":15},{"name":1029,"slug":1030,"type":15},"Local Search","local-search",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:03.239884",{"slug":1034,"name":1034,"fn":1035,"description":1036,"org":1037,"tags":1038,"stars":19,"repoUrl":20,"updatedAt":1042},"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},[1039,1040,1041],{"name":13,"slug":14,"type":15},{"name":1029,"slug":1030,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:55.722361",12,{"items":1045,"total":1043},[1046,1052,1060,1066,1071,1077,1083,1089,1098,1103,1112,1124],{"slug":963,"name":963,"fn":964,"description":965,"org":1047,"tags":1048,"stars":19,"repoUrl":20,"updatedAt":973},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1049,1050,1051],{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},{"name":17,"slug":18,"type":15},{"slug":975,"name":975,"fn":976,"description":977,"org":1053,"tags":1054,"stars":19,"repoUrl":20,"updatedAt":989},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1055,1056,1057,1058,1059],{"name":981,"slug":982,"type":15},{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},{"name":986,"slug":987,"type":15},{"name":17,"slug":18,"type":15},{"slug":991,"name":991,"fn":992,"description":993,"org":1061,"tags":1062,"stars":19,"repoUrl":20,"updatedAt":1001},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1063,1064,1065],{"name":13,"slug":14,"type":15},{"name":998,"slug":999,"type":15},{"name":17,"slug":18,"type":15},{"slug":1003,"name":1003,"fn":1004,"description":1005,"org":1067,"tags":1068,"stars":19,"repoUrl":20,"updatedAt":1010},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1069,1070],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1012,"name":1012,"fn":1013,"description":1014,"org":1072,"tags":1073,"stars":19,"repoUrl":20,"updatedAt":1020},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1074,1075,1076],{"name":13,"slug":14,"type":15},{"name":970,"slug":971,"type":15},{"name":17,"slug":18,"type":15},{"slug":1022,"name":1022,"fn":1023,"description":1024,"org":1078,"tags":1079,"stars":19,"repoUrl":20,"updatedAt":1032},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1080,1081,1082],{"name":13,"slug":14,"type":15},{"name":1029,"slug":1030,"type":15},{"name":17,"slug":18,"type":15},{"slug":1034,"name":1034,"fn":1035,"description":1036,"org":1084,"tags":1085,"stars":19,"repoUrl":20,"updatedAt":1042},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1086,1087,1088],{"name":13,"slug":14,"type":15},{"name":1029,"slug":1030,"type":15},{"name":17,"slug":18,"type":15},{"slug":1090,"name":1090,"fn":1091,"description":1092,"org":1093,"tags":1094,"stars":19,"repoUrl":20,"updatedAt":1097},"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},[1095,1096],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:01.995483",{"slug":4,"name":4,"fn":5,"description":6,"org":1099,"tags":1100,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1101,1102],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":1104,"name":1104,"fn":1105,"description":1106,"org":1107,"tags":1108,"stars":19,"repoUrl":20,"updatedAt":1111},"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},[1109,1110],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:54.426217",{"slug":1113,"name":1113,"fn":1114,"description":1115,"org":1116,"tags":1117,"stars":19,"repoUrl":20,"updatedAt":1123},"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},[1118,1119,1120],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1121,"slug":1122,"type":15},"Video","video","2026-04-06T18:05:56.996883",{"slug":1125,"name":1125,"fn":1126,"description":1127,"org":1128,"tags":1129,"stars":19,"repoUrl":20,"updatedAt":1132},"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},[1130,1131],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:00.748827"]