mirrored listing x402 eip155:8453

Paid x402 passport endpoint

Paid x402 passport endpoint

Do you run api.x402passport.xyz? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-14
updated

Provider

api.x402passport.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x283D48a121a36789853fa727Af985608CFa46636",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "wallet": "0xB038de22979E7640576f9F1Fb52e308Ed7d1dA44"
        },
        "queryParams": {},
        "type": "http"
      },
      "output": {
        "example": {
          "asOf": "2026-01-01T00:00:00.000Z",
          "categoryConcentration": {
            "basis": "indexed_public_category_aggregates",
            "categoryCount": 0,
            "dominantShareBand": "unknown",
            "status": "unavailable"
          },
          "caveats": [
            "Public aggregate evidence only; private evidence is excluded."
          ],
          "coverage": {
            "asset": "USDC",
            "history": "bounded_index_and_owner_public_projection",
            "interactionCount": 0,
            "scope": "public_aggregate_only",
            "serverBreakdown": "unavailable",
            "serverCount": 0,
            "source": "public_profile_metadata_only"
          },
          "dimensions": {},
          "factorExplanations": {},
          "freshness": {
            "status": "unknown"
          },
          "network": "eip155:8453",
          "nextActions": [
            "Review confidence, public evidence status, and cap reasons before relying on the score."
          ],
          "payment": {
            "builderCode": "bc_31cysl9x",
            "mode": "facilitator",
            "network": "eip155:8453",
            "offerReceipt": {
              "enabled": false,
              "includeTxHash": false,
              "offerValiditySeconds": 300
            },
            "payTo": "0x283D48a121a36789853fa727Af985608CFa46636",
            "protocol": "x402",
            "routeId": "passport"
          },
          "publicSince": "2026-01-01T00:00:00.000Z",
          "riskFlags": [
            "LOW_CONFIDENCE",
            "INSUFFICIENT_SAMPLE",
            "METADATA_ONLY",
            "CATEGORY_BREAKDOWN_UNAVAILABLE"
          ],
          "schemaVersion": "x402-passport.wallet-due-diligence.v1",
          "score": {
            "capReasons": [
              "insufficient_sample",
              "metadata_only"
            ],
            "confidenceTier": "low",
            "evidenceStatus": "no_public_qualifying_activity",
            "value": 0,
            "version": "wallet-reputation-v2"
          },
          "serverRelationships": {
            "scope": "aggregate_only",
            "status": "unavailable"
          },
          "wallet": "0x1111111111111111111111111111111111111111"
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/x402/passport/:wallet",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "pathParams": {
              "additionalProperties": false,
              "properties": {
                "wallet": {
                  "pattern": "^0x[a-fA-F0-9]{40}$",
                  "type": "string"
                }
              },
              "required": [
                "wallet"
              ],
              "type": "object"
            },
            "queryParams": {
              "properties": {},
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "builder-code": {
    "info": {
      "a": "bc_31cysl9x"
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "additionalProperties": false,
      "properties": {
        "a": {
          "description": "App builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        },
        "s": {
          "description": "Service builder codes",
          "items": {
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "type": "array"
        },
        "w": {
          "description": "Wallet builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "payment-identifier": {
    "info": {
      "required": false
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "id": {
          "maxLength": 128,
          "minLength": 16,
          "pattern": "^[a-zA-Z0-9_-]+$",
          "type": "string"
        },
        "required": {
          "type": "boolean"
        }
      },
      "required": [
        "required"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.x402passport.xyz/v1/x402/passport/:wallet"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.x402passport.xyz/v1/x402/passport/:wallet");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.x402passport.xyz/v1/x402/passport/:wallet")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6434.json, and this resource appears in /discovery/resources and /discovery/search.