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

Example request

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.
{
  "results": [
    {
      "query": "8.8.8.8",
      "ip": { "city": "...", "country": "US", "asn": "AS15169", "org": "Google LLC", ... }
    }
  ],
  "credits_used": 3
}

Credits

Each query consumes 1 credit.