skills.vishalvoidskills/vishalvoid
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 suggest

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

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

All skillsMy patterns