Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Google search API Playground

Returns normalized Google web search results. Results are fetched through Rayobrowse-rendered Chrome with availability fanout and stale-cache fallback when available.

POSTapiKey3 credits/requestgoogle.searchResponseDocGoogle

Endpoint

Choose one catalog endpoint for this request.

1 shown
POSTapiKey3 credits/requestgoogle.searchResponseDocGoogle
POST /google/search

Google search API

Returns normalized Google web search results. Results are fetched through Rayobrowse-rendered Chrome with availability fanout and stale-cache fallback when available. The endpoint returns 502 when Google serves a challenge page or unusable HTML. Rate limit is enforced at 1 request per second, and if the limit is exceeded a 429 status code is returned with rate limit headers.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Body (google.SearchOption)

Body preview
{
  "country": "us",
  "keyword": "chatgpt",
  "language": "en",
  "limit": 10,
  "page": 1
}

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responsePOST

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "result": [
      {
        "position": 1,
        "title": "ChatGPT",
        "website_name": "ChatGPT",
        "icon": "",
        "link": "https://chatgpt.com/",
        "Snippet": "ChatGPT helps you get answers and create."
      }
    ]
  }
}

Endpoint details

Returns normalized Google web search results. Results are fetched through Rayobrowse-rendered Chrome with availability fanout and stale-cache fallback when available. The endpoint returns 502 when Google serves a challenge page or unusable HTML. Rate limit is enforced at 1 request per second, and if the limit is exceeded a 429 status code is returned with rate limit headers.

Method
POST
Path
/google/search
Authentication
apiKey
Credit cost
3 credits/request
Platform
Google
Parameters
2 documented fields

Request parameters

searchOption:bodyx-api-key:header

Response schema fields

codedatadata.knowledge_graphdata.knowledge_graph.attributesdata.knowledge_graph.attributes[].iddata.knowledge_graph.attributes[].labeldata.knowledge_graph.attributes[].valuedata.knowledge_graph.descriptiondata.knowledge_graph.sub_titledata.knowledge_graph.titledata.knowledge_graph.wikipedia_linkdata.people_also_ask

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "result": [
      {
        "position": 1,
        "title": "ChatGPT",
        "website_name": "ChatGPT",
        "icon": "",
        "link": "https://chatgpt.com/",
        "Snippet": "ChatGPT helps you get answers and create."
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/google/search" \
  -H "x-api-key: <api-key>" \
  -X POST \
  --data "{}"