Ranking + trend signal
Exact positions you can snapshot over time to build ranking trends and movement alerts.
Power rank tracking, audits, and reporting with one endpoint that returns positions, SERP features, and competitor data. Built for SEO platforms at $0.30 per 1,000 queries.
An SEO ranking API is the data layer beneath every rank tracker, audit tool, and reporting dashboard. Rather than maintaining scrapers and proxy pools, you call one endpoint and receive structured search results: exact positions, the domains around you, and the SERP features shaping click-through.
Searlo is built for the developers behind SEO products. The response is clean JSON (or token-efficient TOON for AI workflows), priced at $0.30 per 1,000 queries so even high-volume rank monitoring stays affordable.
Exact positions you can snapshot over time to build ranking trends and movement alerts.
Track SEO rankings across 195 countries and every major language.
Titles, snippets, domains, and favicons for full SERP-share analysis.
Concurrency-friendly and pay-per-query, so it scales with your user base.
The SEO ranking API returns the ranked SERP; your tool reads positions and features from it.
curl "https://api.searlo.tech/api/v1/search/web?q=email%20marketing%20tools&num=10" \
-H "x-api-key: YOUR_API_KEY"import requests
r = requests.get(
"https://api.searlo.tech/api/v1/search/web",
params={"q": "email marketing tools", "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("email marketing tools") + "&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));SE Ranking sells a full SEO suite. If you are building your own SEO product, Searlo gives you the underlying ranking data without the dashboard you don't need.
| Capability | Searlo | SE Ranking |
|---|---|---|
| Use case | Data API for builders | End-user SEO suite |
| Price model | $0.30 / 1,000 queries | Subscription tiers |
| SERP features | Included in response | Plan-dependent |
| TOON for AI tools | Yes | No |
| Free credits | 3,000 | Trial |
Maintaining your own Google scraping infrastructure means proxies, CAPTCHAs, parser breakage, and constant upkeep. An SEO ranking API removes all of that: you get parsed, structured rankings from a maintained endpoint with predictable latency.
That lets your team focus on the product — the dashboards, the insights, the alerts — instead of the plumbing. And because pricing is per query, your data cost scales cleanly with usage.
An API that returns structured search rankings — positions, competitors, and SERP features — so SEO tools can read ranking data without building their own scrapers.
Yes. Snapshot positions on a schedule and store them; the API is designed to be the data layer beneath rank trackers and SEO dashboards.
Organic positions plus titles, snippets, domains, and favicons in the same response as the rankings.
$0.30 per 1,000 queries with no per-keyword caps, plus 3,000 free credits to evaluate it.
Yes. Alongside JSON, Searlo offers TOON output that uses about 63% fewer tokens — useful when feeding rankings into LLM workflows.