Docs

One endpoint, structured Google search results. That's the whole API.

Quickstart

  1. Grab your API key from the Dashboard.
  2. Send a POST request to https://api.prismcrawl.com with your query.
  3. You only pay for successful responses. Errors and retries are free.

Authentication

Pass your API key in the x-api-key header on every request. Rotate keys anytime from the Dashboard — the old key stops working immediately.

Search endpoint

POST https://api.prismcrawl.com

Request
curl https://api.prismcrawl.com \
  --request POST \
  --header "content-type: application/json" \
  --header "x-api-key: prism_live_..." \
  -d '{
    "query": "best espresso machines 2026",
    "html": false
  }'
Response
{
  "success": true,
  "request_id": "66ca8deb-1dc2-4017-865f-c4fb0e3c7c0d",
  "data": {
    "format": "json",
    "content": {
      "results": [
        { "rank": 1, "title": "...", "url": "...", "snippet": "..." }
      ]
    }
  }
}

Parameters

FieldTypeDescription
querystringThe Google search query. Required.
htmlbooleanInclude the raw HTML (Brotli-compressed). Default: false.

Billing

  • Credits are one-time purchases. No subscriptions.
  • Only successful responses (HTTP 200) cost a credit. One search, one credit.
  • Credits expire 90 days after purchase.