Technical & DevelopmentBeginner
suggest
Query completions and suggestions in sub-100ms.
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/brave/brave-search-skills --skill suggestnpx skills add https://github.com/brave/brave-search-skills --skill suggestOr paste this URL into your assistant to install:
Overview
What This Skill Does
Provides instant, typo-resilient query autocomplete suggestions as the user types, supporting entity-based annotations.
Application
When to use this Skill
- When you want to provide real-time search suggestions as a user types into an input field.
- When you need low-latency query completions (sub-100ms response times) for search boxes.
- When you want to offer typo-resilient suggestions that correct partial inputs automatically.
- When you want to display entity-based rich suggestions (e.g., showing a logo or category tag).
- When you need to optimize search conversion by guiding users toward popular search terms.
Documentation
Show Skills.md file
Suggest / Autocomplete
Requires API Key: Get one at https://api.search.brave.com
Plan: Included in the Suggest plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe
Quick Start (cURL)
Basic Suggestions
curl -s "https://api.search.brave.com/res/v1/suggest/search?q=how+to+" \
-H "Accept: application/json" \
-H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}"
With All Parameters
curl -s "https://api.search.brave.com/res/v1/suggest/search" \
-H "Accept: application/json" \
-H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}" \
-G \
--data-urlencode "q=albert" \
--data-urlencode "country=US" \
--data-urlencode "lang=en" \
--data-urlencode "count=10" \
--data-urlencode "rich=true"
Lines 1 - 27 of 94
Recommendations
Explore other random skills
TechnicalIntermediate
azure-verified-modules
Azure Verified Modules (AVM) certification standards for Terraform modules
TechnicalIntermediate
new-terraform-provider
Scaffold a new Terraform provider project using the Plugin Framework
TechnicalIntermediate
run-acceptance-tests
Run acceptance tests for Terraform providers using Go's test runner