EveryData platform API

Web Search API

This Web Search reference organizes search results—including titles, snippets, source URLs, and ranking positions—into 1 concrete operation: `search`.

Fetch matching public results using the Web Search `search` action with a `keyword`. All subsequent actions follow the same isolated scope rules.

Endpoint
POST /api/v1/social
Capabilities
1
Per 1,000
$1.389

Available capabilities

Compare the Web Search actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
search

Search

Search public results on Web Search. Accepts these parameters: keyword. Returns these fields: title, text, published_at, and rank.

keywordSync delivery$1.39 per 1,000 requeststitle · url · text · rank · published_at · image_url

What does each Web Search action accept?

Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.

Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.

What do the Web Search search parameters mean?

Search public results on Web Search. Accepts these parameters: keyword. Returns these fields: title, text, published_at, and rank.

keywordRequired
Specifies the web search query expression. Returns result titles, URLs, and snippets; it does not fetch the full page content of the search results or filter by platform name.
Google: Search snippets versus source web page textGoogle defines snippets as descriptions or summaries displayed within search results, noting that snippets can change dynamically based on the search query or originate from page meta descriptions. The text returned by this action is not the full text of the target page; verified source pages must be checked directly when citing facts.Checked

How to use the Web Search API

  1. 01Read the public catalog and choose a platform action.
  2. 02Send the platform, action, and required parameters to POST /api/v1/social.
  3. 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
  4. 04Store the structured response fields needed by your application.
web_search.sh
curl -X POST https://api.everyinfra.com/api/v1/social \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"web","action":"search","params":{"keyword":"<keyword>"}}'

Web Search API questions

What can I retrieve with the Web Search API?

Set platform to web. The current catalog lists search. These action names identify different Web Search objects or views; they are not interchangeable search modes.

Which input starts a Web Search `search` request?

Specifies the web search query expression. Returns result titles, URLs, and snippets; it does not fetch the full page content of the search results or filter by platform name. Send it as keyword inside params.

Which fields can Web Search `search` return?

Its declared schema includes title, text, rank, and published_at. A declared field can still be absent from an individual source record, and every other action has its own field list.

Does every Web Search action return immediately?

No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.