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 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
- 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 "{}"