x402 List

x402 Protocol Service Directory

IntentFence

Verification

Pre-transaction policy and quote safety checks for autonomous AI agents. Agents can pay per request in USDC on Base via x402 to receive bounded risk assessments and signed verification receipts.

Pay from $0.005 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

UPTIME 24H 100% 7D 100% 30D 100%
BASE URL https://agentpass-protocol.rmalka06.chatgpt.site WEBSITE https://agentpass-protocol.rmalka06.chatgpt.site ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-21 MONITORED SINCE 2026-07-21

ASSESSMENT

updated 1h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
100%
response p95
3821ms
avg response
2442ms
total checks
24
compliance A (11/11)

11 of 11 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.005 (p53 in Verification)
price (min)
$0.005
category percentile (min)
p53 in Verification
endpoints / prices
1 / 1
model
flat
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
last settlement
---
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Provides AI-agent payment safety and policy preflight checks, wallet screening, and official U.S. CPI data retrieval

category
agent-verification
in
body
verificationwallet-screeningpolicy-checksdata-retrievalpayment-safety

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /api/preflight/verified $0.005 Base USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /api/preflight/verified returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://agentpass-protocol.rmalka06.chatgpt.site/api/preflight/verified'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x833ca7dcdb6a681ddc0c15982ef0d609bceb3a5e",
        "amount": "5000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://agentpass-protocol.rmalka06.chatgpt.site/api/preflight/verified",
      "tags": [
        "ai-agents",
        "payment-firewall",
        "preflight",
        "x402",
        "usdc"
      ],
      "iconUrl": "https://agentpass-protocol.rmalka06.chatgpt.site/favicon.svg",
      "mimeType": "application/json",
      "description": "Run a paid IntentFence preflight and receive x402 on-chain settlement proof.",
      "serviceName": "IntentFence"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "action": {
                "type": "purchase",
                "resource": "order-1842"
              },
              "subject": "did:web:checkout-agent",
              "constraints": {
                "currency": "USD",
                "quoted_cost": 79,
                "cost_ceiling": 100,
                "human_approval": "not_required",
                "data_retention_hours": 24
              }
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "status": "safe_to_proceed",
              "receipt": {
                "format": "JWS Compact",
                "signed": true,
                "algorithm": "ES256"
              },
              "request_id": "7d7fbf44-3c39-4eca-89d6-b44d756c8df1",
              "intentfence": "0.5",
              "verification_tier": "x402-settled"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "subject",
                    "action"
                  ],
                  "properties": {
                    "action": {
                      "type": "object",
                      "required": [
                        "type"
                      ],
                      "properties": {
                        "type": {
                          "type": "string",
                          "maxLength": 120,
                          "minLength": 1
                        },
                        "resource": {
                          "type": "string",
                          "maxLength": 500
                        }
                      }
                    },
                    "proofs": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "maxItems": 20
                    },
                    "subject": {
                      "type": "string",
                      "maxLength": 200,
                      "minLength": 1,
                      "description": "Agent or principal identifier."
                    },
                    "constraints": {
                      "type": "object",
                      "properties": {
                        "currency": {
                          "type": "string",
                          "maxLength": 12
                        },
                        "quoted_cost": {
                          "type": "number",
                          "minimum": 0
                        },
                        "cost_ceiling": {
                          "type": "number",
                          "minimum": 0
                        },
                        "human_approval": {
                          "enum": [
                            "required",
                            "optional",
                            "not_required"
                          ],
                          "type": "string"
                        },
                        "data_retention_hours": {
                          "type": "number",
                          "minimum": 0
                        }
                      }
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST",
                    "PUT",
                    "PATCH"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "required": [
                    "intentfence",
                    "request_id",
                    "status",
                    "verification_tier",
                    "receipt"
                  ],
                  "properties": {
                    "status": {
                      "enum": [
                        "safe_to_proceed",
                        "needs_review",
                        "denied"
                      ],
                      "type": "string"
                    },
                    "receipt": {
                      "type": "object"
                    },
                    "request_id": {
                      "type": "string",
                      "format": "uuid"
                    },
                    "intentfence": {
                      "type": "string",
                      "const": "0.5"
                    },
                    "verification_tier": {
                      "type": "string",
                      "const": "x402-settled"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

UPTIME

07-21 · uptime 100.0% · 2218ms avg07-2107-21
RESPONSE TIME
07-21 · 2218ms avg07-21 · 2218ms avg07-2107-21
24h UPTIME 100%
UPTIME 24H 100%
AVG RESP 2218ms
TOTAL CHECKS 28

RECENT CHECKS

TIME STATUS RESP
● OK 454ms
● OK 1180ms
● OK 1285ms
● OK 596ms
● OK 1986ms
● OK 1339ms
● OK 1035ms
● OK 3194ms
● OK 2562ms
● SLOW 3329ms
● OK 2876ms
● OK 2862ms
● OK 1254ms
● OK 1357ms
● OK 1599ms
● OK 2727ms
● OK 2345ms
● OK 2102ms

OVER TIME

All charts share the 24h window selected here. Every series is also served as JSON at /api/v1/services/intentfence/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

PRICE (captured 402, USD)
building price history ($0.005)
SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

11/11 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS

EMBED THIS BADGE

Show that IntentFence is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

IntentFence listed on x402-list
status
IntentFence uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/intentfence?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/intentfence.svg" alt="IntentFence listed on x402-list" height="28">
</a>
// Markdown
[![IntentFence on x402-list](https://x402-list.com/badge/intentfence.svg)](https://x402-list.com/services/intentfence?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/intentfence?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/intentfence.svg?data=uptime" alt="IntentFence uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]