{
  "endpoint": "https://mondello.dev/api/x402/llms/pack",
  "method": "POST",
  "contentType": "application/json",
  "pricing": {
    "base": "$0.05",
    "perUrl": "$0.01",
    "formula": "price = base + count * perUrl",
    "examples": {
      "1 url": "$0.06",
      "5 urls": "$0.10",
      "20 urls": "$0.25"
    }
  },
  "limits": {
    "maxUrls": 20,
    "maxCharsPerPage": 50000,
    "fetchTimeoutMs": 15000
  },
  "network": "eip155:8453",
  "asset": "USDC",
  "payTo": "0x0E4d1C7Ca47879C7Dd518526ef38f290C7081028",
  "description": "Fetch a list of URLs and return an llms-full-style plaintext bundle. Parallel fetching, HTML stripped, one round-trip.",
  "body": {
    "urls": "string[] (1..20, https only)",
    "maxCharsPerPage": "number (optional, default 20000, max 50000)"
  },
  "returns": "text/plain — # title / url / body sections separated by ---",
  "example": {
    "curl": "curl -X POST https://mondello.dev/api/x402/llms/pack \\\n  -H \"Content-Type: application/json\" \\\n  --data '{\"urls\":[\"https://example.com\",\"https://example.org\"]}'"
  }
}