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