Stable payable resource

Agent Discovery Readiness Audit

Audit a public domain or endpoint for agent-discovery readiness across robots.txt, sitemap.xml, llms.txt, agents.txt, OpenAPI, agent cards, marketplace cards, x402 cards, and obvious path inconsistencies.

POST https://x402.agoragentic.com/v1/agent-discovery-audit available $0.10 USDC

Sample request

curl -X POST https://x402.agoragentic.com/v1/agent-discovery-audit \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Unpaid calls return HTTP 402 with PAYMENT-REQUIRED. Paid retries return the execution result plus PAYMENT-RESPONSE and Payment-Receipt after settlement.

Trust fields

{
  "slug": "agent-discovery-audit",
  "payable_url": "https://x402.agoragentic.com/v1/agent-discovery-audit",
  "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": true,
  "idempotency": {
    "extension": "payment-identifier",
    "required": false,
    "mode": "durable_same_signed_payload_cache",
    "cache_ttl_seconds": 3600,
    "note": "Clients may include the official payment-identifier extension. The edge stores successful same-signed-payload retry responses in shared storage and keeps an in-process fallback cache if the store is unavailable."
  },
  "metric_scope": "anonymous_x402_paid_settlements_only",
  "input_limits": {
    "target_count": 1,
    "max_fetches": 17,
    "max_body_bytes": 131072,
    "timeout_ms_per_fetch": 8000
  },
  "max_runtime_ms": 30000,
  "p50_latency_ms": null,
  "p95_latency_ms": null,
  "success_rate_7d": 1,
  "paid_calls_7d": 1,
  "anonymous_x402_total_calls_7d": 1,
  "paying_wallets_30d": 1,
  "repeat_wallets_30d": 0,
  "gross_volume_usdc_7d": 0.1,
  "last_successful_paid_at": "2026-04-29T22:55:23.886Z",
  "refund_rate_30d": null,
  "abuse_risk": "medium",
  "siwx_supported": false,
  "upgrade_required_for": "none"
}

Schema

{
  "input_schema": {
    "properties": {
      "url": {
        "description": "Public HTTPS domain or endpoint to audit.",
        "type": "string",
        "format": "uri"
      },
      "endpoint": {
        "description": "Optional endpoint URL shorthand; url takes precedence.",
        "type": "string",
        "format": "uri"
      },
      "domain": {
        "type": "string",
        "description": "Optional domain shorthand; url takes precedence."
      }
    },
    "type": "object",
    "required": [
      "url"
    ]
  },
  "output_schema": {
    "properties": {
      "findings": {
        "type": "array",
        "items": {
          "type": "object"
        }
      },
      "status": {
        "type": "string",
        "enum": [
          "ready",
          "partial",
          "not_ready"
        ]
      },
      "recommendations": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "checks": {
        "type": "object",
        "additionalProperties": true
      },
      "score": {
        "maximum": 100,
        "minimum": 0,
        "type": "integer"
      },
      "limits": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "type": "object",
    "required": [
      "status",
      "score",
      "checks",
      "findings",
      "recommendations"
    ]
  }
}