{
  "version": "1.1",
  "name": "x402-micro-pay-humanless-contract",
  "description": "Machine-readable service contract for autonomous x402 payments — no human approval required",
  "protocol": "x402",
  "network": "eip155:84532",
  "currency": "USDC",
  "billing_mode": "free_beta",
  "constraints": {
    "max_spend_per_call_usd": 0.05,
    "max_spend_per_session_usd": 0.5,
    "auto_retry_on_402": true,
    "require_payment_receipt": true
  },
  "discovery": {
    "manifest_url": "/.well-known/x402",
    "contract_url": "/contracts/humanless.json",
    "bazaar_type": "http",
    "docs_base": "/docs"
  },
  "services": [
    {
      "id": "osint_graph",
      "endpoint": "/api/skills/osint-graph",
      "method": "POST",
      "price_usd": 0.002,
      "input_schema": {
        "type": "object",
        "required": ["seed_entity"],
        "properties": {
          "seed_entity": { "type": "string" },
          "max_depth": { "type": "integer", "default": 2, "maximum": 4 }
        }
      }
    },
    {
      "id": "whitepages",
      "endpoint": "/api/skills/whitepages",
      "method": "POST",
      "price_usd": 0.003,
      "input_schema": {
        "type": "object",
        "required": ["name"],
        "properties": {
          "name": { "type": "string" },
          "location": { "type": "string" }
        }
      }
    },
    {
      "id": "shodan",
      "endpoint": "/api/skills/shodan",
      "method": "POST",
      "price_usd": 0.004,
      "input_schema": {
        "type": "object",
        "required": ["target"],
        "properties": {
          "target": { "type": "string", "description": "Domain or IP" }
        }
      }
    },
    {
      "id": "research",
      "endpoint": "/api/skills/research",
      "method": "POST",
      "price_usd": 0.008,
      "input_schema": {
        "type": "object",
        "required": ["query"],
        "properties": {
          "query": { "type": "string" }
        }
      }
    },
    {
      "id": "seo",
      "endpoint": "/api/skills/seo",
      "method": "POST",
      "price_usd": 0.006,
      "input_schema": {
        "type": "object",
        "required": ["url"],
        "properties": {
          "url": { "type": "string", "format": "uri" },
          "keywords": { "type": "array", "items": { "type": "string" } }
        }
      }
    },
    {
      "id": "ai_detector",
      "endpoint": "/api/skills/ai-detector",
      "method": "POST",
      "price_usd": 0.0015,
      "input_schema": {
        "type": "object",
        "properties": {
          "url": { "type": "string", "format": "uri" },
          "text": { "type": "string" }
        }
      }
    }
  ]
}