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"
    }
  ],
  "profile": {
    "name": "Tesla, Inc.",
    "domain": "tesla.com",
    "description": "Electric vehicle and clean energy company.",
    "industry": "Automotive",
    "status": "active",
    "employee_count": 140000,
    "revenue": "$96.8B",
    "country": "United States",
    "website": "https://tesla.com",
    "ticker": "TSLA",
    "linkedin": "https://linkedin.com/company/tesla-motors",
    "officers": [
      {
        "name": "Elon Musk",
        "role": "chief-executive-officer"
      }
    ],
    "shareholders": []
  },
  "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, plus a unified profile object with enriched company data including officers and shareholders.
company
string
The queried company name.
results
array
Array of people found at the company with email, name, role, and social profiles.
profile
object
Unified company profile merged from multiple sources (Companies House, TheCompaniesAPI, SEC). May be null if no enrichment data is available.
total
integer
Number of people results returned.
credits
integer
Credits consumed for this request.
{
  "company": "Tesla",
  "results": [
    {
      "email": "elon@tesla.com",
      "name": "Elon Musk",
      "role": "CEO",
      "linkedin": "https://linkedin.com/in/elonmusk"
    }
  ],
  "profile": {
    "name": "Tesla, Inc.",
    "domain": "tesla.com",
    "description": "Electric vehicle and clean energy company.",
    "industry": "Automotive",
    "status": "active",
    "employee_count": 140000,
    "revenue": "$96.8B",
    "country": "United States",
    "website": "https://tesla.com",
    "ticker": "TSLA",
    "linkedin": "https://linkedin.com/company/tesla-motors",
    "officers": [
      {
        "name": "Elon Musk",
        "role": "chief-executive-officer"
      }
    ],
    "shareholders": []
  },
  "total": 1,
  "credits": 1
}

Credits

1 credit per result returned.