Zum Hauptinhalt springen
¿Nuevo aquí? Empieza con nuestro tutorial paso a paso — construye tu propio agente en 5 minutos.
Agent-Ready API

Built for AI Agents

ChatGPT, Claude, Gemini, Perplexity y agentes de commerce autónomos pueden invocar SGE-SCORE directamente — sin login, sin fricción. Auditoría gratis + Master-Fix opcional de $9 (incluye 2 análisis) como JSON.

Kit de Agent Discovery

Descarga las specs e impórtalas en ChatGPT, Claude o Postman

$0
Auditoría
$9
Master-Fix (JSON)
2 / 24h
Rate limit

Discovery (tres estándares)

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

Ejemplos (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"
}

Preguntas frecuentes

¿Necesito API key?

No. La Agent API de SGE-SCORE es abierta. La protección es por rate-limits por email Y hash de IP.

¿Cuánto cuesta la auditoría?

La auditoría es gratis (máx 2 por 24h por email+IP). El Master-Fix cuesta $9 una vez e incluye 2 análisis.

¿Cómo integro el servidor MCP?

Añade la URL https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/mcp en Cursor, Claude Desktop o Windsurf.

¿Qué idiomas están soportados?

Reportes en alemán, inglés, español y francés vía language: 'de' | 'en' | 'es' | 'fr'.

¿Mayor volumen, límites dedicados o white-label? info@sge-score.com