Search the web

web_search is a $0.20 GET request on the Wuthering AI API. Run a search engine query and get the result list back. It answers complete JSON, and a call that fails is not charged.

Endpoint

GET /v1/web_search

Price per successful call

$0.20

Failed calls

Not charged

curl 'https://wutheringai.com/v1/web_search?query=…&token=YOUR_TOKEN'

What does web_search return, and when should you call it?

Run a query against a search engine and return the organic results as titles, URLs, and snippets.

Live results, not a cached index, so this reflects what a searcher sees now. It returns RESULTS, not volume: to learn how often something is searched use wuthering_keyword_volume. Operators like site: and quoted phrases work and are the fastest way to locate a specific profile or document.

If you have a web search of your own, use that instead to find a URL for another tool: it costs you nothing and answers the same site: query. Call this one when you have none, or when you specifically need what a searcher in a given country sees right now.

Returns: title, url, description for each result, in rank order.

Use to find pages, verify a claim, or locate a profile URL for another tool. Don't use to measure demand.

What parameters does web_search take?

web_search accepts 4 parameters, of which 1 is required. Array values are comma-separated on the query string.

Parameters accepted by the web_search operation
ParameterTypeRequiredDescription
querystringyesThe search query. Supports operators: site:example.com restricts to one domain, and quoting a phrase requires an exact match.
enginestringnoWhich search engine to query. Defaults to google.One of: google, bing, yandexDefaults to google
geo_locationstringnoTwo-letter country code for geo-targeted results, for example 'us' or 'de'. Defaults to us, matching the default every other tool here uses. Without one the results are targeted at whichever country the request happens to leave from, which is not a property of your question and not one you can see in the answer.Defaults to us
cursorstringnoPagination cursor from a previous response's next page.

Reference for web_search · last updated · published by Wuthering AI