> ## 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.

# Bulk Company Search

> Enrich multiple companies in a single request.

## Authentication

Requires a JWT token or API key in the `Authorization` header.

```bash theme={"dark"}
Authorization: Bearer YOUR_TOKEN
```

## Request

<ParamField body="queries" type="string[]" required>
  Array of company names or domains (max 100).
</ParamField>

### Example request

```bash theme={"dark"}
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.

```json theme={"dark"}
{
  "results": [
    {
      "query": "acme.com",
      "company": { "name": "Acme Inc", "industry": "Technology", "size": "50-200", ... }
    }
  ],
  "credits_used": 3
}
```

## Credits

Each query consumes **1 credit**.
