POST
/
research
/
person
curl --request POST \
  --url https://api.orchestra.inc/v1/research/person \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "question": "<string>",
  "responseType": "BOOL",
  "responseOptions": [
    "<string>"
  ],
  "context": "<string>",
  "person": {
    "company": {
      "name": "<string>",
      "website": "<string>",
      "location": "<string>",
      "numEmployees": 123,
      "annualRevenue": 123,
      "linkedinUrl": "<string>"
    },
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phone": "<string>",
    "title": "<string>",
    "linkedinUrl": "<string>"
  }
}'
{
  "answerText": "<string>",
  "answerNumber": 123,
  "details": "<string>",
  "sources": [
    "<string>"
  ],
  "confidence": 123,
  "person": {
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "linkedinUrl": "<string>",
    "jobTitle": "<string>",
    "country": "<string>",
    "city": "<string>",
    "jobStartDate": "<string>",
    "companyName": "<string>",
    "companyWebsite": "<string>",
    "companyLinkedinUrl": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication

Body

application/json

Response

200
application/json

Successful research response

The response is of type object.