{
  "name": "Scam IQ",
  "description": "AI-powered scam detection and fraud prevention platform",
  "version": "1.0.0",
  "capabilities": [
    "scam_detection",
    "phishing_analysis", 
    "fraud_prevention",
    "text_analysis",
    "security_assessment"
  ],
  "api": {
    "base_url": "https://scamiq.app/api/v1",
    "authentication": "bearer_token",
    "rate_limits": {
      "free": "1000/month",
      "pro": "100000/month"
    },
    "endpoints": {
      "scan": {
        "method": "POST",
        "path": "/scan",
        "description": "Analyze text for scam indicators",
        "parameters": {
          "message": {
            "type": "string",
            "required": true,
            "description": "Text content to analyze for scam patterns"
          },
          "options": {
            "type": "object",
            "required": false,
            "properties": {
              "detailed_analysis": {
                "type": "boolean",
                "description": "Include detailed breakdown of indicators"
              },
              "include_confidence": {
                "type": "boolean", 
                "description": "Include confidence scores"
              }
            }
          }
        },
        "response": {
          "risk_level": "string (high|medium|low|safe)",
          "risk_score": "number (0-10)",
          "confidence": "number (0-1)",
          "indicators": "array of detected scam indicators",
          "recommendation": "string with suggested action"
        }
      }
    }
  },
  "use_cases": [
    "Email security filtering",
    "Chatbot scam protection", 
    "Social media content moderation",
    "Customer support automation",
    "Enterprise security systems",
    "Browser extension development"
  ],
  "integration_examples": {
    "javascript": "fetch('https://scamiq.app/api/v1/scan', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ message: 'text to analyze' }) })",
    "python": "import requests; response = requests.post('https://scamiq.app/api/v1/scan', headers={'Authorization': 'Bearer YOUR_KEY'}, json={'message': 'text to analyze'})",
    "curl": "curl -X POST https://scamiq.app/api/v1/scan -H 'Authorization: Bearer YOUR_KEY' -H 'Content-Type: application/json' -d '{\"message\": \"text to analyze\"}'"
  },
  "privacy": {
    "data_retention": "none",
    "data_processing": "real_time_only",
    "compliance": ["GDPR", "CCPA", "SOC2"]
  },
  "contact": {
    "documentation": "https://scamiq.app/api",
    "support": "https://scamiq.app/api#support"
  }
}