images-search
Original:🇺🇸 English
Translated
USE FOR image search. Returns images with title, source URL, thumbnail. Supports SafeSearch filter. Up to 200 results.
3installs
Added on
NPX Install
npx skill4agent add brave/brave-search-skills images-searchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Images Search
Requires API Key: Get one at https://api.search.brave.comPlan: Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe
Quick Start (cURL)
Basic Search
bash
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
bash
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
http
GET https://api.search.brave.com/res/v1/images/searchAuthentication: header
X-Subscription-Token: <API_KEY>Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Search query (1-400 chars, max 50 words) |
| string | No | | Search country (2-letter country code or |
| string | No | | 2+ char language code |
| int | No | 50 | Results to return (1-200) |
| string | No | | |
| bool | No | true | Auto-correct query; corrected query in |
Response Format
json
{
"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 |
|---|---|---|
| string | Always |
| string | Original query |
| string? | Spellchecked query (null if no correction) |
| bool? | Whether spellcheck was disabled |
| bool? | True if strict safesearch hid relevant results |
| array | List of image results |
| string | Always |
| string? | Image title |
| string? | Page URL where image was found |
| string? | Source domain |
| string? | ISO datetime of last page crawl |
| string? | Brave-proxied thumbnail URL (~500px width) |
| int? | Thumbnail width |
| int? | Thumbnail height |
| string? | Original full-size image URL |
| string? | Low-res placeholder URL (Brave-proxied) |
| int? | Original image width (may be null) |
| int? | Original image height (may be null) |
| string? | URL protocol scheme |
| string? | Network location |
| string? | Lowercased domain |
| string? | Favicon URL |
| string? | URL path |
| string? | Relevance: |
| bool | Whether results may contain offensive content |
Use Cases
- Visual content discovery: Build image galleries, mood boards, or visual research tools. Use for comprehensive coverage. Prefer over
count=200when you need image-specific metadata (dimensions, thumbnails).web-search - Content enrichment: Add relevant images to articles or generated content. Use and
countryto target your audience's locale.search_lang - Safe image retrieval: Default ensures family-friendly results out of the box. Only two modes (off/strict) — no moderate option, unlike web/video/news search.
safesearch=strict - 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 for images (stricter than web search)
strict - High volume: Can return up to 200 results per request
- Thumbnails: Brave-proxied for user privacy (500px width). Use for original full-resolution image.
properties.url - Dimensions: may be missing for some images
properties.width/height - Placeholder: is a low-res URL (not inline base64) useful for progressive loading UX
properties.placeholder