skills.vishalvoidskills/vishalvoid
Technical & DevelopmentBeginner

videos-search

Search for videos, durations, and creators.

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/brave/brave-search-skills --skill videos-search

Overview

What This Skill Does

Queries Brave's index for video results, returning player links, video durations, views, publisher details, and thumbnails.

Application

When to use this Skill

Documentation

Show Skills.md file

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"
Lines 1 - 27 of 173

Recommendations

Explore other random skills

All skillsMy patterns