Skip to main content
POST
/
search
/
google
Google Search
curl --request POST \
  --url https://api.brightdata.com/search/google \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "q": "site:brightdata.com universal api",
  "gl": "us",
  "hl": "en",
  "num": 10
}'
{
  "items": [
    {}
  ],
  "errors": [
    {}
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Provider-specific SERP API params. Additional keys are forwarded as-is.

q
string
page
integer
Required range: x >= 1
num
integer
Required range: x >= 1
gl
string
hl
string
limit
integer
Required range: x >= 1

Response

Results

items
object[]
required
errors
object[]
next_cursor
string