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

> Run IP intelligence on multiple addresses 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 IP addresses (max 100).
</ParamField>

### Example request

```bash theme={"dark"}
curl -X POST "https://encrata.com/api/bulk-ip-search" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "queries": ["8.8.8.8", "1.1.1.1", "104.26.10.1"] }'
```

## Response

Returns an array of IP intelligence results including geolocation, ASN, threat data, and hosting info.

```json theme={"dark"}
{
  "results": [
    {
      "query": "8.8.8.8",
      "ip": { "city": "...", "country": "US", "asn": "AS15169", "org": "Google LLC", ... }
    }
  ],
  "credits_used": 3
}
```

## Credits

Each query consumes **1 credit**.
