curl -X POST "https://scrape.toolkitapi.io/v1/scrape/bulk-audit" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_KEY" \
-d '{"urls":["https://toolkitapi.io","https://toolkitapi.io/about"]}'
import httpx
resp = httpx.post(
"https://scrape.toolkitapi.io/v1/scrape/bulk-audit",
json={"urls":["https://toolkitapi.io","https://toolkitapi.io/about"]},
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/scrape/bulk-audit", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({"urls":["https://toolkitapi.io","https://toolkitapi.io/about"]}),
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"results": []
}
Try It Live
Live Demo
Response
Description
Audit multiple URLs in one request
How to Use
1
1. Send a JSON list of URLs. 2. Process per-URL scores and findings.
About This Tool
Runs the SEO audit workflow over many URLs and returns aggregated results.
Why Use This Tool
- Site-wide checks — Audit many pages in one pass
- Batch workflows — Integrate into scheduled jobs
Start using Bulk SEO Audit now
Get your free API key and make your first request in under a minute.