curl -X POST "https://scrape.toolkitapi.io/v1/scrape/compare" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_KEY" \
-d '{"url_a":"https://toolkitapi.io","url_b":"https://example.org"}'
import httpx
resp = httpx.post(
"https://scrape.toolkitapi.io/v1/scrape/compare",
json={"url_a":"https://toolkitapi.io","url_b":"https://example.org"},
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/scrape/compare", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({"url_a":"https://toolkitapi.io","url_b":"https://example.org"}),
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"comparison": {}
}
Try It Live
Live Demo
Response
Description
Compare audit output between two pages side by side
How to Use
1
1. Submit two URLs in one request. 2. Review metric deltas and check-level differences.
About This Tool
Highlights differences in SEO and page quality between two target URLs.
Start using SEO Compare now
Get your free API key and make your first request in under a minute.