Skip to main content
POST
/
api
/
research
/
people
cURL
curl --request POST \
  --url https://recoup-api.vercel.app/api/research/people \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "num_results": 10
}
'
{
  "status": "success",
  "results": [
    {
      "title": "<string>",
      "url": "<string>",
      "highlights": [
        "<string>"
      ],
      "summary": "<string>"
    }
  ]
}

Body

application/json
query
string
required

Natural language search for people (e.g., "A&R reps at Atlantic Records").

num_results
integer
default:10

Number of results to return.

Required range: 1 <= x <= 100

Response

200 - application/json

People search results

status
enum<string>
Available options:
success,
error
results
object[]