Skip to main content
POST
/
api
/
google
/
search
/google/search
curl --request POST \
  --url https://api.anysite.io/api/google/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "query": "python fastapi",
  "count": 10
}'
[
  {
    "@type": "GoogleSearchResult",
    "url": "<string>",
    "title": "",
    "description": ""
  }
]

Headers

access-token
string
required

Body

application/json
query
string
required

Search query. For example: 'python fastapi'

Examples:

"python fastapi"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
count
integer
default:10

Maximum number of results (from 1 to 20)

Required range: 0 < x < 21

Response

Successful Response

url
string
required
@type
string
default:GoogleSearchResult
title
string
default:""
description
string
default:""
I