Skip to main content
POST
/
api
/
research
/
enrich
cURL
curl --request POST \
  --url https://api.recoupable.com/api/research/enrich \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": "<string>",
  "schema": {
    "properties": {}
  },
  "processor": "base"
}
'
{
  "status": "success",
  "output": {},
  "citations": [
    {
      "url": "<string>",
      "title": "<string>",
      "field": "<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
input
string
required

What to research (e.g., "Drake rapper from Dallas Texas").

schema
object
required

JSON schema defining the fields to extract. Must include "type": "object" at the top level.

processor
enum<string>
default:base

Research depth: base (fast), core (balanced), ultra (comprehensive).

Available options:
base,
core,
ultra

Response

Structured enrichment data

status
string
Example:

"success"

output
object

Structured data matching the provided schema.

citations
object[]

Source citations supporting the enriched output.