Skip to main content
POST
/
api
/
agent
/
company
Company Search
curl --request POST \
  --url https://encrata.com/api/agent/company \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company": "<string>"
}
'
{
  "company": "Tesla",
  "results": [
    {
      "email": "elon@tesla.com",
      "name": "Elon Musk",
      "role": "CEO",
      "linkedin": "https://linkedin.com/in/elonmusk"
    }
  ],
  "total": 1,
  "credits": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.encrata.com/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY

Request

company
string
required
The company name to search (e.g. Tesla)

Response

Returns an array of people found at the company.
{
  "company": "Tesla",
  "results": [
    {
      "email": "elon@tesla.com",
      "name": "Elon Musk",
      "role": "CEO",
      "linkedin": "https://linkedin.com/in/elonmusk"
    }
  ],
  "total": 1,
  "credits": 1
}

Credits

1 credit per result returned.