Skip to main content
POST
/
api
/
agent
/
domain
Domain Search
curl --request POST \
  --url https://encrata.com/api/agent/domain \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "<string>"
}
'
{
  "domain": "tesla.com",
  "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

domain
string
required
The domain name to search (e.g. tesla.com)

Response

Returns an array of people discovered at the domain with their email addresses, names, roles, and social profiles.
{
  "domain": "tesla.com",
  "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.