One endpoint, no actors
A single maintained SERP API instead of selecting and tuning scrapers.
Apify runs a marketplace of scraper 'actors' you configure and maintain. For Google search, Searlo is one stable endpoint that returns parsed SERP data at $0.30 per 1,000 queries.
Apify is flexible: actors can scrape almost anything. But that flexibility means choosing an actor, configuring it, and dealing with variability in quality and upkeep — especially as Google's SERP changes. For search results, that is overhead.
Searlo replaces the actor model for search with a single maintained endpoint. One keyed request returns organic positions and SERP features, parsed and consistent, at $0.30 per 1,000 queries with 3,000 free credits.
A single maintained SERP API instead of selecting and tuning scrapers.
Stable response schema with positions and SERP features.
Sub-second responses, no run queues or actor cold starts.
Simple per-query pricing with no compute-unit math.
No actor to configure — just one request:
curl "https://api.searlo.tech/api/v1/search/web?q=personal%20loans&num=10" \
-H "x-api-key: YOUR_API_KEY"import requests
r = requests.get(
"https://api.searlo.tech/api/v1/search/web",
params={"q": "personal loans", "num": 10},
headers={"x-api-key": "YOUR_API_KEY"},
)
results = r.json()["organic"]
for o in results:
print(o["position"], o["domain"], o["title"])const res = await fetch(
"https://api.searlo.tech/api/v1/search/web?q=" +
encodeURIComponent("personal loans") + "&num=10",
{ headers: { "x-api-key": "YOUR_API_KEY" } },
);
const { organic } = await res.json();
organic.forEach(o =>
console.log(o.position, o.domain, o.title));For Google search specifically, a single endpoint beats actor management.
| Capability | Searlo | Apify |
|---|---|---|
| Model | One SERP endpoint | Actor marketplace |
| Maintenance | Managed for you | Actor upkeep varies |
| Output schema | Consistent | Per-actor |
| Pricing | $0.30 / 1,000 queries | Compute units + usage |
| Free credits | 3,000 | Free tier (CU-based) |
A marketplace shines when your targets are diverse and changing. But if your need is consistent Google search data, a single specialized endpoint is more predictable: stable schema, known latency, and a provider whose job is keeping the SERP parser current.
You trade breadth you don't need for reliability you do.
Apify is a marketplace of configurable scraper actors; Searlo is a single maintained Google SERP API with a consistent schema and per-query pricing.
No. Searlo maintains the SERP parser and infrastructure; you call one endpoint and get structured data.
Yes. It's $0.30 per 1,000 queries — no compute-unit calculations or per-actor variation.
Organic results with positions, titles, links, snippets, domains, and favicons in a stable JSON schema.
Yes — 3,000 free credits.
We also build RenderKit — the browser-rendering API for screenshots, PDFs, and LLM-ready markdown. Same billing model, same developer-first API design.