/v1/google/web-searchSearch the web
Returns ranked web results, exactly `per_page` per response (up to 20) until the result set ends. Pagination continues while results remain — typically 100–250 per query — and stops with `meta.pagination.next_page: null`. Each result carries its absolute position, so ranking is stable across pages. Results reflect a globally neutral locale; country and language targeting are not yet available.
| query* | string |
| page* | integer |
| per_page* | integer |
| results* | array<object> |
| position* | integer |
| url* | string · uri |
| domain* | string |
| title* | string |
| snippet* | string | null |
| published_at* | string · date-time | null |
curl "https://api.endpointry.com/v1/google/web-search?query=best+crm+software" \
-H "Authorization: Bearer sk_live_..."{
"data": {
"results": [
{
"position": 1,
"url": "https://www.salesforce.com/crm/best-crm/",
"domain": "www.salesforce.com",
"title": "Best CRM Software: Everything To Consider",
"snippet": "Learn what to look for when comparing CRM platforms, from pipeline management to reporting and automation.",
"published_at": null
},
{
"position": 2,
"url": "https://www.pipedrive.com/en/crm/compare/crm-tool",
"domain": "www.pipedrive.com",
"title": "Compare CRM Tools",
"snippet": "A side-by-side comparison of popular CRM tools for sales teams.",
"published_at": "2026-01-27T00:00:00.000Z"
}
]
},
"meta": {
"request_id": "req_7729f93d3facf68ff83e5c50",
"as_of": "2026-07-31T12:00:00.000Z",
"pagination": {
"page": 1,
"next_page": 2,
"limit": 10,
"returned": 10
}
}
}