Zum Hauptinhalt springen
Nouveau ici ? Commencez par notre tutoriel pas-à-pas — construisez votre agent en 5 minutes.
Agent-Ready API

Built for AI Agents

ChatGPT, Claude, Gemini, Perplexity et agents commerce autonomes peuvent appeler SGE-SCORE directement — sans login, sans friction. Audit gratuit + Master-Fix optionnel à $9 (inclut 2 analyses) en JSON.

Kit Agent Discovery

Téléchargez les specs et importez-les dans ChatGPT, Claude ou Postman

$0
Audit
$9
Master-Fix (JSON)
2 / 24h
Rate limit

Discovery (trois standards)

Google A2A / Anthropic: /.well-known/agent.json
Root fallback: /agent.json
OpenAPI 3.1 spec: /openapi.yaml

Workflow

  1. 1POST /agent-analyze with { url, email, language? } → returns analysis_id
  2. 2GET /agent-analysis-status?id=... every 5s until status: "completed"
  3. 3POST /agent-checkout with { analysis_id, email } → returns Stripe checkout_url
  4. 4After payment: GET /agent-masterfix?session_id=... → full Master-Fix as JSON

Exemples (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. 1. Open ChatGPT GPT Builder
  2. 2. Configure → Actions → Import from URL
  3. 3. Paste this OpenAPI schema URL:
https://sge-score.com/openapi.yaml

No 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

Ai-je besoin d'une clé API ?

Non. L'Agent API SGE-SCORE est ouverte. Protection via rate-limits par email ET hash IP.

Quel est le coût de l'audit ?

L'audit est gratuit (max 2 / 24h par email+IP). Le Master-Fix coûte $9 unique et inclut 2 analyses.

Comment configurer le serveur MCP ?

Ajoutez l'URL https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/mcp dans Cursor, Claude Desktop ou Windsurf.

Quelles langues sont supportées ?

Rapports en allemand, anglais, espagnol et français via language: 'de' | 'en' | 'es' | 'fr'.

Volume supérieur, limites dédiées ou white-label ? info@sge-score.com