curl "https://scrape.toolkitapi.io/v1/scrape/audit?url=https://toolkitapi.io" \
-H "X-API-Key: YOUR_KEY"
import httpx
resp = httpx.get(
"https://scrape.toolkitapi.io/v1/scrape/audit?url=https://toolkitapi.io",
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/scrape/audit?url=https://toolkitapi.io", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"url": "https://toolkitapi.io",
"score": 82,
"checks": []
}
Try It Live
Live Demo
Response
Description
Run a comprehensive SEO and technical audit for a single URL
How to Use
1
1. Call `/v1/scrape/audit` with `url`. 2. Inspect score, failed checks, and recommendations.
About This Tool
Runs a broad on-page audit and returns scored checks and findings.
Why Use This Tool
- SEO QA — Validate releases before publishing
- Site monitoring — Track regressions over time
Start using Full Page SEO Audit now
Get your free API key and make your first request in under a minute.