Brave Autocomplete Scraper avatar

Brave Autocomplete Scraper

Pricing

from $1.99 / 1,000 search results

Go to Apify Store
Brave Autocomplete Scraper

Brave Autocomplete Scraper

Scrapes Brave Search autocomplete/suggestions for any query. Returns real-time query completions as users type, powered by Brave's suggest API.

Pricing

from $1.99 / 1,000 search results

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

Scrapes Brave Search autocomplete/suggestions for any query. Returns real-time query completions as users type, powered by Brave's suggest API.

What this Actor collects

Each dataset item represents one unique Brave autocomplete suggestion, with its original query, localized market, exact-match flag, length metrics, and search URL.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 16-field dataset schema.
  • Omits optional fields when the source does not expose a value instead of writing nulls or fabricated placeholders.

Use cases

  • Keyword discovery
  • Content and SEO research
  • Search-demand exploration

Input

Provide input in JSON. Fields marked required must be supplied; source-specific alternatives and constraints are described in the field text.

FieldTypeRequiredDefaultDescription
querystringYesThe partial search query to get autocomplete suggestions for.
maxItemsintegerNo20Maximum number of autocomplete suggestions to return.
countrystringNo"us"Brave country code for localized suggestions (e.g. 'us', 'gb', 'in', 'de').
languagestringNo"en"Brave language code (e.g. 'en', 'de', 'fr', 'hi').
maxRequestRetriesintegerNo3Retries for temporary rate limits, server errors, and network failures.
requestTimeoutSecsintegerNo30Maximum time allowed for each Brave API request.
proxyConfigurationobjectNoProxy settings for the scraper.

Example input

{
"query": "artificial intelligence",
"maxItems": 8,
"country": "us",
"language": "en",
"proxyConfiguration": {
"useApifyProxy": false
},
"maxRequestRetries": 3,
"requestTimeoutSecs": 30
}

Output

The default dataset contains one item per autocomplete suggestion. The following are the most useful fields; all values come from the suggestion response or deterministic measurements of it.

FieldTypeDescription
positionintegerPosition
suggestionstringSuggestion
searchQuerystringSearch Query
countrystringCountry
languagestringLanguage
isExactMatchbooleanExact Query Match
wordCountintegerWord Count
scrapedAtstringScraped At
typestringRecord Type
querystringSuggested Query
resultTypestringResult Type
responseQuerystringAPI Response Query
marketstringMarket
characterCountintegerCharacter Count
searchUrlstringSearch URL
searchMetadataobjectSearch Metadata

Example dataset item

This compact example is taken from local Actor storage. Long text and nested collections are shortened for documentation only.

{
"position": 1,
"suggestion": "artificial intelligence",
"searchQuery": "artificial intelligence",
"country": "us",
"language": "en",
"isExactMatch": true,
"wordCount": 2,
"scrapedAt": "2026-07-23T15:22:48.317Z",
"type": "autocomplete-suggestion",
"query": "artificial intelligence",
"resultType": "autocompleteSuggestion",
"responseQuery": "artificial intelligence"
}