What it does
search-content runs a web search and, for each of the top results, fetches and cleans the page text — so the response is ranked results with body content already attached, not a link list the caller has to fetch itself.
{
"query": "x402 protocol agent payments",
"num_results": 3
}
returns each result with its content, capped at 4,000 characters per page:
{
"results": [
{
"title": "x402 protocol overview",
"url": "https://example.com/x402",
"snippet": "Payment protocol for agents...",
"content": "x402 is an open protocol for internet-native payments using HTTP 402...",
"content_truncated": false
}
]
}
Why
Search-with-contents is a specific, named product: it's what Tavily and Exa sell agents instead of plain link lists, because most agent workflows need the page text, not just the URL, to do anything useful. web-search and scrape-website already exist separately in the catalog; search-content is the one-call version of the workflow buyers were already running by pairing the two.
Degradation
web-search is the required leg. Each page fetch after that is an independent optional leg: a slow or blocked page returns content: null with a note on that one result, instead of failing the whole call over one bad URL.
Price: $0.05.