[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-brave-images-search":3,"mdc--5c03za-key":30,"related-org-brave-images-search":2603,"related-repo-brave-images-search":2728},{"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},"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},"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:04.504482",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\u002Fimages-search","---\nname: images-search\ndescription: USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.\n---\n\n# Images 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\u002Fimages\u002Fsearch?q=mountain+landscape\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\"\n```\n\n### With Parameters\n```bash\ncurl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fimages\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=northern lights photography\" \\\n  --data-urlencode \"country=US\" \\\n  --data-urlencode \"search_lang=en\" \\\n  --data-urlencode \"count=20\" \\\n  --data-urlencode \"safesearch=strict\"\n```\n\n## Endpoint\n\n```http\nGET https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fimages\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** | - | 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` | 2+ char language code |\n| `count` | int | No | 50 | Results to return (1-200) |\n| `safesearch` | string | No | `strict` | `off` or `strict` (no `moderate` for images) |\n| `spellcheck` | bool | No | true | Auto-correct query; corrected query in `query.altered` |\n\n## Response Format\n\n```json\n{\n  \"type\": \"images\",\n  \"query\": {\n    \"original\": \"mountain landscape\",\n    \"altered\": null,\n    \"spellcheck_off\": false,\n    \"show_strict_warning\": false\n  },\n  \"results\": [\n    {\n      \"type\": \"image_result\",\n      \"title\": \"Beautiful Mountain Landscape\",\n      \"url\": \"https:\u002F\u002Fexample.com\u002Fmountain-photo\",\n      \"source\": \"example.com\",\n      \"page_fetched\": \"2025-09-15T10:30:00Z\",\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fimgs.search.brave.com\u002F...\",\n        \"width\": 200,\n        \"height\": 150\n      },\n      \"properties\": {\n        \"url\": \"https:\u002F\u002Fexample.com\u002Fimages\u002Fmountain.jpg\",\n        \"placeholder\": \"https:\u002F\u002Fimgs.search.brave.com\u002Fplaceholder\u002F...\",\n        \"width\": 1920,\n        \"height\": 1080\n      },\n      \"meta_url\": {\n        \"scheme\": \"https\",\n        \"netloc\": \"example.com\",\n        \"hostname\": \"example.com\",\n        \"favicon\": \"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002F...\",\n        \"path\": \"\u002Fmountain-photo\"\n      },\n      \"confidence\": \"high\"\n    }\n  ],\n  \"extra\": {\n    \"might_be_offensive\": false\n  }\n}\n```\n\n## Response Fields\n\n| Field | Type | Description |\n|--|--|--|\n| `type` | string | Always `\"images\"` |\n| `query.original` | string | Original query |\n| `query.altered` | string? | Spellchecked query (null if no correction) |\n| `query.spellcheck_off` | bool? | Whether spellcheck was disabled |\n| `query.show_strict_warning` | bool? | True if strict safesearch hid relevant results |\n| `results[]` | array | List of image results |\n| `results[].type` | string | Always `\"image_result\"` |\n| `results[].title` | string? | Image title |\n| `results[].url` | string? | Page URL where image was found |\n| `results[].source` | string? | Source domain |\n| `results[].page_fetched` | string? | ISO datetime of last page crawl |\n| `results[].thumbnail.src` | string? | Brave-proxied thumbnail URL (~500px width) |\n| `results[].thumbnail.width` | int? | Thumbnail width |\n| `results[].thumbnail.height` | int? | Thumbnail height |\n| `results[].properties.url` | string? | Original full-size image URL |\n| `results[].properties.placeholder` | string? | Low-res placeholder URL (Brave-proxied) |\n| `results[].properties.width` | int? | Original image width (may be null) |\n| `results[].properties.height` | int? | Original image height (may be null) |\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 |\n| `results[].meta_url.favicon` | string? | Favicon URL |\n| `results[].meta_url.path` | string? | URL path |\n| `results[].confidence` | string? | Relevance: `low`, `medium`, or `high` |\n| `extra.might_be_offensive` | bool | Whether results may contain offensive content |\n\n## Use Cases\n\n- **Visual content discovery**: Build image galleries, mood boards, or visual research tools. Use `count=200` for comprehensive coverage. Prefer over `web-search` when you need image-specific metadata (dimensions, thumbnails).\n- **Content enrichment**: Add relevant images to articles or generated content. Use `country` and `search_lang` to target your audience's locale.\n- **Safe image retrieval**: Default `safesearch=strict` ensures family-friendly results out of the box. Only two modes (off\u002Fstrict) — no moderate option, unlike web\u002Fvideo\u002Fnews search.\n- **High-volume batch retrieval**: Up to 200 images per request (vs 20 for web, 50 for videos\u002Fnews). Ideal for bulk image sourcing or visual analysis pipelines.\n\n## Notes\n\n- **SafeSearch**: Defaults to `strict` for images (stricter than web search)\n- **High volume**: Can return up to 200 results per request\n- **Thumbnails**: Brave-proxied for user privacy (500px width). Use `properties.url` for original full-resolution image.\n- **Dimensions**: `properties.width\u002Fheight` may be missing for some images\n- **Placeholder**: `properties.placeholder` is a low-res URL (not inline base64) useful for progressive loading UX\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,43,89,96,103,213,219,445,451,467,485,491,769,775,1831,1837,2421,2427,2509,2515,2597],{"type":36,"tag":37,"props":38,"children":39},"element","h1",{"id":4},[40],{"type":41,"value":42},"text","Images 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\u002Fimages\u002Fsearch?q=mountain+landscape\" \\\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\u002Fimages\u002Fsearch?q=mountain+landscape",{"type":36,"tag":116,"props":145,"children":146},{"style":135},[147],{"type":41,"value":148},"\"",{"type":36,"tag":116,"props":150,"children":152},{"style":151},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[153],{"type":41,"value":154}," \\\n",{"type":36,"tag":116,"props":156,"children":158},{"class":118,"line":157},2,[159,164,168,173,177],{"type":36,"tag":116,"props":160,"children":161},{"style":129},[162],{"type":41,"value":163},"  -H",{"type":36,"tag":116,"props":165,"children":166},{"style":135},[167],{"type":41,"value":138},{"type":36,"tag":116,"props":169,"children":170},{"style":129},[171],{"type":41,"value":172},"Accept: application\u002Fjson",{"type":36,"tag":116,"props":174,"children":175},{"style":135},[176],{"type":41,"value":148},{"type":36,"tag":116,"props":178,"children":179},{"style":151},[180],{"type":41,"value":154},{"type":36,"tag":116,"props":182,"children":184},{"class":118,"line":183},3,[185,189,193,198,203,208],{"type":36,"tag":116,"props":186,"children":187},{"style":129},[188],{"type":41,"value":163},{"type":36,"tag":116,"props":190,"children":191},{"style":135},[192],{"type":41,"value":138},{"type":36,"tag":116,"props":194,"children":195},{"style":129},[196],{"type":41,"value":197},"X-Subscription-Token: ",{"type":36,"tag":116,"props":199,"children":200},{"style":135},[201],{"type":41,"value":202},"${",{"type":36,"tag":116,"props":204,"children":205},{"style":151},[206],{"type":41,"value":207},"BRAVE_SEARCH_API_KEY",{"type":36,"tag":116,"props":209,"children":210},{"style":135},[211],{"type":41,"value":212},"}\"\n",{"type":36,"tag":97,"props":214,"children":216},{"id":215},"with-parameters",[217],{"type":41,"value":218},"With Parameters",{"type":36,"tag":104,"props":220,"children":222},{"className":106,"code":221,"language":108,"meta":109,"style":109},"curl -s \"https:\u002F\u002Fapi.search.brave.com\u002Fres\u002Fv1\u002Fimages\u002Fsearch\" \\\n  -H \"Accept: application\u002Fjson\" \\\n  -H \"X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}\" \\\n  -G \\\n  --data-urlencode \"q=northern lights photography\" \\\n  --data-urlencode \"country=US\" \\\n  --data-urlencode \"search_lang=en\" \\\n  --data-urlencode \"count=20\" \\\n  --data-urlencode \"safesearch=strict\"\n",[223],{"type":36,"tag":112,"props":224,"children":225},{"__ignoreMap":109},[226,254,277,309,322,348,373,398,423],{"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\u002Fimages\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=northern lights photography",{"type":36,"tag":116,"props":341,"children":342},{"style":135},[343],{"type":41,"value":148},{"type":36,"tag":116,"props":345,"children":346},{"style":151},[347],{"type":41,"value":154},{"type":36,"tag":116,"props":349,"children":351},{"class":118,"line":350},6,[352,356,360,365,369],{"type":36,"tag":116,"props":353,"children":354},{"style":129},[355],{"type":41,"value":330},{"type":36,"tag":116,"props":357,"children":358},{"style":135},[359],{"type":41,"value":138},{"type":36,"tag":116,"props":361,"children":362},{"style":129},[363],{"type":41,"value":364},"country=US",{"type":36,"tag":116,"props":366,"children":367},{"style":135},[368],{"type":41,"value":148},{"type":36,"tag":116,"props":370,"children":371},{"style":151},[372],{"type":41,"value":154},{"type":36,"tag":116,"props":374,"children":376},{"class":118,"line":375},7,[377,381,385,390,394],{"type":36,"tag":116,"props":378,"children":379},{"style":129},[380],{"type":41,"value":330},{"type":36,"tag":116,"props":382,"children":383},{"style":135},[384],{"type":41,"value":138},{"type":36,"tag":116,"props":386,"children":387},{"style":129},[388],{"type":41,"value":389},"search_lang=en",{"type":36,"tag":116,"props":391,"children":392},{"style":135},[393],{"type":41,"value":148},{"type":36,"tag":116,"props":395,"children":396},{"style":151},[397],{"type":41,"value":154},{"type":36,"tag":116,"props":399,"children":401},{"class":118,"line":400},8,[402,406,410,415,419],{"type":36,"tag":116,"props":403,"children":404},{"style":129},[405],{"type":41,"value":330},{"type":36,"tag":116,"props":407,"children":408},{"style":135},[409],{"type":41,"value":138},{"type":36,"tag":116,"props":411,"children":412},{"style":129},[413],{"type":41,"value":414},"count=20",{"type":36,"tag":116,"props":416,"children":417},{"style":135},[418],{"type":41,"value":148},{"type":36,"tag":116,"props":420,"children":421},{"style":151},[422],{"type":41,"value":154},{"type":36,"tag":116,"props":424,"children":426},{"class":118,"line":425},9,[427,431,435,440],{"type":36,"tag":116,"props":428,"children":429},{"style":129},[430],{"type":41,"value":330},{"type":36,"tag":116,"props":432,"children":433},{"style":135},[434],{"type":41,"value":138},{"type":36,"tag":116,"props":436,"children":437},{"style":129},[438],{"type":41,"value":439},"safesearch=strict",{"type":36,"tag":116,"props":441,"children":442},{"style":135},[443],{"type":41,"value":444},"\"\n",{"type":36,"tag":90,"props":446,"children":448},{"id":447},"endpoint",[449],{"type":41,"value":450},"Endpoint",{"type":36,"tag":104,"props":452,"children":456},{"className":453,"code":454,"language":455,"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\u002Fimages\u002Fsearch\n","http",[457],{"type":36,"tag":112,"props":458,"children":459},{"__ignoreMap":109},[460],{"type":36,"tag":116,"props":461,"children":462},{"class":118,"line":119},[463],{"type":36,"tag":116,"props":464,"children":465},{},[466],{"type":41,"value":454},{"type":36,"tag":48,"props":468,"children":469},{},[470,475,477,483],{"type":36,"tag":52,"props":471,"children":472},{},[473],{"type":41,"value":474},"Authentication",{"type":41,"value":476},": ",{"type":36,"tag":112,"props":478,"children":480},{"className":479},[],[481],{"type":41,"value":482},"X-Subscription-Token: \u003CAPI_KEY>",{"type":41,"value":484}," header",{"type":36,"tag":90,"props":486,"children":488},{"id":487},"parameters",[489],{"type":41,"value":490},"Parameters",{"type":36,"tag":492,"props":493,"children":494},"table",{},[495,529],{"type":36,"tag":496,"props":497,"children":498},"thead",{},[499],{"type":36,"tag":500,"props":501,"children":502},"tr",{},[503,509,514,519,524],{"type":36,"tag":504,"props":505,"children":506},"th",{},[507],{"type":41,"value":508},"Parameter",{"type":36,"tag":504,"props":510,"children":511},{},[512],{"type":41,"value":513},"Type",{"type":36,"tag":504,"props":515,"children":516},{},[517],{"type":41,"value":518},"Required",{"type":36,"tag":504,"props":520,"children":521},{},[522],{"type":41,"value":523},"Default",{"type":36,"tag":504,"props":525,"children":526},{},[527],{"type":41,"value":528},"Description",{"type":36,"tag":530,"props":531,"children":532},"tbody",{},[533,569,612,646,677,732],{"type":36,"tag":500,"props":534,"children":535},{},[536,546,551,559,564],{"type":36,"tag":537,"props":538,"children":539},"td",{},[540],{"type":36,"tag":112,"props":541,"children":543},{"className":542},[],[544],{"type":41,"value":545},"q",{"type":36,"tag":537,"props":547,"children":548},{},[549],{"type":41,"value":550},"string",{"type":36,"tag":537,"props":552,"children":553},{},[554],{"type":36,"tag":52,"props":555,"children":556},{},[557],{"type":41,"value":558},"Yes",{"type":36,"tag":537,"props":560,"children":561},{},[562],{"type":41,"value":563},"-",{"type":36,"tag":537,"props":565,"children":566},{},[567],{"type":41,"value":568},"Search query (1-400 chars, max 50 words)",{"type":36,"tag":500,"props":570,"children":571},{},[572,581,585,590,599],{"type":36,"tag":537,"props":573,"children":574},{},[575],{"type":36,"tag":112,"props":576,"children":578},{"className":577},[],[579],{"type":41,"value":580},"country",{"type":36,"tag":537,"props":582,"children":583},{},[584],{"type":41,"value":550},{"type":36,"tag":537,"props":586,"children":587},{},[588],{"type":41,"value":589},"No",{"type":36,"tag":537,"props":591,"children":592},{},[593],{"type":36,"tag":112,"props":594,"children":596},{"className":595},[],[597],{"type":41,"value":598},"US",{"type":36,"tag":537,"props":600,"children":601},{},[602,604,610],{"type":41,"value":603},"Search country (2-letter country code or ",{"type":36,"tag":112,"props":605,"children":607},{"className":606},[],[608],{"type":41,"value":609},"ALL",{"type":41,"value":611},")",{"type":36,"tag":500,"props":613,"children":614},{},[615,624,628,632,641],{"type":36,"tag":537,"props":616,"children":617},{},[618],{"type":36,"tag":112,"props":619,"children":621},{"className":620},[],[622],{"type":41,"value":623},"search_lang",{"type":36,"tag":537,"props":625,"children":626},{},[627],{"type":41,"value":550},{"type":36,"tag":537,"props":629,"children":630},{},[631],{"type":41,"value":589},{"type":36,"tag":537,"props":633,"children":634},{},[635],{"type":36,"tag":112,"props":636,"children":638},{"className":637},[],[639],{"type":41,"value":640},"en",{"type":36,"tag":537,"props":642,"children":643},{},[644],{"type":41,"value":645},"2+ char language code",{"type":36,"tag":500,"props":647,"children":648},{},[649,658,663,667,672],{"type":36,"tag":537,"props":650,"children":651},{},[652],{"type":36,"tag":112,"props":653,"children":655},{"className":654},[],[656],{"type":41,"value":657},"count",{"type":36,"tag":537,"props":659,"children":660},{},[661],{"type":41,"value":662},"int",{"type":36,"tag":537,"props":664,"children":665},{},[666],{"type":41,"value":589},{"type":36,"tag":537,"props":668,"children":669},{},[670],{"type":41,"value":671},"50",{"type":36,"tag":537,"props":673,"children":674},{},[675],{"type":41,"value":676},"Results to return (1-200)",{"type":36,"tag":500,"props":678,"children":679},{},[680,689,693,697,706],{"type":36,"tag":537,"props":681,"children":682},{},[683],{"type":36,"tag":112,"props":684,"children":686},{"className":685},[],[687],{"type":41,"value":688},"safesearch",{"type":36,"tag":537,"props":690,"children":691},{},[692],{"type":41,"value":550},{"type":36,"tag":537,"props":694,"children":695},{},[696],{"type":41,"value":589},{"type":36,"tag":537,"props":698,"children":699},{},[700],{"type":36,"tag":112,"props":701,"children":703},{"className":702},[],[704],{"type":41,"value":705},"strict",{"type":36,"tag":537,"props":707,"children":708},{},[709,715,717,722,724,730],{"type":36,"tag":112,"props":710,"children":712},{"className":711},[],[713],{"type":41,"value":714},"off",{"type":41,"value":716}," or ",{"type":36,"tag":112,"props":718,"children":720},{"className":719},[],[721],{"type":41,"value":705},{"type":41,"value":723}," (no ",{"type":36,"tag":112,"props":725,"children":727},{"className":726},[],[728],{"type":41,"value":729},"moderate",{"type":41,"value":731}," for images)",{"type":36,"tag":500,"props":733,"children":734},{},[735,744,749,753,758],{"type":36,"tag":537,"props":736,"children":737},{},[738],{"type":36,"tag":112,"props":739,"children":741},{"className":740},[],[742],{"type":41,"value":743},"spellcheck",{"type":36,"tag":537,"props":745,"children":746},{},[747],{"type":41,"value":748},"bool",{"type":36,"tag":537,"props":750,"children":751},{},[752],{"type":41,"value":589},{"type":36,"tag":537,"props":754,"children":755},{},[756],{"type":41,"value":757},"true",{"type":36,"tag":537,"props":759,"children":760},{},[761,763],{"type":41,"value":762},"Auto-correct query; corrected query in ",{"type":36,"tag":112,"props":764,"children":766},{"className":765},[],[767],{"type":41,"value":768},"query.altered",{"type":36,"tag":90,"props":770,"children":772},{"id":771},"response-format",[773],{"type":41,"value":774},"Response Format",{"type":36,"tag":104,"props":776,"children":780},{"className":777,"code":778,"language":779,"meta":109,"style":109},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"type\": \"images\",\n  \"query\": {\n    \"original\": \"mountain landscape\",\n    \"altered\": null,\n    \"spellcheck_off\": false,\n    \"show_strict_warning\": false\n  },\n  \"results\": [\n    {\n      \"type\": \"image_result\",\n      \"title\": \"Beautiful Mountain Landscape\",\n      \"url\": \"https:\u002F\u002Fexample.com\u002Fmountain-photo\",\n      \"source\": \"example.com\",\n      \"page_fetched\": \"2025-09-15T10:30:00Z\",\n      \"thumbnail\": {\n        \"src\": \"https:\u002F\u002Fimgs.search.brave.com\u002F...\",\n        \"width\": 200,\n        \"height\": 150\n      },\n      \"properties\": {\n        \"url\": \"https:\u002F\u002Fexample.com\u002Fimages\u002Fmountain.jpg\",\n        \"placeholder\": \"https:\u002F\u002Fimgs.search.brave.com\u002Fplaceholder\u002F...\",\n        \"width\": 1920,\n        \"height\": 1080\n      },\n      \"meta_url\": {\n        \"scheme\": \"https\",\n        \"netloc\": \"example.com\",\n        \"hostname\": \"example.com\",\n        \"favicon\": \"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002F...\",\n        \"path\": \"\u002Fmountain-photo\"\n      },\n      \"confidence\": \"high\"\n    }\n  ],\n  \"extra\": {\n    \"might_be_offensive\": false\n  }\n}\n","json",[781],{"type":36,"tag":112,"props":782,"children":783},{"__ignoreMap":109},[784,792,833,858,896,921,946,971,979,1004,1013,1050,1088,1126,1164,1202,1227,1267,1297,1323,1332,1357,1394,1432,1461,1486,1494,1519,1557,1594,1631,1669,1703,1711,1745,1754,1763,1788,1813,1822],{"type":36,"tag":116,"props":785,"children":786},{"class":118,"line":119},[787],{"type":36,"tag":116,"props":788,"children":789},{"style":135},[790],{"type":41,"value":791},"{\n",{"type":36,"tag":116,"props":793,"children":794},{"class":118,"line":157},[795,800,806,810,815,819,824,828],{"type":36,"tag":116,"props":796,"children":797},{"style":135},[798],{"type":41,"value":799},"  \"",{"type":36,"tag":116,"props":801,"children":803},{"style":802},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[804],{"type":41,"value":805},"type",{"type":36,"tag":116,"props":807,"children":808},{"style":135},[809],{"type":41,"value":148},{"type":36,"tag":116,"props":811,"children":812},{"style":135},[813],{"type":41,"value":814},":",{"type":36,"tag":116,"props":816,"children":817},{"style":135},[818],{"type":41,"value":138},{"type":36,"tag":116,"props":820,"children":821},{"style":129},[822],{"type":41,"value":823},"images",{"type":36,"tag":116,"props":825,"children":826},{"style":135},[827],{"type":41,"value":148},{"type":36,"tag":116,"props":829,"children":830},{"style":135},[831],{"type":41,"value":832},",\n",{"type":36,"tag":116,"props":834,"children":835},{"class":118,"line":183},[836,840,845,849,853],{"type":36,"tag":116,"props":837,"children":838},{"style":135},[839],{"type":41,"value":799},{"type":36,"tag":116,"props":841,"children":842},{"style":802},[843],{"type":41,"value":844},"query",{"type":36,"tag":116,"props":846,"children":847},{"style":135},[848],{"type":41,"value":148},{"type":36,"tag":116,"props":850,"children":851},{"style":135},[852],{"type":41,"value":814},{"type":36,"tag":116,"props":854,"children":855},{"style":135},[856],{"type":41,"value":857}," {\n",{"type":36,"tag":116,"props":859,"children":860},{"class":118,"line":311},[861,866,871,875,879,883,888,892],{"type":36,"tag":116,"props":862,"children":863},{"style":135},[864],{"type":41,"value":865},"    \"",{"type":36,"tag":116,"props":867,"children":868},{"style":123},[869],{"type":41,"value":870},"original",{"type":36,"tag":116,"props":872,"children":873},{"style":135},[874],{"type":41,"value":148},{"type":36,"tag":116,"props":876,"children":877},{"style":135},[878],{"type":41,"value":814},{"type":36,"tag":116,"props":880,"children":881},{"style":135},[882],{"type":41,"value":138},{"type":36,"tag":116,"props":884,"children":885},{"style":129},[886],{"type":41,"value":887},"mountain landscape",{"type":36,"tag":116,"props":889,"children":890},{"style":135},[891],{"type":41,"value":148},{"type":36,"tag":116,"props":893,"children":894},{"style":135},[895],{"type":41,"value":832},{"type":36,"tag":116,"props":897,"children":898},{"class":118,"line":324},[899,903,908,912,916],{"type":36,"tag":116,"props":900,"children":901},{"style":135},[902],{"type":41,"value":865},{"type":36,"tag":116,"props":904,"children":905},{"style":123},[906],{"type":41,"value":907},"altered",{"type":36,"tag":116,"props":909,"children":910},{"style":135},[911],{"type":41,"value":148},{"type":36,"tag":116,"props":913,"children":914},{"style":135},[915],{"type":41,"value":814},{"type":36,"tag":116,"props":917,"children":918},{"style":135},[919],{"type":41,"value":920}," null,\n",{"type":36,"tag":116,"props":922,"children":923},{"class":118,"line":350},[924,928,933,937,941],{"type":36,"tag":116,"props":925,"children":926},{"style":135},[927],{"type":41,"value":865},{"type":36,"tag":116,"props":929,"children":930},{"style":123},[931],{"type":41,"value":932},"spellcheck_off",{"type":36,"tag":116,"props":934,"children":935},{"style":135},[936],{"type":41,"value":148},{"type":36,"tag":116,"props":938,"children":939},{"style":135},[940],{"type":41,"value":814},{"type":36,"tag":116,"props":942,"children":943},{"style":135},[944],{"type":41,"value":945}," false,\n",{"type":36,"tag":116,"props":947,"children":948},{"class":118,"line":375},[949,953,958,962,966],{"type":36,"tag":116,"props":950,"children":951},{"style":135},[952],{"type":41,"value":865},{"type":36,"tag":116,"props":954,"children":955},{"style":123},[956],{"type":41,"value":957},"show_strict_warning",{"type":36,"tag":116,"props":959,"children":960},{"style":135},[961],{"type":41,"value":148},{"type":36,"tag":116,"props":963,"children":964},{"style":135},[965],{"type":41,"value":814},{"type":36,"tag":116,"props":967,"children":968},{"style":135},[969],{"type":41,"value":970}," false\n",{"type":36,"tag":116,"props":972,"children":973},{"class":118,"line":400},[974],{"type":36,"tag":116,"props":975,"children":976},{"style":135},[977],{"type":41,"value":978},"  },\n",{"type":36,"tag":116,"props":980,"children":981},{"class":118,"line":425},[982,986,991,995,999],{"type":36,"tag":116,"props":983,"children":984},{"style":135},[985],{"type":41,"value":799},{"type":36,"tag":116,"props":987,"children":988},{"style":802},[989],{"type":41,"value":990},"results",{"type":36,"tag":116,"props":992,"children":993},{"style":135},[994],{"type":41,"value":148},{"type":36,"tag":116,"props":996,"children":997},{"style":135},[998],{"type":41,"value":814},{"type":36,"tag":116,"props":1000,"children":1001},{"style":135},[1002],{"type":41,"value":1003}," [\n",{"type":36,"tag":116,"props":1005,"children":1007},{"class":118,"line":1006},10,[1008],{"type":36,"tag":116,"props":1009,"children":1010},{"style":135},[1011],{"type":41,"value":1012},"    {\n",{"type":36,"tag":116,"props":1014,"children":1015},{"class":118,"line":23},[1016,1021,1025,1029,1033,1037,1042,1046],{"type":36,"tag":116,"props":1017,"children":1018},{"style":135},[1019],{"type":41,"value":1020},"      \"",{"type":36,"tag":116,"props":1022,"children":1023},{"style":123},[1024],{"type":41,"value":805},{"type":36,"tag":116,"props":1026,"children":1027},{"style":135},[1028],{"type":41,"value":148},{"type":36,"tag":116,"props":1030,"children":1031},{"style":135},[1032],{"type":41,"value":814},{"type":36,"tag":116,"props":1034,"children":1035},{"style":135},[1036],{"type":41,"value":138},{"type":36,"tag":116,"props":1038,"children":1039},{"style":129},[1040],{"type":41,"value":1041},"image_result",{"type":36,"tag":116,"props":1043,"children":1044},{"style":135},[1045],{"type":41,"value":148},{"type":36,"tag":116,"props":1047,"children":1048},{"style":135},[1049],{"type":41,"value":832},{"type":36,"tag":116,"props":1051,"children":1053},{"class":118,"line":1052},12,[1054,1058,1063,1067,1071,1075,1080,1084],{"type":36,"tag":116,"props":1055,"children":1056},{"style":135},[1057],{"type":41,"value":1020},{"type":36,"tag":116,"props":1059,"children":1060},{"style":123},[1061],{"type":41,"value":1062},"title",{"type":36,"tag":116,"props":1064,"children":1065},{"style":135},[1066],{"type":41,"value":148},{"type":36,"tag":116,"props":1068,"children":1069},{"style":135},[1070],{"type":41,"value":814},{"type":36,"tag":116,"props":1072,"children":1073},{"style":135},[1074],{"type":41,"value":138},{"type":36,"tag":116,"props":1076,"children":1077},{"style":129},[1078],{"type":41,"value":1079},"Beautiful Mountain Landscape",{"type":36,"tag":116,"props":1081,"children":1082},{"style":135},[1083],{"type":41,"value":148},{"type":36,"tag":116,"props":1085,"children":1086},{"style":135},[1087],{"type":41,"value":832},{"type":36,"tag":116,"props":1089,"children":1091},{"class":118,"line":1090},13,[1092,1096,1101,1105,1109,1113,1118,1122],{"type":36,"tag":116,"props":1093,"children":1094},{"style":135},[1095],{"type":41,"value":1020},{"type":36,"tag":116,"props":1097,"children":1098},{"style":123},[1099],{"type":41,"value":1100},"url",{"type":36,"tag":116,"props":1102,"children":1103},{"style":135},[1104],{"type":41,"value":148},{"type":36,"tag":116,"props":1106,"children":1107},{"style":135},[1108],{"type":41,"value":814},{"type":36,"tag":116,"props":1110,"children":1111},{"style":135},[1112],{"type":41,"value":138},{"type":36,"tag":116,"props":1114,"children":1115},{"style":129},[1116],{"type":41,"value":1117},"https:\u002F\u002Fexample.com\u002Fmountain-photo",{"type":36,"tag":116,"props":1119,"children":1120},{"style":135},[1121],{"type":41,"value":148},{"type":36,"tag":116,"props":1123,"children":1124},{"style":135},[1125],{"type":41,"value":832},{"type":36,"tag":116,"props":1127,"children":1129},{"class":118,"line":1128},14,[1130,1134,1139,1143,1147,1151,1156,1160],{"type":36,"tag":116,"props":1131,"children":1132},{"style":135},[1133],{"type":41,"value":1020},{"type":36,"tag":116,"props":1135,"children":1136},{"style":123},[1137],{"type":41,"value":1138},"source",{"type":36,"tag":116,"props":1140,"children":1141},{"style":135},[1142],{"type":41,"value":148},{"type":36,"tag":116,"props":1144,"children":1145},{"style":135},[1146],{"type":41,"value":814},{"type":36,"tag":116,"props":1148,"children":1149},{"style":135},[1150],{"type":41,"value":138},{"type":36,"tag":116,"props":1152,"children":1153},{"style":129},[1154],{"type":41,"value":1155},"example.com",{"type":36,"tag":116,"props":1157,"children":1158},{"style":135},[1159],{"type":41,"value":148},{"type":36,"tag":116,"props":1161,"children":1162},{"style":135},[1163],{"type":41,"value":832},{"type":36,"tag":116,"props":1165,"children":1167},{"class":118,"line":1166},15,[1168,1172,1177,1181,1185,1189,1194,1198],{"type":36,"tag":116,"props":1169,"children":1170},{"style":135},[1171],{"type":41,"value":1020},{"type":36,"tag":116,"props":1173,"children":1174},{"style":123},[1175],{"type":41,"value":1176},"page_fetched",{"type":36,"tag":116,"props":1178,"children":1179},{"style":135},[1180],{"type":41,"value":148},{"type":36,"tag":116,"props":1182,"children":1183},{"style":135},[1184],{"type":41,"value":814},{"type":36,"tag":116,"props":1186,"children":1187},{"style":135},[1188],{"type":41,"value":138},{"type":36,"tag":116,"props":1190,"children":1191},{"style":129},[1192],{"type":41,"value":1193},"2025-09-15T10:30:00Z",{"type":36,"tag":116,"props":1195,"children":1196},{"style":135},[1197],{"type":41,"value":148},{"type":36,"tag":116,"props":1199,"children":1200},{"style":135},[1201],{"type":41,"value":832},{"type":36,"tag":116,"props":1203,"children":1205},{"class":118,"line":1204},16,[1206,1210,1215,1219,1223],{"type":36,"tag":116,"props":1207,"children":1208},{"style":135},[1209],{"type":41,"value":1020},{"type":36,"tag":116,"props":1211,"children":1212},{"style":123},[1213],{"type":41,"value":1214},"thumbnail",{"type":36,"tag":116,"props":1216,"children":1217},{"style":135},[1218],{"type":41,"value":148},{"type":36,"tag":116,"props":1220,"children":1221},{"style":135},[1222],{"type":41,"value":814},{"type":36,"tag":116,"props":1224,"children":1225},{"style":135},[1226],{"type":41,"value":857},{"type":36,"tag":116,"props":1228,"children":1230},{"class":118,"line":1229},17,[1231,1236,1242,1246,1250,1254,1259,1263],{"type":36,"tag":116,"props":1232,"children":1233},{"style":135},[1234],{"type":41,"value":1235},"        \"",{"type":36,"tag":116,"props":1237,"children":1239},{"style":1238},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1240],{"type":41,"value":1241},"src",{"type":36,"tag":116,"props":1243,"children":1244},{"style":135},[1245],{"type":41,"value":148},{"type":36,"tag":116,"props":1247,"children":1248},{"style":135},[1249],{"type":41,"value":814},{"type":36,"tag":116,"props":1251,"children":1252},{"style":135},[1253],{"type":41,"value":138},{"type":36,"tag":116,"props":1255,"children":1256},{"style":129},[1257],{"type":41,"value":1258},"https:\u002F\u002Fimgs.search.brave.com\u002F...",{"type":36,"tag":116,"props":1260,"children":1261},{"style":135},[1262],{"type":41,"value":148},{"type":36,"tag":116,"props":1264,"children":1265},{"style":135},[1266],{"type":41,"value":832},{"type":36,"tag":116,"props":1268,"children":1270},{"class":118,"line":1269},18,[1271,1275,1280,1284,1288,1293],{"type":36,"tag":116,"props":1272,"children":1273},{"style":135},[1274],{"type":41,"value":1235},{"type":36,"tag":116,"props":1276,"children":1277},{"style":1238},[1278],{"type":41,"value":1279},"width",{"type":36,"tag":116,"props":1281,"children":1282},{"style":135},[1283],{"type":41,"value":148},{"type":36,"tag":116,"props":1285,"children":1286},{"style":135},[1287],{"type":41,"value":814},{"type":36,"tag":116,"props":1289,"children":1290},{"style":1238},[1291],{"type":41,"value":1292}," 200",{"type":36,"tag":116,"props":1294,"children":1295},{"style":135},[1296],{"type":41,"value":832},{"type":36,"tag":116,"props":1298,"children":1300},{"class":118,"line":1299},19,[1301,1305,1310,1314,1318],{"type":36,"tag":116,"props":1302,"children":1303},{"style":135},[1304],{"type":41,"value":1235},{"type":36,"tag":116,"props":1306,"children":1307},{"style":1238},[1308],{"type":41,"value":1309},"height",{"type":36,"tag":116,"props":1311,"children":1312},{"style":135},[1313],{"type":41,"value":148},{"type":36,"tag":116,"props":1315,"children":1316},{"style":135},[1317],{"type":41,"value":814},{"type":36,"tag":116,"props":1319,"children":1320},{"style":1238},[1321],{"type":41,"value":1322}," 150\n",{"type":36,"tag":116,"props":1324,"children":1326},{"class":118,"line":1325},20,[1327],{"type":36,"tag":116,"props":1328,"children":1329},{"style":135},[1330],{"type":41,"value":1331},"      },\n",{"type":36,"tag":116,"props":1333,"children":1335},{"class":118,"line":1334},21,[1336,1340,1345,1349,1353],{"type":36,"tag":116,"props":1337,"children":1338},{"style":135},[1339],{"type":41,"value":1020},{"type":36,"tag":116,"props":1341,"children":1342},{"style":123},[1343],{"type":41,"value":1344},"properties",{"type":36,"tag":116,"props":1346,"children":1347},{"style":135},[1348],{"type":41,"value":148},{"type":36,"tag":116,"props":1350,"children":1351},{"style":135},[1352],{"type":41,"value":814},{"type":36,"tag":116,"props":1354,"children":1355},{"style":135},[1356],{"type":41,"value":857},{"type":36,"tag":116,"props":1358,"children":1360},{"class":118,"line":1359},22,[1361,1365,1369,1373,1377,1381,1386,1390],{"type":36,"tag":116,"props":1362,"children":1363},{"style":135},[1364],{"type":41,"value":1235},{"type":36,"tag":116,"props":1366,"children":1367},{"style":1238},[1368],{"type":41,"value":1100},{"type":36,"tag":116,"props":1370,"children":1371},{"style":135},[1372],{"type":41,"value":148},{"type":36,"tag":116,"props":1374,"children":1375},{"style":135},[1376],{"type":41,"value":814},{"type":36,"tag":116,"props":1378,"children":1379},{"style":135},[1380],{"type":41,"value":138},{"type":36,"tag":116,"props":1382,"children":1383},{"style":129},[1384],{"type":41,"value":1385},"https:\u002F\u002Fexample.com\u002Fimages\u002Fmountain.jpg",{"type":36,"tag":116,"props":1387,"children":1388},{"style":135},[1389],{"type":41,"value":148},{"type":36,"tag":116,"props":1391,"children":1392},{"style":135},[1393],{"type":41,"value":832},{"type":36,"tag":116,"props":1395,"children":1397},{"class":118,"line":1396},23,[1398,1402,1407,1411,1415,1419,1424,1428],{"type":36,"tag":116,"props":1399,"children":1400},{"style":135},[1401],{"type":41,"value":1235},{"type":36,"tag":116,"props":1403,"children":1404},{"style":1238},[1405],{"type":41,"value":1406},"placeholder",{"type":36,"tag":116,"props":1408,"children":1409},{"style":135},[1410],{"type":41,"value":148},{"type":36,"tag":116,"props":1412,"children":1413},{"style":135},[1414],{"type":41,"value":814},{"type":36,"tag":116,"props":1416,"children":1417},{"style":135},[1418],{"type":41,"value":138},{"type":36,"tag":116,"props":1420,"children":1421},{"style":129},[1422],{"type":41,"value":1423},"https:\u002F\u002Fimgs.search.brave.com\u002Fplaceholder\u002F...",{"type":36,"tag":116,"props":1425,"children":1426},{"style":135},[1427],{"type":41,"value":148},{"type":36,"tag":116,"props":1429,"children":1430},{"style":135},[1431],{"type":41,"value":832},{"type":36,"tag":116,"props":1433,"children":1435},{"class":118,"line":1434},24,[1436,1440,1444,1448,1452,1457],{"type":36,"tag":116,"props":1437,"children":1438},{"style":135},[1439],{"type":41,"value":1235},{"type":36,"tag":116,"props":1441,"children":1442},{"style":1238},[1443],{"type":41,"value":1279},{"type":36,"tag":116,"props":1445,"children":1446},{"style":135},[1447],{"type":41,"value":148},{"type":36,"tag":116,"props":1449,"children":1450},{"style":135},[1451],{"type":41,"value":814},{"type":36,"tag":116,"props":1453,"children":1454},{"style":1238},[1455],{"type":41,"value":1456}," 1920",{"type":36,"tag":116,"props":1458,"children":1459},{"style":135},[1460],{"type":41,"value":832},{"type":36,"tag":116,"props":1462,"children":1464},{"class":118,"line":1463},25,[1465,1469,1473,1477,1481],{"type":36,"tag":116,"props":1466,"children":1467},{"style":135},[1468],{"type":41,"value":1235},{"type":36,"tag":116,"props":1470,"children":1471},{"style":1238},[1472],{"type":41,"value":1309},{"type":36,"tag":116,"props":1474,"children":1475},{"style":135},[1476],{"type":41,"value":148},{"type":36,"tag":116,"props":1478,"children":1479},{"style":135},[1480],{"type":41,"value":814},{"type":36,"tag":116,"props":1482,"children":1483},{"style":1238},[1484],{"type":41,"value":1485}," 1080\n",{"type":36,"tag":116,"props":1487,"children":1489},{"class":118,"line":1488},26,[1490],{"type":36,"tag":116,"props":1491,"children":1492},{"style":135},[1493],{"type":41,"value":1331},{"type":36,"tag":116,"props":1495,"children":1497},{"class":118,"line":1496},27,[1498,1502,1507,1511,1515],{"type":36,"tag":116,"props":1499,"children":1500},{"style":135},[1501],{"type":41,"value":1020},{"type":36,"tag":116,"props":1503,"children":1504},{"style":123},[1505],{"type":41,"value":1506},"meta_url",{"type":36,"tag":116,"props":1508,"children":1509},{"style":135},[1510],{"type":41,"value":148},{"type":36,"tag":116,"props":1512,"children":1513},{"style":135},[1514],{"type":41,"value":814},{"type":36,"tag":116,"props":1516,"children":1517},{"style":135},[1518],{"type":41,"value":857},{"type":36,"tag":116,"props":1520,"children":1522},{"class":118,"line":1521},28,[1523,1527,1532,1536,1540,1544,1549,1553],{"type":36,"tag":116,"props":1524,"children":1525},{"style":135},[1526],{"type":41,"value":1235},{"type":36,"tag":116,"props":1528,"children":1529},{"style":1238},[1530],{"type":41,"value":1531},"scheme",{"type":36,"tag":116,"props":1533,"children":1534},{"style":135},[1535],{"type":41,"value":148},{"type":36,"tag":116,"props":1537,"children":1538},{"style":135},[1539],{"type":41,"value":814},{"type":36,"tag":116,"props":1541,"children":1542},{"style":135},[1543],{"type":41,"value":138},{"type":36,"tag":116,"props":1545,"children":1546},{"style":129},[1547],{"type":41,"value":1548},"https",{"type":36,"tag":116,"props":1550,"children":1551},{"style":135},[1552],{"type":41,"value":148},{"type":36,"tag":116,"props":1554,"children":1555},{"style":135},[1556],{"type":41,"value":832},{"type":36,"tag":116,"props":1558,"children":1560},{"class":118,"line":1559},29,[1561,1565,1570,1574,1578,1582,1586,1590],{"type":36,"tag":116,"props":1562,"children":1563},{"style":135},[1564],{"type":41,"value":1235},{"type":36,"tag":116,"props":1566,"children":1567},{"style":1238},[1568],{"type":41,"value":1569},"netloc",{"type":36,"tag":116,"props":1571,"children":1572},{"style":135},[1573],{"type":41,"value":148},{"type":36,"tag":116,"props":1575,"children":1576},{"style":135},[1577],{"type":41,"value":814},{"type":36,"tag":116,"props":1579,"children":1580},{"style":135},[1581],{"type":41,"value":138},{"type":36,"tag":116,"props":1583,"children":1584},{"style":129},[1585],{"type":41,"value":1155},{"type":36,"tag":116,"props":1587,"children":1588},{"style":135},[1589],{"type":41,"value":148},{"type":36,"tag":116,"props":1591,"children":1592},{"style":135},[1593],{"type":41,"value":832},{"type":36,"tag":116,"props":1595,"children":1597},{"class":118,"line":1596},30,[1598,1602,1607,1611,1615,1619,1623,1627],{"type":36,"tag":116,"props":1599,"children":1600},{"style":135},[1601],{"type":41,"value":1235},{"type":36,"tag":116,"props":1603,"children":1604},{"style":1238},[1605],{"type":41,"value":1606},"hostname",{"type":36,"tag":116,"props":1608,"children":1609},{"style":135},[1610],{"type":41,"value":148},{"type":36,"tag":116,"props":1612,"children":1613},{"style":135},[1614],{"type":41,"value":814},{"type":36,"tag":116,"props":1616,"children":1617},{"style":135},[1618],{"type":41,"value":138},{"type":36,"tag":116,"props":1620,"children":1621},{"style":129},[1622],{"type":41,"value":1155},{"type":36,"tag":116,"props":1624,"children":1625},{"style":135},[1626],{"type":41,"value":148},{"type":36,"tag":116,"props":1628,"children":1629},{"style":135},[1630],{"type":41,"value":832},{"type":36,"tag":116,"props":1632,"children":1634},{"class":118,"line":1633},31,[1635,1639,1644,1648,1652,1656,1661,1665],{"type":36,"tag":116,"props":1636,"children":1637},{"style":135},[1638],{"type":41,"value":1235},{"type":36,"tag":116,"props":1640,"children":1641},{"style":1238},[1642],{"type":41,"value":1643},"favicon",{"type":36,"tag":116,"props":1645,"children":1646},{"style":135},[1647],{"type":41,"value":148},{"type":36,"tag":116,"props":1649,"children":1650},{"style":135},[1651],{"type":41,"value":814},{"type":36,"tag":116,"props":1653,"children":1654},{"style":135},[1655],{"type":41,"value":138},{"type":36,"tag":116,"props":1657,"children":1658},{"style":129},[1659],{"type":41,"value":1660},"https:\u002F\u002Fimgs.search.brave.com\u002Ffavicon\u002F...",{"type":36,"tag":116,"props":1662,"children":1663},{"style":135},[1664],{"type":41,"value":148},{"type":36,"tag":116,"props":1666,"children":1667},{"style":135},[1668],{"type":41,"value":832},{"type":36,"tag":116,"props":1670,"children":1672},{"class":118,"line":1671},32,[1673,1677,1682,1686,1690,1694,1699],{"type":36,"tag":116,"props":1674,"children":1675},{"style":135},[1676],{"type":41,"value":1235},{"type":36,"tag":116,"props":1678,"children":1679},{"style":1238},[1680],{"type":41,"value":1681},"path",{"type":36,"tag":116,"props":1683,"children":1684},{"style":135},[1685],{"type":41,"value":148},{"type":36,"tag":116,"props":1687,"children":1688},{"style":135},[1689],{"type":41,"value":814},{"type":36,"tag":116,"props":1691,"children":1692},{"style":135},[1693],{"type":41,"value":138},{"type":36,"tag":116,"props":1695,"children":1696},{"style":129},[1697],{"type":41,"value":1698},"\u002Fmountain-photo",{"type":36,"tag":116,"props":1700,"children":1701},{"style":135},[1702],{"type":41,"value":444},{"type":36,"tag":116,"props":1704,"children":1706},{"class":118,"line":1705},33,[1707],{"type":36,"tag":116,"props":1708,"children":1709},{"style":135},[1710],{"type":41,"value":1331},{"type":36,"tag":116,"props":1712,"children":1714},{"class":118,"line":1713},34,[1715,1719,1724,1728,1732,1736,1741],{"type":36,"tag":116,"props":1716,"children":1717},{"style":135},[1718],{"type":41,"value":1020},{"type":36,"tag":116,"props":1720,"children":1721},{"style":123},[1722],{"type":41,"value":1723},"confidence",{"type":36,"tag":116,"props":1725,"children":1726},{"style":135},[1727],{"type":41,"value":148},{"type":36,"tag":116,"props":1729,"children":1730},{"style":135},[1731],{"type":41,"value":814},{"type":36,"tag":116,"props":1733,"children":1734},{"style":135},[1735],{"type":41,"value":138},{"type":36,"tag":116,"props":1737,"children":1738},{"style":129},[1739],{"type":41,"value":1740},"high",{"type":36,"tag":116,"props":1742,"children":1743},{"style":135},[1744],{"type":41,"value":444},{"type":36,"tag":116,"props":1746,"children":1748},{"class":118,"line":1747},35,[1749],{"type":36,"tag":116,"props":1750,"children":1751},{"style":135},[1752],{"type":41,"value":1753},"    }\n",{"type":36,"tag":116,"props":1755,"children":1757},{"class":118,"line":1756},36,[1758],{"type":36,"tag":116,"props":1759,"children":1760},{"style":135},[1761],{"type":41,"value":1762},"  ],\n",{"type":36,"tag":116,"props":1764,"children":1766},{"class":118,"line":1765},37,[1767,1771,1776,1780,1784],{"type":36,"tag":116,"props":1768,"children":1769},{"style":135},[1770],{"type":41,"value":799},{"type":36,"tag":116,"props":1772,"children":1773},{"style":802},[1774],{"type":41,"value":1775},"extra",{"type":36,"tag":116,"props":1777,"children":1778},{"style":135},[1779],{"type":41,"value":148},{"type":36,"tag":116,"props":1781,"children":1782},{"style":135},[1783],{"type":41,"value":814},{"type":36,"tag":116,"props":1785,"children":1786},{"style":135},[1787],{"type":41,"value":857},{"type":36,"tag":116,"props":1789,"children":1791},{"class":118,"line":1790},38,[1792,1796,1801,1805,1809],{"type":36,"tag":116,"props":1793,"children":1794},{"style":135},[1795],{"type":41,"value":865},{"type":36,"tag":116,"props":1797,"children":1798},{"style":123},[1799],{"type":41,"value":1800},"might_be_offensive",{"type":36,"tag":116,"props":1802,"children":1803},{"style":135},[1804],{"type":41,"value":148},{"type":36,"tag":116,"props":1806,"children":1807},{"style":135},[1808],{"type":41,"value":814},{"type":36,"tag":116,"props":1810,"children":1811},{"style":135},[1812],{"type":41,"value":970},{"type":36,"tag":116,"props":1814,"children":1816},{"class":118,"line":1815},39,[1817],{"type":36,"tag":116,"props":1818,"children":1819},{"style":135},[1820],{"type":41,"value":1821},"  }\n",{"type":36,"tag":116,"props":1823,"children":1825},{"class":118,"line":1824},40,[1826],{"type":36,"tag":116,"props":1827,"children":1828},{"style":135},[1829],{"type":41,"value":1830},"}\n",{"type":36,"tag":90,"props":1832,"children":1834},{"id":1833},"response-fields",[1835],{"type":41,"value":1836},"Response Fields",{"type":36,"tag":492,"props":1838,"children":1839},{},[1840,1859],{"type":36,"tag":496,"props":1841,"children":1842},{},[1843],{"type":36,"tag":500,"props":1844,"children":1845},{},[1846,1851,1855],{"type":36,"tag":504,"props":1847,"children":1848},{},[1849],{"type":41,"value":1850},"Field",{"type":36,"tag":504,"props":1852,"children":1853},{},[1854],{"type":41,"value":513},{"type":36,"tag":504,"props":1856,"children":1857},{},[1858],{"type":41,"value":528},{"type":36,"tag":530,"props":1860,"children":1861},{},[1862,1888,1909,1930,1952,1973,1995,2021,2042,2063,2084,2105,2126,2148,2169,2190,2211,2232,2253,2274,2295,2316,2337,2358,2400],{"type":36,"tag":500,"props":1863,"children":1864},{},[1865,1873,1877],{"type":36,"tag":537,"props":1866,"children":1867},{},[1868],{"type":36,"tag":112,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":41,"value":805},{"type":36,"tag":537,"props":1874,"children":1875},{},[1876],{"type":41,"value":550},{"type":36,"tag":537,"props":1878,"children":1879},{},[1880,1882],{"type":41,"value":1881},"Always ",{"type":36,"tag":112,"props":1883,"children":1885},{"className":1884},[],[1886],{"type":41,"value":1887},"\"images\"",{"type":36,"tag":500,"props":1889,"children":1890},{},[1891,1900,1904],{"type":36,"tag":537,"props":1892,"children":1893},{},[1894],{"type":36,"tag":112,"props":1895,"children":1897},{"className":1896},[],[1898],{"type":41,"value":1899},"query.original",{"type":36,"tag":537,"props":1901,"children":1902},{},[1903],{"type":41,"value":550},{"type":36,"tag":537,"props":1905,"children":1906},{},[1907],{"type":41,"value":1908},"Original query",{"type":36,"tag":500,"props":1910,"children":1911},{},[1912,1920,1925],{"type":36,"tag":537,"props":1913,"children":1914},{},[1915],{"type":36,"tag":112,"props":1916,"children":1918},{"className":1917},[],[1919],{"type":41,"value":768},{"type":36,"tag":537,"props":1921,"children":1922},{},[1923],{"type":41,"value":1924},"string?",{"type":36,"tag":537,"props":1926,"children":1927},{},[1928],{"type":41,"value":1929},"Spellchecked query (null if no correction)",{"type":36,"tag":500,"props":1931,"children":1932},{},[1933,1942,1947],{"type":36,"tag":537,"props":1934,"children":1935},{},[1936],{"type":36,"tag":112,"props":1937,"children":1939},{"className":1938},[],[1940],{"type":41,"value":1941},"query.spellcheck_off",{"type":36,"tag":537,"props":1943,"children":1944},{},[1945],{"type":41,"value":1946},"bool?",{"type":36,"tag":537,"props":1948,"children":1949},{},[1950],{"type":41,"value":1951},"Whether spellcheck was disabled",{"type":36,"tag":500,"props":1953,"children":1954},{},[1955,1964,1968],{"type":36,"tag":537,"props":1956,"children":1957},{},[1958],{"type":36,"tag":112,"props":1959,"children":1961},{"className":1960},[],[1962],{"type":41,"value":1963},"query.show_strict_warning",{"type":36,"tag":537,"props":1965,"children":1966},{},[1967],{"type":41,"value":1946},{"type":36,"tag":537,"props":1969,"children":1970},{},[1971],{"type":41,"value":1972},"True if strict safesearch hid relevant results",{"type":36,"tag":500,"props":1974,"children":1975},{},[1976,1985,1990],{"type":36,"tag":537,"props":1977,"children":1978},{},[1979],{"type":36,"tag":112,"props":1980,"children":1982},{"className":1981},[],[1983],{"type":41,"value":1984},"results[]",{"type":36,"tag":537,"props":1986,"children":1987},{},[1988],{"type":41,"value":1989},"array",{"type":36,"tag":537,"props":1991,"children":1992},{},[1993],{"type":41,"value":1994},"List of image results",{"type":36,"tag":500,"props":1996,"children":1997},{},[1998,2007,2011],{"type":36,"tag":537,"props":1999,"children":2000},{},[2001],{"type":36,"tag":112,"props":2002,"children":2004},{"className":2003},[],[2005],{"type":41,"value":2006},"results[].type",{"type":36,"tag":537,"props":2008,"children":2009},{},[2010],{"type":41,"value":550},{"type":36,"tag":537,"props":2012,"children":2013},{},[2014,2015],{"type":41,"value":1881},{"type":36,"tag":112,"props":2016,"children":2018},{"className":2017},[],[2019],{"type":41,"value":2020},"\"image_result\"",{"type":36,"tag":500,"props":2022,"children":2023},{},[2024,2033,2037],{"type":36,"tag":537,"props":2025,"children":2026},{},[2027],{"type":36,"tag":112,"props":2028,"children":2030},{"className":2029},[],[2031],{"type":41,"value":2032},"results[].title",{"type":36,"tag":537,"props":2034,"children":2035},{},[2036],{"type":41,"value":1924},{"type":36,"tag":537,"props":2038,"children":2039},{},[2040],{"type":41,"value":2041},"Image title",{"type":36,"tag":500,"props":2043,"children":2044},{},[2045,2054,2058],{"type":36,"tag":537,"props":2046,"children":2047},{},[2048],{"type":36,"tag":112,"props":2049,"children":2051},{"className":2050},[],[2052],{"type":41,"value":2053},"results[].url",{"type":36,"tag":537,"props":2055,"children":2056},{},[2057],{"type":41,"value":1924},{"type":36,"tag":537,"props":2059,"children":2060},{},[2061],{"type":41,"value":2062},"Page URL where image was found",{"type":36,"tag":500,"props":2064,"children":2065},{},[2066,2075,2079],{"type":36,"tag":537,"props":2067,"children":2068},{},[2069],{"type":36,"tag":112,"props":2070,"children":2072},{"className":2071},[],[2073],{"type":41,"value":2074},"results[].source",{"type":36,"tag":537,"props":2076,"children":2077},{},[2078],{"type":41,"value":1924},{"type":36,"tag":537,"props":2080,"children":2081},{},[2082],{"type":41,"value":2083},"Source domain",{"type":36,"tag":500,"props":2085,"children":2086},{},[2087,2096,2100],{"type":36,"tag":537,"props":2088,"children":2089},{},[2090],{"type":36,"tag":112,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":41,"value":2095},"results[].page_fetched",{"type":36,"tag":537,"props":2097,"children":2098},{},[2099],{"type":41,"value":1924},{"type":36,"tag":537,"props":2101,"children":2102},{},[2103],{"type":41,"value":2104},"ISO datetime of last page crawl",{"type":36,"tag":500,"props":2106,"children":2107},{},[2108,2117,2121],{"type":36,"tag":537,"props":2109,"children":2110},{},[2111],{"type":36,"tag":112,"props":2112,"children":2114},{"className":2113},[],[2115],{"type":41,"value":2116},"results[].thumbnail.src",{"type":36,"tag":537,"props":2118,"children":2119},{},[2120],{"type":41,"value":1924},{"type":36,"tag":537,"props":2122,"children":2123},{},[2124],{"type":41,"value":2125},"Brave-proxied thumbnail URL (~500px width)",{"type":36,"tag":500,"props":2127,"children":2128},{},[2129,2138,2143],{"type":36,"tag":537,"props":2130,"children":2131},{},[2132],{"type":36,"tag":112,"props":2133,"children":2135},{"className":2134},[],[2136],{"type":41,"value":2137},"results[].thumbnail.width",{"type":36,"tag":537,"props":2139,"children":2140},{},[2141],{"type":41,"value":2142},"int?",{"type":36,"tag":537,"props":2144,"children":2145},{},[2146],{"type":41,"value":2147},"Thumbnail width",{"type":36,"tag":500,"props":2149,"children":2150},{},[2151,2160,2164],{"type":36,"tag":537,"props":2152,"children":2153},{},[2154],{"type":36,"tag":112,"props":2155,"children":2157},{"className":2156},[],[2158],{"type":41,"value":2159},"results[].thumbnail.height",{"type":36,"tag":537,"props":2161,"children":2162},{},[2163],{"type":41,"value":2142},{"type":36,"tag":537,"props":2165,"children":2166},{},[2167],{"type":41,"value":2168},"Thumbnail height",{"type":36,"tag":500,"props":2170,"children":2171},{},[2172,2181,2185],{"type":36,"tag":537,"props":2173,"children":2174},{},[2175],{"type":36,"tag":112,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":41,"value":2180},"results[].properties.url",{"type":36,"tag":537,"props":2182,"children":2183},{},[2184],{"type":41,"value":1924},{"type":36,"tag":537,"props":2186,"children":2187},{},[2188],{"type":41,"value":2189},"Original full-size image URL",{"type":36,"tag":500,"props":2191,"children":2192},{},[2193,2202,2206],{"type":36,"tag":537,"props":2194,"children":2195},{},[2196],{"type":36,"tag":112,"props":2197,"children":2199},{"className":2198},[],[2200],{"type":41,"value":2201},"results[].properties.placeholder",{"type":36,"tag":537,"props":2203,"children":2204},{},[2205],{"type":41,"value":1924},{"type":36,"tag":537,"props":2207,"children":2208},{},[2209],{"type":41,"value":2210},"Low-res placeholder URL (Brave-proxied)",{"type":36,"tag":500,"props":2212,"children":2213},{},[2214,2223,2227],{"type":36,"tag":537,"props":2215,"children":2216},{},[2217],{"type":36,"tag":112,"props":2218,"children":2220},{"className":2219},[],[2221],{"type":41,"value":2222},"results[].properties.width",{"type":36,"tag":537,"props":2224,"children":2225},{},[2226],{"type":41,"value":2142},{"type":36,"tag":537,"props":2228,"children":2229},{},[2230],{"type":41,"value":2231},"Original image width (may be null)",{"type":36,"tag":500,"props":2233,"children":2234},{},[2235,2244,2248],{"type":36,"tag":537,"props":2236,"children":2237},{},[2238],{"type":36,"tag":112,"props":2239,"children":2241},{"className":2240},[],[2242],{"type":41,"value":2243},"results[].properties.height",{"type":36,"tag":537,"props":2245,"children":2246},{},[2247],{"type":41,"value":2142},{"type":36,"tag":537,"props":2249,"children":2250},{},[2251],{"type":41,"value":2252},"Original image height (may be null)",{"type":36,"tag":500,"props":2254,"children":2255},{},[2256,2265,2269],{"type":36,"tag":537,"props":2257,"children":2258},{},[2259],{"type":36,"tag":112,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":41,"value":2264},"results[].meta_url.scheme",{"type":36,"tag":537,"props":2266,"children":2267},{},[2268],{"type":41,"value":1924},{"type":36,"tag":537,"props":2270,"children":2271},{},[2272],{"type":41,"value":2273},"URL protocol scheme",{"type":36,"tag":500,"props":2275,"children":2276},{},[2277,2286,2290],{"type":36,"tag":537,"props":2278,"children":2279},{},[2280],{"type":36,"tag":112,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":41,"value":2285},"results[].meta_url.netloc",{"type":36,"tag":537,"props":2287,"children":2288},{},[2289],{"type":41,"value":1924},{"type":36,"tag":537,"props":2291,"children":2292},{},[2293],{"type":41,"value":2294},"Network location",{"type":36,"tag":500,"props":2296,"children":2297},{},[2298,2307,2311],{"type":36,"tag":537,"props":2299,"children":2300},{},[2301],{"type":36,"tag":112,"props":2302,"children":2304},{"className":2303},[],[2305],{"type":41,"value":2306},"results[].meta_url.hostname",{"type":36,"tag":537,"props":2308,"children":2309},{},[2310],{"type":41,"value":1924},{"type":36,"tag":537,"props":2312,"children":2313},{},[2314],{"type":41,"value":2315},"Lowercased domain",{"type":36,"tag":500,"props":2317,"children":2318},{},[2319,2328,2332],{"type":36,"tag":537,"props":2320,"children":2321},{},[2322],{"type":36,"tag":112,"props":2323,"children":2325},{"className":2324},[],[2326],{"type":41,"value":2327},"results[].meta_url.favicon",{"type":36,"tag":537,"props":2329,"children":2330},{},[2331],{"type":41,"value":1924},{"type":36,"tag":537,"props":2333,"children":2334},{},[2335],{"type":41,"value":2336},"Favicon URL",{"type":36,"tag":500,"props":2338,"children":2339},{},[2340,2349,2353],{"type":36,"tag":537,"props":2341,"children":2342},{},[2343],{"type":36,"tag":112,"props":2344,"children":2346},{"className":2345},[],[2347],{"type":41,"value":2348},"results[].meta_url.path",{"type":36,"tag":537,"props":2350,"children":2351},{},[2352],{"type":41,"value":1924},{"type":36,"tag":537,"props":2354,"children":2355},{},[2356],{"type":41,"value":2357},"URL path",{"type":36,"tag":500,"props":2359,"children":2360},{},[2361,2370,2374],{"type":36,"tag":537,"props":2362,"children":2363},{},[2364],{"type":36,"tag":112,"props":2365,"children":2367},{"className":2366},[],[2368],{"type":41,"value":2369},"results[].confidence",{"type":36,"tag":537,"props":2371,"children":2372},{},[2373],{"type":41,"value":1924},{"type":36,"tag":537,"props":2375,"children":2376},{},[2377,2379,2385,2387,2393,2395],{"type":41,"value":2378},"Relevance: ",{"type":36,"tag":112,"props":2380,"children":2382},{"className":2381},[],[2383],{"type":41,"value":2384},"low",{"type":41,"value":2386},", ",{"type":36,"tag":112,"props":2388,"children":2390},{"className":2389},[],[2391],{"type":41,"value":2392},"medium",{"type":41,"value":2394},", or ",{"type":36,"tag":112,"props":2396,"children":2398},{"className":2397},[],[2399],{"type":41,"value":1740},{"type":36,"tag":500,"props":2401,"children":2402},{},[2403,2412,2416],{"type":36,"tag":537,"props":2404,"children":2405},{},[2406],{"type":36,"tag":112,"props":2407,"children":2409},{"className":2408},[],[2410],{"type":41,"value":2411},"extra.might_be_offensive",{"type":36,"tag":537,"props":2413,"children":2414},{},[2415],{"type":41,"value":748},{"type":36,"tag":537,"props":2417,"children":2418},{},[2419],{"type":41,"value":2420},"Whether results may contain offensive content",{"type":36,"tag":90,"props":2422,"children":2424},{"id":2423},"use-cases",[2425],{"type":41,"value":2426},"Use Cases",{"type":36,"tag":2428,"props":2429,"children":2430},"ul",{},[2431,2458,2482,2499],{"type":36,"tag":2432,"props":2433,"children":2434},"li",{},[2435,2440,2442,2448,2450,2456],{"type":36,"tag":52,"props":2436,"children":2437},{},[2438],{"type":41,"value":2439},"Visual content discovery",{"type":41,"value":2441},": Build image galleries, mood boards, or visual research tools. Use ",{"type":36,"tag":112,"props":2443,"children":2445},{"className":2444},[],[2446],{"type":41,"value":2447},"count=200",{"type":41,"value":2449}," for comprehensive coverage. Prefer over ",{"type":36,"tag":112,"props":2451,"children":2453},{"className":2452},[],[2454],{"type":41,"value":2455},"web-search",{"type":41,"value":2457}," when you need image-specific metadata (dimensions, thumbnails).",{"type":36,"tag":2432,"props":2459,"children":2460},{},[2461,2466,2468,2473,2475,2480],{"type":36,"tag":52,"props":2462,"children":2463},{},[2464],{"type":41,"value":2465},"Content enrichment",{"type":41,"value":2467},": Add relevant images to articles or generated content. Use ",{"type":36,"tag":112,"props":2469,"children":2471},{"className":2470},[],[2472],{"type":41,"value":580},{"type":41,"value":2474}," and ",{"type":36,"tag":112,"props":2476,"children":2478},{"className":2477},[],[2479],{"type":41,"value":623},{"type":41,"value":2481}," to target your audience's locale.",{"type":36,"tag":2432,"props":2483,"children":2484},{},[2485,2490,2492,2497],{"type":36,"tag":52,"props":2486,"children":2487},{},[2488],{"type":41,"value":2489},"Safe image retrieval",{"type":41,"value":2491},": Default ",{"type":36,"tag":112,"props":2493,"children":2495},{"className":2494},[],[2496],{"type":41,"value":439},{"type":41,"value":2498}," ensures family-friendly results out of the box. Only two modes (off\u002Fstrict) — no moderate option, unlike web\u002Fvideo\u002Fnews search.",{"type":36,"tag":2432,"props":2500,"children":2501},{},[2502,2507],{"type":36,"tag":52,"props":2503,"children":2504},{},[2505],{"type":41,"value":2506},"High-volume batch retrieval",{"type":41,"value":2508},": Up to 200 images per request (vs 20 for web, 50 for videos\u002Fnews). Ideal for bulk image sourcing or visual analysis pipelines.",{"type":36,"tag":90,"props":2510,"children":2512},{"id":2511},"notes",[2513],{"type":41,"value":2514},"Notes",{"type":36,"tag":2428,"props":2516,"children":2517},{},[2518,2535,2545,2563,2580],{"type":36,"tag":2432,"props":2519,"children":2520},{},[2521,2526,2528,2533],{"type":36,"tag":52,"props":2522,"children":2523},{},[2524],{"type":41,"value":2525},"SafeSearch",{"type":41,"value":2527},": Defaults to ",{"type":36,"tag":112,"props":2529,"children":2531},{"className":2530},[],[2532],{"type":41,"value":705},{"type":41,"value":2534}," for images (stricter than web search)",{"type":36,"tag":2432,"props":2536,"children":2537},{},[2538,2543],{"type":36,"tag":52,"props":2539,"children":2540},{},[2541],{"type":41,"value":2542},"High volume",{"type":41,"value":2544},": Can return up to 200 results per request",{"type":36,"tag":2432,"props":2546,"children":2547},{},[2548,2553,2555,2561],{"type":36,"tag":52,"props":2549,"children":2550},{},[2551],{"type":41,"value":2552},"Thumbnails",{"type":41,"value":2554},": Brave-proxied for user privacy (500px width). Use ",{"type":36,"tag":112,"props":2556,"children":2558},{"className":2557},[],[2559],{"type":41,"value":2560},"properties.url",{"type":41,"value":2562}," for original full-resolution image.",{"type":36,"tag":2432,"props":2564,"children":2565},{},[2566,2571,2572,2578],{"type":36,"tag":52,"props":2567,"children":2568},{},[2569],{"type":41,"value":2570},"Dimensions",{"type":41,"value":476},{"type":36,"tag":112,"props":2573,"children":2575},{"className":2574},[],[2576],{"type":41,"value":2577},"properties.width\u002Fheight",{"type":41,"value":2579}," may be missing for some images",{"type":36,"tag":2432,"props":2581,"children":2582},{},[2583,2588,2589,2595],{"type":36,"tag":52,"props":2584,"children":2585},{},[2586],{"type":41,"value":2587},"Placeholder",{"type":41,"value":476},{"type":36,"tag":112,"props":2590,"children":2592},{"className":2591},[],[2593],{"type":41,"value":2594},"properties.placeholder",{"type":41,"value":2596}," is a low-res URL (not inline base64) useful for progressive loading UX",{"type":36,"tag":2598,"props":2599,"children":2600},"style",{},[2601],{"type":41,"value":2602},"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":2604,"total":1052},[2605,2617,2633,2645,2650,2660,2672,2682,2691,2699,2708,2720],{"slug":2606,"name":2606,"fn":2607,"description":2608,"org":2609,"tags":2610,"stars":19,"repoUrl":20,"updatedAt":2616},"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},[2611,2612,2615],{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},"LLM","llm",{"name":17,"slug":18,"type":15},"2026-04-06T18:05:53.15861",{"slug":2618,"name":2618,"fn":2619,"description":2620,"org":2621,"tags":2622,"stars":19,"repoUrl":20,"updatedAt":2632},"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},[2623,2626,2627,2628,2631],{"name":2624,"slug":2625,"type":15},"AI Context","ai-context",{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},{"name":2629,"slug":2630,"type":15},"Research","research",{"name":17,"slug":18,"type":15},"2026-04-08T04:55:31.217318",{"slug":2634,"name":2634,"fn":2635,"description":2636,"org":2637,"tags":2638,"stars":19,"repoUrl":20,"updatedAt":2644},"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},[2639,2640,2643],{"name":13,"slug":14,"type":15},{"name":2641,"slug":2642,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:05.777322",{"slug":4,"name":4,"fn":5,"description":6,"org":2646,"tags":2647,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2648,2649],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":2651,"name":2651,"fn":2652,"description":2653,"org":2654,"tags":2655,"stars":19,"repoUrl":20,"updatedAt":2659},"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},[2656,2657,2658],{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:58.243978",{"slug":2661,"name":2661,"fn":2662,"description":2663,"org":2664,"tags":2665,"stars":19,"repoUrl":20,"updatedAt":2671},"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},[2666,2667,2670],{"name":13,"slug":14,"type":15},{"name":2668,"slug":2669,"type":15},"Local Search","local-search",{"name":17,"slug":18,"type":15},"2026-04-06T18:06:03.239884",{"slug":2673,"name":2673,"fn":2674,"description":2675,"org":2676,"tags":2677,"stars":19,"repoUrl":20,"updatedAt":2681},"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},[2678,2679,2680],{"name":13,"slug":14,"type":15},{"name":2668,"slug":2669,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:55.722361",{"slug":2683,"name":2683,"fn":2684,"description":2685,"org":2686,"tags":2687,"stars":19,"repoUrl":20,"updatedAt":2690},"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},[2688,2689],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:01.995483",{"slug":743,"name":743,"fn":2692,"description":2693,"org":2694,"tags":2695,"stars":19,"repoUrl":20,"updatedAt":2698},"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},[2696,2697],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:59.499925",{"slug":2700,"name":2700,"fn":2701,"description":2702,"org":2703,"tags":2704,"stars":19,"repoUrl":20,"updatedAt":2707},"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},[2705,2706],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:05:54.426217",{"slug":2709,"name":2709,"fn":2710,"description":2711,"org":2712,"tags":2713,"stars":19,"repoUrl":20,"updatedAt":2719},"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},[2714,2715,2716],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":2717,"slug":2718,"type":15},"Video","video","2026-04-06T18:05:56.996883",{"slug":2455,"name":2455,"fn":2721,"description":2722,"org":2723,"tags":2724,"stars":19,"repoUrl":20,"updatedAt":2727},"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},[2725,2726],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:06:00.748827",{"items":2729,"total":1052},[2730,2736,2744,2750,2755,2761,2767],{"slug":2606,"name":2606,"fn":2607,"description":2608,"org":2731,"tags":2732,"stars":19,"repoUrl":20,"updatedAt":2616},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2733,2734,2735],{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},{"name":17,"slug":18,"type":15},{"slug":2618,"name":2618,"fn":2619,"description":2620,"org":2737,"tags":2738,"stars":19,"repoUrl":20,"updatedAt":2632},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2739,2740,2741,2742,2743],{"name":2624,"slug":2625,"type":15},{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},{"name":2629,"slug":2630,"type":15},{"name":17,"slug":18,"type":15},{"slug":2634,"name":2634,"fn":2635,"description":2636,"org":2745,"tags":2746,"stars":19,"repoUrl":20,"updatedAt":2644},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2747,2748,2749],{"name":13,"slug":14,"type":15},{"name":2641,"slug":2642,"type":15},{"name":17,"slug":18,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":2751,"tags":2752,"stars":19,"repoUrl":20,"updatedAt":21},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2753,2754],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":2651,"name":2651,"fn":2652,"description":2653,"org":2756,"tags":2757,"stars":19,"repoUrl":20,"updatedAt":2659},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2758,2759,2760],{"name":13,"slug":14,"type":15},{"name":2613,"slug":2614,"type":15},{"name":17,"slug":18,"type":15},{"slug":2661,"name":2661,"fn":2662,"description":2663,"org":2762,"tags":2763,"stars":19,"repoUrl":20,"updatedAt":2671},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2764,2765,2766],{"name":13,"slug":14,"type":15},{"name":2668,"slug":2669,"type":15},{"name":17,"slug":18,"type":15},{"slug":2673,"name":2673,"fn":2674,"description":2675,"org":2768,"tags":2769,"stars":19,"repoUrl":20,"updatedAt":2681},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2770,2771,2772],{"name":13,"slug":14,"type":15},{"name":2668,"slug":2669,"type":15},{"name":17,"slug":18,"type":15}]