POST
/
research
/
company
curl --request POST \
  --url https://api.orchestra.inc/v1/research/company \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "question": "<string>",
  "responseType": "BOOL",
  "responseOptions": [
    "<string>"
  ],
  "context": "<string>",
  "company": {
    "name": "<string>",
    "website": "<string>",
    "location": "<string>",
    "numEmployees": 123,
    "annualRevenue": 123,
    "linkedinUrl": "<string>"
  }
}'
{
  "answerText": "<string>",
  "answerNumber": 123,
  "details": "<string>",
  "sources": [
    "<string>"
  ],
  "confidence": 123
}

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.