Skip to main content
POST
/
api
/
research
/
web
cURL
curl --request POST \
  --url https://api.recoupable.com/api/research/web \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "max_results": 10,
  "country": "<string>"
}
'
{
  "status": "success",
  "results": [
    {
      "title": "<string>",
      "url": "<string>",
      "snippet": "<string>",
      "date": "<string>",
      "last_updated": "<string>"
    }
  ],
  "formatted": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.recoupable.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request body for web research.

query
string
required

The search query — what you want to find on the web.

max_results
integer
default:10

Maximum number of results to return.

Required range: 1 <= x <= 20
country
string

ISO country code for regional results (e.g., 'US', 'GB').

Required string length: 2

Response

Web search results

Web search results with titles, URLs, and content snippets.

status
string
Example:

"success"

results
object[]

Ranked web search results.

formatted
string

Results formatted as markdown for easy reading.