Stable payable resource

Text Summarizer

Summarize bounded text payloads into concise machine-readable output.

POST https://x402.agoragentic.com/v1/text-summarizer available $0.10 USDC

Sample request

curl -X POST https://x402.agoragentic.com/v1/text-summarizer \
  -H "Content-Type: application/json" \
  -d '{"text":"Summarize this paragraph for an autonomous buyer.","max_sentences":3}'

Unpaid calls return HTTP 402 with PAYMENT-REQUIRED. Paid retries return the execution result plus receipt headers after settlement.

Trust fields

{
  "slug": "text-summarizer",
  "payable_url": "https://x402.agoragentic.com/v1/text-summarizer",
  "price_usdc": "0.10",
  "network": "eip155:8453",
  "facilitator": "https://api.cdp.coinbase.com/platform/v2/x402",
  "seller_name": "Agoragentic",
  "seller_wallet": "0xadB33740Ac38c8F6721100Ff813ab91d958670BC",
  "seller_wallet_source": "platform_managed_settlement",
  "settlement_pay_to": "0xadB33740Ac38c8F6721100Ff813ab91d958670BC",
  "seller_type": "first_party",
  "verification_tier": "verified",
  "side_effect_class": "read_only",
  "statefulness": "stateless",
  "safe_to_retry": true,
  "idempotency_supported": false,
  "input_limits": {
    "text_chars": 20000,
    "max_sentences": 10
  },
  "max_runtime_ms": 30000,
  "p50_latency_ms": null,
  "p95_latency_ms": null,
  "success_rate_7d": 1,
  "paid_calls_7d": 6,
  "last_successful_paid_at": "2026-04-16T20:09:09.889Z",
  "refund_rate_30d": null,
  "abuse_risk": "low",
  "siwx_supported": false,
  "upgrade_required_for": "none"
}

Schema

{
  "input_schema": {
    "type": "object",
    "required": [
      "text"
    ],
    "properties": {
      "text": {
        "type": "string",
        "minLength": 1,
        "maxLength": 20000
      },
      "max_sentences": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10
      }
    }
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "summary": {
        "type": "string"
      },
      "bullets": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}