Platform Integrations
Connect Surgeie with your existing tools and workflows.
WordPress
AvailableAuto-sync SEO recommendations directly to your WordPress sites with our official plugin.
- One-click fixes
- Auto-sync
- Rollback support
Google Docs
AvailableExport SEO reports and content briefs directly to Google Docs for easy collaboration.
- Report export
- Content briefs
- Team sharing
Shopify
Coming SoonOptimise your Shopify store with automated SEO improvements and monitoring.
- Product SEO
- Collection pages
- Meta optimisation
Webflow
Coming SoonConnect your Webflow projects for seamless SEO management and automation.
- Page SEO
- CMS collections
- Site-wide audits
Custom CMS
AvailableUse our API to integrate Surgeie with any custom CMS or platform.
- REST API
- Webhooks
- SDK libraries
Google Search Console
AvailableImport performance data and keywords directly from Google Search Console.
- Data import
- Keyword tracking
- Performance sync
Developer Tools
Build with Surgeie API
Everything you need to integrate SEO automation into your own applications.
RESTful API
Full-featured REST API with comprehensive documentation and examples.
Webhooks
Real-time notifications for audit completions, alerts, and recommendations.
SDK Libraries
Official SDKs for Python, Node.js, and PHP to accelerate development.
White-Label
Embed Surgeie functionality in your own applications with full branding control.
Quick Start Example
audit.py
import surgeie
# Initialise client with API key
client = surgeie.Client(api_key="your_api_key")
# Start an SEO audit
audit = client.audits.create(
url="https://example.com",
depth=3,
include_performance=True
)
# Get recommendations
for rec in audit.recommendations:
print(f"{rec.priority}: {rec.title}")
print(f" Impact: {rec.impact_score}/10")