skills.vishalvoidskills/vishalvoid
Technical & DevelopmentBeginner

images-search

Search for images, thumbnails, and metadata.

Developer Setup

Setup & Installation

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

Overview

What This Skill Does

Queries the Brave Search index to return ranked image results with dimensions, source page, and thumbnail links.

Application

When to use this Skill

Documentation

Show Skills.md file

Images 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/images/search?q=mountain+landscape" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}"

With Parameters

curl -s "https://api.search.brave.com/res/v1/images/search" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}" \
  -G \
  --data-urlencode "q=northern lights photography" \
  --data-urlencode "country=US" \
  --data-urlencode "search_lang=en" \
  --data-urlencode "count=20" \
  --data-urlencode "safesearch=strict"
Lines 1 - 27 of 136

Recommendations

Explore other random skills

All skillsMy patterns