Skip to main content
POST
/
api
/
bulk-domain-search
Bulk Domain Search
curl --request POST \
  --url https://encrata.com/api/bulk-domain-search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "queries": [
    "<string>"
  ]
}
'

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 a JWT token or API key in the Authorization header.
Authorization: Bearer YOUR_TOKEN

Request

queries
string[]
required
Array of domain names (max 100).

Example request

curl -X POST "https://encrata.com/api/bulk-domain-search" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "queries": ["example.com", "startup.io", "corp.co"] }'

Response

Returns an array of domain intelligence results including DNS, SSL, hosting, and threat data.
{
  "results": [
    {
      "query": "example.com",
      "domain": { "registrar": "...", "dns": {...}, "ssl": {...}, "hosting": {...} }
    }
  ],
  "credits_used": 3
}

Credits

Each query consumes 1 credit.