Skip to main content
POST
/
api
/
research
/
extract
cURL
curl --request POST \
  --url https://api.recoupable.com/api/research/extract \
  --header 'Content-Type: application/json' \
  --data '
{
  "urls": [
    "<string>"
  ],
  "objective": "<string>",
  "full_content": false
}
'
{
  "status": "success",
  "results": [
    {
      "url": "<string>",
      "title": "<string>",
      "publish_date": "<string>",
      "excerpts": [
        "<string>"
      ],
      "full_content": "<string>"
    }
  ],
  "errors": [
    {}
  ]
}

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
urls
string<uri>[]
required

URLs to extract content from (max 10).

Required array length: 1 - 10 elements
objective
string

What information to focus on (optional, max 3000 chars).

full_content
boolean
default:false

Return full page content instead of focused excerpts.

Response

Extracted content from URLs

status
enum<string>
required
Available options:
success,
error
Example:

"success"

results
object[]
required
errors
object[]

URLs that failed to extract. Only present when one or more URLs could not be processed.