{
  "ok": true,
  "schema": "wisely.x402.hosted-endpoint-catalog.v1",
  "dashboard": "https://payments.wiselyenterprisesllc.com/dashboard",
  "createEndpoint": "https://payments.wiselyenterprisesllc.com/ai/endpoints/create",
  "lifecycle": {
    "builderRegister": "POST /ai/builders/register with x402 payment proof or developer credit",
    "create": "POST /ai/endpoints/create with X-Admin-Token or X-Builder-Key",
    "inspect": "GET /ai/endpoints/{slug}",
    "update": "PATCH /ai/endpoints/{slug} with X-Admin-Token or owning X-Builder-Key",
    "pause": "PATCH /ai/endpoints/{slug} {\"status\":\"paused\"}",
    "resume": "PATCH /ai/endpoints/{slug} {\"status\":\"active\"}",
    "delete": "DELETE /ai/endpoints/{slug} with X-Admin-Token or owning X-Builder-Key",
    "logs": "GET /ai/endpoints/{slug}/logs with X-Admin-Token or owning X-Builder-Key",
    "secrets": "GET/POST /ai/endpoints/{slug}/secrets with X-Admin-Token or owning X-Builder-Key. Values are encrypted and never returned.",
    "revenue": "GET /ai/builders/revenue?since=30d with owning X-Builder-Key",
    "events": "GET /ai/builders/events?since=7d&endpointSlug={slug} with owning X-Builder-Key",
    "payoutSettings": "GET/POST /ai/builders/payout-settings with owning X-Builder-Key",
    "payoutPackets": "GET/POST /ai/builders/payouts with owning X-Builder-Key"
  },
  "builderControls": {
    "register": "https://payments.wiselyenterprisesllc.com/ai/builders/register",
    "revenue": "https://payments.wiselyenterprisesllc.com/ai/builders/revenue",
    "events": "https://payments.wiselyenterprisesllc.com/ai/builders/events",
    "payoutSettings": "https://payments.wiselyenterprisesllc.com/ai/builders/payout-settings",
    "payouts": "https://payments.wiselyenterprisesllc.com/ai/builders/payouts",
    "docs": "https://payments.wiselyenterprisesllc.com/guides/x402-agent-payment-infrastructure"
  },
  "supportedHandlerTypes": {
    "receipt_echo": "Echo a public-safe request summary and receipt.",
    "static_json": "Return a static JSON response.",
    "x402_readiness_check": "Inspect MCP/x402 metadata URL and return readiness notes.",
    "js_request_response": "Builder/admin plain async function(req, ctx) request/response handler with scoped ctx.kv, ctx.files, ctx.env, ctx.httpGetJson, and ctx.log."
  },
  "note": "Public list of paid x402 endpoints. Creation/update is admin or builder-key gated; invocation happens under /tools/{slug}.",
  "endpoints": [
    {
      "slug": "x402-readiness-check",
      "id": "hosted-endpoint-x402-readiness-check",
      "title": "x402 Readiness Check",
      "description": "Free public diagnostic endpoint that inspects a submitted MCP/x402 metadata URL and returns readiness notes, expected discovery URLs, and safe next actions.",
      "status": "active",
      "priceUsd": 0,
      "handlerType": "x402_readiness_check",
      "runtime": "managed_builtin_handler",
      "pricingMode": "free_public_utility",
      "url": "https://payments.wiselyenterprisesllc.com/tools/x402-readiness-check",
      "method": "POST",
      "tags": [
        "x402",
        "mcp",
        "registry",
        "readiness"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "description": "Public manifest, server.json, MCP metadata, or paid endpoint URL to inspect."
          }
        },
        "required": [
          "url"
        ]
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {},
      "createdAt": "2026-05-21T00:00:00.000Z",
      "updatedAt": "2026-05-21T00:00:00.000Z"
    },
    {
      "slug": "agent-payment-receipt-echo",
      "id": "hosted-endpoint-agent-payment-receipt-echo",
      "title": "Agent Payment Receipt Echo",
      "description": "Free test endpoint for validating clients. It echoes a public-safe request summary and returns a receipt-shaped response without charging.",
      "status": "active",
      "priceUsd": 0,
      "handlerType": "receipt_echo",
      "runtime": "managed_builtin_handler",
      "pricingMode": "free_public_utility",
      "url": "https://payments.wiselyenterprisesllc.com/tools/agent-payment-receipt-echo",
      "method": "POST",
      "tags": [
        "x402",
        "test",
        "receipt"
      ],
      "inputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {},
      "createdAt": "2026-05-21T00:00:00.000Z",
      "updatedAt": "2026-05-21T00:00:00.000Z"
    },
    {
      "slug": "creator-personalized-plan-demo",
      "id": "hosted-endpoint-creator-personalized-plan-demo",
      "title": "Creator Personalized Plan Demo",
      "description": "Paid creator-skill demo endpoint. It turns a subscriber's situation into a compact 7-day action plan and returns a receipt-backed result.",
      "status": "active",
      "priceUsd": 1,
      "handlerType": "js_request_response",
      "runtime": "admin_gated_js_request_response_v1",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/creator-personalized-plan-demo",
      "method": "POST",
      "tags": [
        "creator-skill",
        "paid-tool",
        "demo",
        "x402"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "role": {
            "type": "string",
            "description": "The subscriber's role or business."
          },
          "goal": {
            "type": "string",
            "description": "The outcome they want."
          },
          "timeBudget": {
            "type": "string",
            "description": "Available time, for example 5 hours/week."
          },
          "audience": {
            "type": "string",
            "description": "Who they want to reach."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "tone": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "summary": {
            "type": "string"
          },
          "plan": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "creatorCatalogUsed": {
            "type": "string"
          }
        }
      },
      "capabilities": {},
      "createdAt": "2026-05-24T00:00:00.000Z",
      "updatedAt": "2026-05-24T00:00:00.000Z"
    },
    {
      "slug": "paid-receipt-test",
      "id": "hosted-endpoint-paid-receipt-test",
      "title": "Paid Receipt Test",
      "description": "Ultra-low-cost x402 endpoint that proves quote, pay or developer-credit invoke, result, logs, and receipt.",
      "status": "active",
      "priceUsd": 0.001,
      "handlerType": "receipt_echo",
      "runtime": "managed_builtin_handler",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/paid-receipt-test",
      "method": "POST",
      "tags": [
        "x402",
        "receipt",
        "test",
        "paid-endpoint"
      ],
      "inputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {
        "kv": false,
        "files": false,
        "httpGetJson": false,
        "logs": true
      },
      "createdAt": "2026-05-22T00:00:00.000Z",
      "updatedAt": "2026-05-22T11:06:42.538Z"
    },
    {
      "slug": "ai-summary-demo",
      "id": "hosted-endpoint-ai-summary-demo",
      "title": "AI Summary Endpoint Demo",
      "description": "Summarize text into a short summary, entities, keywords, and action items to demonstrate a paid AI-style endpoint.",
      "status": "active",
      "priceUsd": 0.01,
      "handlerType": "js_request_response",
      "runtime": "admin_gated_js_request_response_v1",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/ai-summary-demo",
      "method": "POST",
      "tags": [
        "summary",
        "ai-workflow",
        "paid-api",
        "x402"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {
        "kv": false,
        "files": false,
        "httpGetJson": false,
        "logs": true
      },
      "createdAt": "2026-05-22T00:00:00.000Z",
      "updatedAt": "2026-05-22T11:06:42.540Z"
    },
    {
      "slug": "business-lookup-demo",
      "id": "hosted-endpoint-business-lookup-demo",
      "title": "Business Lookup Demo",
      "description": "Normalize a company name or domain into a compact business profile and suggested paid endpoint shape.",
      "status": "active",
      "priceUsd": 0.01,
      "handlerType": "js_request_response",
      "runtime": "admin_gated_js_request_response_v1",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/business-lookup-demo",
      "method": "POST",
      "tags": [
        "business-data",
        "enrichment",
        "paid-api",
        "x402"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "company": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {
        "kv": false,
        "files": false,
        "httpGetJson": false,
        "logs": true
      },
      "createdAt": "2026-05-22T00:00:00.000Z",
      "updatedAt": "2026-05-22T11:06:42.540Z"
    },
    {
      "slug": "developer-utility-demo",
      "id": "hosted-endpoint-developer-utility-demo",
      "title": "Developer Utility Demo",
      "description": "Inspect a schema, OpenAPI snippet, MCP tool definition, or API description and return wrapper guidance.",
      "status": "active",
      "priceUsd": 0.01,
      "handlerType": "js_request_response",
      "runtime": "admin_gated_js_request_response_v1",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/developer-utility-demo",
      "method": "POST",
      "tags": [
        "developer-tooling",
        "mcp",
        "openapi",
        "paid-api"
      ],
      "inputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {
        "kv": false,
        "files": false,
        "httpGetJson": false,
        "logs": true
      },
      "createdAt": "2026-05-22T00:00:00.000Z",
      "updatedAt": "2026-05-22T11:06:42.540Z"
    },
    {
      "slug": "crypto-conversion-quote-demo",
      "id": "hosted-endpoint-crypto-conversion-quote-demo",
      "title": "Crypto Conversion Quote Demo",
      "description": "Explain how a caller starts with one supported crypto asset and gets a route toward the x402 settlement asset.",
      "status": "active",
      "priceUsd": 0.001,
      "handlerType": "js_request_response",
      "runtime": "admin_gated_js_request_response_v1",
      "pricingMode": "fixed_price_success_receipt",
      "url": "https://payments.wiselyenterprisesllc.com/tools/crypto-conversion-quote-demo",
      "method": "POST",
      "tags": [
        "crypto-conversion",
        "x402",
        "payment-routing",
        "demo"
      ],
      "inputSchema": {
        "type": "object",
        "properties": {
          "serviceId": {
            "type": "string"
          },
          "startNetwork": {
            "type": "string"
          },
          "startAsset": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "additionalProperties": true
      },
      "capabilities": {
        "kv": false,
        "files": false,
        "httpGetJson": false,
        "logs": true
      },
      "createdAt": "2026-05-22T00:00:00.000Z",
      "updatedAt": "2026-05-22T11:06:42.540Z"
    }
  ]
}