The playground

Try any of 1042 endpoints — live.

Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.

Playground demo key · api.reefapi.com
post/google-search/v1/search1 credit

Google web SERP — organic + People-Also-Ask + knowledge-panel + answer-box (instant/featured) + related

Working example
Parameters

Search query (the keywords you'd type into Google).

Number of organic results to auto-paginate up to (1-100, ~10 per page). Mutually exclusive with start/page (those request a single explicit page). (1–100)

Explicit result offset for a single page (0=first page, 10=second, ...). Overrides num (fetches just that one page). (0–)

1-based page number (alternative to start; page 2 = start 10). Overrides num (fetches just that one page). (1–)

UI/results language as an ISO-639 code (Google `hl`), e.g. en, es, de, fr.

Country bias as a 2-letter ISO-3166 code (Google `gl`), e.g. us, gb, de.

SafeSearch filtering level. 0/1/2 are also accepted; an unrecognized value is ignored (no filtering applied).

Restrict results by recency (Google qdr:). Single-letter forms (h/d/w/m/y) are also accepted; an unrecognized value is ignored.

Restrict results to one domain (applied as a `site:` operator).

request preview
curl -X POST https://api.reefapi.com/google-search/v1/search \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"q":"best laptop 2026","num":"10"}'

Hit Send to run this endpoint live.