Skip to main content
POST
/
api
/
bulk-company-search
Bulk Company Search
curl --request POST \
  --url https://encrata.com/api/bulk-company-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 company names or domains (max 100).

Example request

curl -X POST "https://encrata.com/api/bulk-company-search" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "queries": ["acme.com", "Stripe", "openai.com"] }'

Response

Returns an array of company enrichment results.
{
  "results": [
    {
      "query": "acme.com",
      "company": { "name": "Acme Inc", "industry": "Technology", "size": "50-200", ... }
    }
  ],
  "credits_used": 3
}

Credits

Each query consumes 1 credit.