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

Example request

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.
{
  "results": [
    {
      "query": "John Smith CEO",
      "items": [
        { "title": "John Smith - CEO at Acme", "url": "https://...", "snippet": "..." }
      ]
    }
  ],
  "credits_used": 2
}

Credits

Each query consumes 1 credit.