Build automated SEO monitoring pipelines. Check meta tags, broken links, page speed, and accessibility across your entire site.
from toolcenter import Client
tc = Client(api_key="tc_live_...")
for url in SITEMAP:
seo = tc.seo.analyze(url=url)
perf = tc.pagespeed.analyze(url=url)
a11y = tc.accessibility.audit(url=url)
if seo.score < 80 or a11y.violations_count > 0:
slack_webhook.post(f"{url}: SEO {seo.score}, a11y {a11y.violations_count}")
First 100 calls are free. Upgrade when the workflow hits production.