Built for AI Agents
ChatGPT, Claude, Gemini, Perplexity and autonomous commerce agents can call SGE-SCORE directly — no login, no friction. Free audit + optional $9 Master-Fix (incl. 2 analyses) as JSON.
Agent Discovery Kit
Download the specs and import them into ChatGPT, Claude, or Postman
Discovery (three standards)
Workflow
- 1POST
/agent-analyzewith { url, email, language? } → returnsanalysis_id - 2GET
/agent-analysis-status?id=...every 5s untilstatus: "completed" - 3POST
/agent-checkoutwith { analysis_id, email } → returns Stripecheckout_url - 4After payment: GET
/agent-masterfix?session_id=...→ full Master-Fix as JSON
Examples (curl)
# 1. Start audit (free)
curl -X POST https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-analyze \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com","email":"agent@yourdomain.com","language":"en"}'
# → { "analysis_id": "abc-123", "status": "queued", ... }
# 2. Poll status
curl https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-analysis-status?id=abc-123
# → { "status": "completed", "overall_score": 78, "max_score": 114, "sectors": {...}, "master_fix": {...} }
# 3. Buy Master-Fix ($9)
curl -X POST https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-checkout \
-H "Content-Type: application/json" \
-d '{"analysis_id":"abc-123","email":"agent@yourdomain.com"}'
# → { "checkout_url": "https://checkout.stripe.com/...", "session_id": "cs_..." }
# Redirect user to checkout_url. After payment, Stripe redirects back to /agents?session_id=...
# 4. Retrieve Master-Fix
curl https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-masterfix?session_id=cs_...
# → { "master_fix_prompt": "## CRITICAL...", "format": "markdown", ... }
# BONUS: Search the knowledge base (free, no auth)
curl "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-knowledge-search?q=product+schema&limit=5"
# → { "results": [{ "name": "Product", "json_ld_example": "...", ... }] }ChatGPT Custom GPT (3 minutes)
- 1. Open ChatGPT GPT Builder
- 2. Configure → Actions → Import from URL
- 3. Paste this OpenAPI schema URL:
https://sge-score.com/openapi.yamlNo API key required. ChatGPT will auto-discover all 5 endpoints.
Claude Project / Anthropic Tool Use
Add this tool definition to your Claude Project:
{
"name": "audit_landing_page",
"description": "Audit a landing page for AI/SGE readiness against 57 Google patent checkpoints. Returns score 0-114, failed checkpoints, and an optional $9 Master-Fix.",
"input_schema": {
"type": "object",
"properties": {
"url": { "type": "string", "format": "uri" },
"email": { "type": "string", "format": "email" }
},
"required": ["url", "email"]
},
"url": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-analyze"
}FAQ
Do I need an API key?
No. The SGE-SCORE Agent API is open. Protection is via rate limits per email AND IP hash.
What does the audit cost?
The audit is free (max 2 per 24h per email+IP). The Master-Fix costs $9 one-time and includes 2 analyses.
How do I wire up the MCP server?
Add the URL https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/mcp to Cursor, Claude Desktop or Windsurf.
Which languages are supported?
Audit reports in German, English, Spanish and French via language: 'de' | 'en' | 'es' | 'fr'.
Higher volume, dedicated limits, or white-label? info@sge-score.com