/images-search
USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.
$ npx -y skills add brave/brave-search-skills --skill images-search --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/images-search
Context preview
The summary Claude sees to decide when to auto-load this skill.
USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.
SKILL.md
images-search.SKILL.mdname: images-search
description: USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.
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"Endpoint
GET https://api.search.brave.com/res/v1/images/search
**Authentication**: `X-Subscription-Token: <API_KEY>` header
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`) | | `search_lang` | string | No | `en` | 2+ char language code | | `count` | int | No | 50 | Results to return (1-200) | | `safesearch` | string | No | `strict` | `off` or `strict` (no `moderate` for images) | | `spellcheck` | bool | No | true | Auto-correct query; corrected query in `query.altered` |
Response Format
{
"type": "images",
"query": {
"original": "mountain landscape",
"altered": null,
"spellcheck_off": false,
"show_strict_warning": false
},
"results": [
{
"type": "image_result",
"title": "Beautiful Mountain Landscape",
"url": "https://example.com/mountain-photo",
"source": "example.com",
"page_fetched": "2025-09-15T10:30:00Z",
"thumbnail": {
"src": "https://imgs.search.brave.com/...",
"width": 200,
"height": 150
},
"properties": {
"url": "https://example.com/images/mountain.jpg",
"placeholder": "https://imgs.search.brave.com/placeholder/...",
"width": 1920,
"height": 1080
},
"meta_url": {
"scheme": "https",
"netloc": "example.com",
"hostname": "example.com",
"favicon": "https://imgs.search.brave.com/favicon/...",
"path": "/mountain-photo"
},
"confidence": "high"
}
],
"extra": {
"might_be_offensive": false
}
}Response Fields
| Field | Type | Description | |--|--|--| | `type` | string | Always `"images"` | | `query.original` | string | Original query | | `query.altered` | string? | Spellchecked query (null if no correction) | | `query.spellcheck_off` | bool? | Whether spellcheck was disabled | | `query.show_strict_warning` | bool? | True if strict safesearch hid relevant results | | `results[]` | array | List of image results | | `results[].type` | string | Always `"image_result"` | | `results[].title` | string? | Image title | | `results[].url` | string? | Page URL where image was found | | `results[].source` | string? | Source domain | | `results[].page_fetched` | string? | ISO datetime of last page crawl | | `results[].thumbnail.src` | string? | Brave-proxied thumbnail URL (~500px width) | | `results[].thumbnail.width` | int? | Thumbnail width | | `results[].thumbnail.height` | int? | Thumbnail height | | `results[].properties.url` | string? | Original full-size image URL | | `results[].properties.placeholder` | string? | Low-res placeholder URL (Brave-proxied) | | `results[].properties.width` | int? | Original image width (may be null) | | `results[].properties.height` | int? | Original image height (may be null) | | `results[].meta_url.scheme` | string? | URL protocol scheme | | `results[].meta_url.netloc` | string? | Network location | | `results[].meta_url.hostname` | string? | Lowercased domain | | `results[].meta_url.favicon` | string? | Favicon URL | | `results[].meta_url.path` | string? | URL path | | `results[].confidence` | string? | Relevance: `low`, `medium`, or `high` | | `extra.might_be_offensive` | bool | Whether results may contain offensive content |
Use Cases
- **Visual content discovery**: Build image galleries, mood boards, or visual research tools. Use `count=200` for comprehensive coverage. Prefer over `web-search` when you need image-specific metadata (dimensions, thumbnails).
- **Content enrichment**: Add relevant images to articles or generated content. Use `country` and `search_lang` to target your audience's locale.
- **Safe image retrieval**: Default `safesearch=strict` ensures family-friendly results out of the box. Only two modes (off/strict) — no moderate option, unlike web/video/news search.
- **High-volume batch retrieval**: Up to 200 images per request (vs 20 for web, 50 for videos/news). Ideal for bulk image sourcing or visual analysis pipelines.
Notes
- **SafeSearch**: Defaults to `strict` for images (stricter than web search)
- **High volume**: Can return up to 200 results per request
- **Thumbnails**: Brave-proxied for user privacy (500px width). Use `properties.url` for original full-resolution image.
- **Dimensions**: `properties.width/height` may be missing for some images
- **Placeholder**: `properties.placeholder` is a low-res URL (not inline base64) useful for progressive loading UX
Read more
name: images-search description: USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.
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"Endpoint
GET https://api.search.brave.com/res/v1/images/search
**Authentication**: `X-Subscription-Token: <API_KEY>` header
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`) | | `search_lang` | string | No | `en` | 2+ char language code | | `count` | int | No | 50 | Results to return (1-200) | | `safesearch` | string | No | `strict` | `off` or `strict` (no `moderate` for images) | | `spellcheck` | bool | No | true | Auto-correct query; corrected query in `query.altered` |
Response Format
{
"type": "images",
"query": {
"original": "mountain landscape",
"altered": null,
"spellcheck_off": false,
"show_strict_warning": false
},
"results": [
{
"type": "image_result",
"title": "Beautiful Mountain Landscape",
"url": "https://example.com/mountain-photo",
"source": "example.com",
"page_fetched": "2025-09-15T10:30:00Z",
"thumbnail": {
"src": "https://imgs.search.brave.com/...",
"width": 200,
"height": 150
},
"properties": {
"url": "https://example.com/images/mountain.jpg",
"placeholder": "https://imgs.search.brave.com/placeholder/...",
"width": 1920,
"height": 1080
},
"meta_url": {
"scheme": "https",
"netloc": "example.com",
"hostname": "example.com",
"favicon": "https://imgs.search.brave.com/favicon/...",
"path": "/mountain-photo"
},
"confidence": "high"
}
],
"extra": {
"might_be_offensive": false
}
}Response Fields
| Field | Type | Description | |--|--|--| | `type` | string | Always `"images"` | | `query.original` | string | Original query | | `query.altered` | string? | Spellchecked query (null if no correction) | | `query.spellcheck_off` | bool? | Whether spellcheck was disabled | | `query.show_strict_warning` | bool? | True if strict safesearch hid relevant results | | `results[]` | array | List of image results | | `results[].type` | string | Always `"image_result"` | | `results[].title` | string? | Image title | | `results[].url` | string? | Page URL where image was found | | `results[].source` | string? | Source domain | | `results[].page_fetched` | string? | ISO datetime of last page crawl | | `results[].thumbnail.src` | string? | Brave-proxied thumbnail URL (~500px width) | | `results[].thumbnail.width` | int? | Thumbnail width | | `results[].thumbnail.height` | int? | Thumbnail height | | `results[].properties.url` | string? | Original full-size image URL | | `results[].properties.placeholder` | string? | Low-res placeholder URL (Brave-proxied) | | `results[].properties.width` | int? | Original image width (may be null) | | `results[].properties.height` | int? | Original image height (may be null) | | `results[].meta_url.scheme` | string? | URL protocol scheme | | `results[].meta_url.netloc` | string? | Network location | | `results[].meta_url.hostname` | string? | Lowercased domain | | `results[].meta_url.favicon` | string? | Favicon URL | | `results[].meta_url.path` | string? | URL path | | `results[].confidence` | string? | Relevance: `low`, `medium`, or `high` | | `extra.might_be_offensive` | bool | Whether results may contain offensive content |
Use Cases
- **Visual content discovery**: Build image galleries, mood boards, or visual research tools. Use `count=200` for comprehensive coverage. Prefer over `web-search` when you need image-specific metadata (dimensions, thumbnails).
- **Content enrichment**: Add relevant images to articles or generated content. Use `country` and `search_lang` to target your audience's locale.
- **Safe image retrieval**: Default `safesearch=strict` ensures family-friendly results out of the box. Only two modes (off/strict) — no moderate option, unlike web/video/news search.
- **High-volume batch retrieval**: Up to 200 images per request (vs 20 for web, 50 for videos/news). Ideal for bulk image sourcing or visual analysis pipelines.
Notes
- **SafeSearch**: Defaults to `strict` for images (stricter than web search)
- **High volume**: Can return up to 200 results per request
- **Thumbnails**: Brave-proxied for user privacy (500px width). Use `properties.url` for original full-resolution image.
- **Dimensions**: `properties.width/height` may be missing for some images
- **Placeholder**: `properties.placeholder` is a low-res URL (not inline base64) useful for progressive loading UX
Official skills for using Brave Search API with AI coding agents. Works with Claude Code, Cursor, GitHub Copilot, Codex, Gemini CLI, VS Code, Windsurf, OpenClaw, Cline, Goose, Amp, Roo Code, and many other agents that support the Agent Skills standard.
Other skills on brave-search-skills.
- /answers
USE FOR AI-grounded answers via OpenAI-compatible /chat/completions. Two modes: single-search (fast) or deep research (enable_research=true, thorough multi-search). Streaming/blocking. Citations.
Open skill - /bx
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
Open skill - /llm-context
USE FOR RAG/LLM grounding. Returns pre-extracted web content (text, tables, code) optimized for LLMs. GET + POST. Adjust max_tokens/count based on complexity. Supports Goggles, local/POI. For AI answers use answers. Recommended for anyone building AI/agentic applications.
Open skill - /local-descriptions
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.
Open skill - /local-pois
USE FOR getting local business/POI details. Requires POI IDs obtained from web-search (with result_filter=locations). Returns full business information including ratings, hours, contact info. Max 20 IDs.
Open skill - /news-search
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.
Open skill

