UAI Systems x402 API Catalog

Machine-consumable paid APIs for autonomous agents. No API key. Pay per call via x402.

Discovery

x402 Payment

Product Catalog

IDEndpointPriceDescription
policy-genie POST /api/v1/validate-policy $0.05 Validate AWS IAM and Cloudflare Zero Trust policy JSON for risky wildcards, bypass rules, weak scoping, and embedded secrets.
cloudflare-zero-trust-audit POST /api/v1/cloudflare-zero-trust-audit $0.05 Analyze Cloudflare Zero Trust Access policy JSON for bypass rules, allow-everyone patterns, and weak identity constraints.
iam-risk-score POST /api/v1/iam-risk-score $0.03 Return a focused AWS IAM risk score and severity summary for a submitted IAM policy document.
secret-scan POST /api/v1/secret-scan $0.02 Scan submitted text for exposed secrets and return redacted output without exposing matched secret values.
agentic-commerce-readiness POST /api/v1/agentic-commerce-readiness $0.10 Assess whether a company, API, or product description is a strong fit for x402/AP2-style agentic commerce.
dns-email-security-audit POST /api/v1/dns-email-security-audit $0.10 Audit a domain's DNS and email authentication posture including MX, SPF, DMARC, DKIM, BIMI, and MTA-STS/TLS reporting records.
wrangler-config-audit POST /api/v1/wrangler-config-audit $0.05 Audit a Cloudflare wrangler.toml for production-unsafe settings, plaintext secrets in vars, risky routes, and missing observability.

Example Inputs

Policy Genie

POST https://x402-hono-api.inraby.workers.dev/api/v1/validate-policy — $0.05

{
  "rawPolicyText": "{\"Version\":\"2012-10-17\",\"Statement\":[]}"
}

Cloudflare Zero Trust Audit

POST https://x402-hono-api.inraby.workers.dev/api/v1/cloudflare-zero-trust-audit — $0.05

{
  "policyText": "{\"decision\":\"allow\",\"include\":[{\"email\":{\"email\":\"user@example.com\"}}]}"
}

IAM Risk Score

POST https://x402-hono-api.inraby.workers.dev/api/v1/iam-risk-score — $0.03

{
  "policyText": "{\"Version\":\"2012-10-17\",\"Statement\":[]}"
}

Secret Scan

POST https://x402-hono-api.inraby.workers.dev/api/v1/secret-scan — $0.02

{
  "text": "api_token=REDACTED_EXAMPLE"
}

Agentic Commerce Readiness

POST https://x402-hono-api.inraby.workers.dev/api/v1/agentic-commerce-readiness — $0.10

{
  "productDescription": "An API that validates IAM policies for autonomous agents.",
  "targetBuyer": "security automation agents"
}

DNS / Email Security Audit

POST https://x402-hono-api.inraby.workers.dev/api/v1/dns-email-security-audit — $0.10

{
  "domain": "example.com"
}

Wrangler Config Risk Audit

POST https://x402-hono-api.inraby.workers.dev/api/v1/wrangler-config-audit — $0.05

{
  "wranglerToml": "name = \"demo-worker\"\ncompatibility_date = \"2024-09-23\"\n"
}

Agent Call Flow

  1. Fetch GET /api/v1/catalog or GET /.well-known/x402-catalog.
  2. POST to a paid endpoint without payment and receive 402.
  3. Read payment requirements from the payment-required response header.
  4. Retry the same POST with X-PAYMENT attached.