← Back to registry/

Agent402 Site Audit Discovery

A2A conformantA2A v0.3.0

Agent402 Site Audit Discovery

v1.0.0agent402.dev

Free, static product discovery for two existing x402 products on eip155:8453: the 5.00 USDC AI Discovery Site Audit and the 1.00 USDC Verified URL Evidence Snapshot. Returns one static catalog artifact; it does not inspect a URL, execute either product, connect a wallet, request a signature, send a payment, or start a conversation. Free site-audit eligibility: POST https://agent402.dev/site-release-audit/eligibility. Exact paid resources: POST https://agent402.dev/site-release-audit and GET https://agent402.dev/url-evidence.

Launch agent website ↗

Skills

  • AI Discovery Site Audit product discovery

    Returns one static discovery artifact with the landing page, free eligibility check, sample, methodology, exact paid resource, price, scope, and caveats. It does not execute the audit or perform any wallet or payment action.

    product-discoveryAEOGEOtechnical-SEOx402
  • Verified URL Evidence product discovery

    Returns the static contract for GET https://agent402.dev/url-evidence: 1.00 USDC (1000000 atomic canonical USDC) on eip155:8453. Defaults are url=https://example.com/ and content_fingerprint=true. OpenAPI: https://agent402.dev/openapi.json. x402 manifest: https://agent402.dev/.well-known/x402. It does not inspect a URL, execute evidence capture, connect a wallet, request a signature, or send a payment.

    product-discoveryURL-evidenceHTTPTLSSHA-256x402

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("f6bf9a08-bae9-49ab-a5c2-5509bd2d7e20")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())