> ## 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 Google Search

> Run multiple Google/SERP searches 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 search queries (max 100).
</ParamField>

### Example request

```bash theme={"dark"}
curl -X POST "https://encrata.com/api/bulk-google-search" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "queries": ["John Smith CEO", "Jane Doe CTO startup"] }'
```

## Response

Returns an array of search results, one per query.

```json theme={"dark"}
{
  "results": [
    {
      "query": "John Smith CEO",
      "items": [
        { "title": "John Smith - CEO at Acme", "url": "https://...", "snippet": "..." }
      ]
    }
  ],
  "credits_used": 2
}
```

## Credits

Each query consumes **1 credit**.
