Go back
Serper

Serper

v1 · 9 endpoints

Serper (9)

API Explorer

— credits
ColdIQ
APIs→Serper
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/serper/search0.063 cr

Run a Google web search and get structured results including organic listings, knowledge graph, answer boxes, people-als…

Authentication

No API key — create one in the dashboard

Body

Search query. Supports Google search operators (site:, filetype:, intitle:, -keyword, OR, etc.)

num·page·gl+4 more
import requests

url = "https://api.coldiq.com/v1/serper/search"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())