brave/brave-search-skills · Official

videos-search

USE FOR video search. Returns videos with title, URL, thumbnail, duration, view count, creator. Supports freshness filters, SafeSearch, pagination.

Hot #3153 First seen Feb 14, 2026

Installation

$ npx skills add brave/brave-search-skills --skill videos-search

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from brave/brave-search-skills · top by installs.

npx skills add brave/brave-search-skills

Browse all from brave/brave-search-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 174
License LICENSE
Default branch main
Open issues 3
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 7,268 B
  • docs SUMMARY.md 3,692 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 985 installs

SKILL.md

Videos Search

Requires API Key: Get one at https://api.search.brave.com

Plan: Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe

Quick Start (cURL)

Basic Search

curl -s "https://api.search.brave.com/res/v1/videos/search?q=python+tutorial" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}"

With Parameters

curl -s "https://api.search.brave.com/res/v1/videos/search" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}" \
  -G \
  --data-urlencode "q=machine learning explained" \
  --data-urlencode "country=US" \
  --data-urlencode "search_lang=en" \
  --data-urlencode "count=20" \
  --data-urlencode "freshness=pm"

Endpoint

GET https://api.search.brave.com/res/v1/videos/search
POST https://api.search.brave.com/res/v1/videos/search

Authentication: X-Subscription-Token: <API_KEY> header

Note: Both GET and POST methods are supported. POST is useful for long queries.

Parameters

| Parameter | Type | Required | Default | Description | |--|--|--|--|--| | q | string | Yes | - | Search query (1-400 chars, max 50 words) | | country | string | No | US | Search country (2-letter country code or ALL) | | searchlang | string | No | en | Language preference (2+ char language code) | | uilang | string | No | en-US | UI language (e.g., "en-US") | | count | int | No | 20 | Number of results (1-50) | | offset | int | No | 0 | Page offset (0-9) | | safesearch | string | No | moderate | Adult content filter (off/moderate/strict) | | freshness | string | No | - | Time filter (pd/pw/pm/py or date range) | | spellcheck | bool | No | true | Auto-correct query | | operators | bool | No | true | Apply search operators | | includefetchmetadata | bool | No | false | Include fetchedcontenttimestamp in results |

Freshness Values

| Value | Description | |--|--| | pd | Past day (24 hours) | | pw | Past week (7 days) | | pm | Past month (31 days) | | py | Past year (365 days) | | YYYY-MM-DDtoYYYY-MM-DD | Custom date range |

Response Format

{
  "type": "videos",
  "query": {
    "original": "python tutorial",
    "spellcheck_off": false
  },
  "extra": {
    "might_be_offensive": false
  },
  "results": [
    {
      "type": "video_result",
      "title": "Python Tutorial for Beginners",
      "url": "https://www.youtube.com/watch?v=rfscVS0vtbw",
      "description": "Learn Python programming from scratch...",
      "age": "February 12, 2025",
      "page_age": "2025-02-12T00:00:00",
      "page_fetched": "2025-02-12T15:00:00Z",
      "thumbnail": {
        "src": "https://imgs.search.brave.com/...",
        "original": "https://i.ytimg.com/vi/rfscVS0vtbw/hqdefault.jpg"
      },
      "video": {
        "duration": "03:45:00",
        "views": 1523000,
        "creator": "freeCodeCamp",
        "publisher": "YouTube",
        "requires_subscription": false,
        "tags": ["python", "programming"],
        "author": {
          "name": "freeCodeCamp.org",
          "url": "https://www.youtube.com/@freecodecamp"
        }
      },
      "meta_url": {
        "scheme": "https",
        "netloc": "youtube.com",
        "hostname": "www.youtube.com",
        "favicon": "https://imgs.search.brave.com/...",
        "path": "\u203a watch"
      }
    }
  ]
}

Response Fields

| Field | Type | Description | |--|--|--| | type | string | Always "videos" | | query.original | string | The original search query | | query.altered | string? | Spellcheck-corrected query (if changed) | | query.cleaned | string? | Cleaned/normalized query | | query.spellcheckoff | bool? | Whether spellcheck was disabled | | query.showstrictwarning | bool? | True if strict safesearch blocked adult results | | query.searchoperators | object? | Applied search operators (applied, cleanedquery, sites) | | extra.mightbeoffensive | bool | Whether results may contain offensive content | | results[].type | string | Always "videoresult" | | results[].url | string | Source URL of the video | | results[].title | string | Video title | | results[].description | string? | Video description | | results[].age | string? | Human-readable age (e.g. "6 months ago") or absolute date (e.g. "February 12, 2025") | | results[].pageage | string? | Page age from source (ISO datetime) | | results[].pagefetched | string? | ISO datetime when page was last fetched (e.g. 2025-02-12T15:00:00Z) | | results[].fetchedcontenttimestamp | int? | Fetch timestamp (only with includefetchmetadata=true) | | results[].video.duration | string? | Time string (variable format) | | results[].video.views | int? | View count as integer | | results[].video.creator | string? | Channel/creator name | | results[].video.publisher | string? | Platform (YouTube, Vimeo, etc.) | | results[].video.requiressubscription | bool? | Whether video requires a subscription | | results[].video.tags | list[str]? | Tags relevant to the video | | results[].video.author | object? | Author profile | | results[].video.author.name | string | Author name | | results[].video.author.url | string | Author profile URL | | results[].video.author.longname | string? | Extended author name | | results[].video.author.img | string? | Author profile image URL | | results[].thumbnail.src | string | Served thumbnail URL | | results[].thumbnail.original | string? | Original thumbnail URL | | results[].metaurl.scheme | string? | URL protocol scheme | | results[].metaurl.netloc | string? | Network location | | results[].metaurl.hostname | string? | Lowercased domain name | | results[].metaurl.favicon | string? | Favicon URL | | results[].meta_url.path | string? | URL path |

Search Operators

Use search operators to refine results:

  • site:youtube.com - Limit to specific site
  • "exact phrase" - Match exact phrase
  • -exclude - Exclude term

Set operators=false to disable operator parsing.

Use Cases

  • 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.
  • Fresh video monitoring: Use freshness=pd or freshness=pw to track newly published video content on trending topics or specific subjects.
  • Platform-specific search: Use site:youtube.com or site:vimeo.com operators to target specific video platforms.
  • Video metadata extraction: Get view counts, durations, creator info, and tags for analytics, content curation, or recommendation systems.

Notes

  • Pagination: Use offset (0-9) with count for more results
  • Max results: Up to 50 results per request