mirrored listing x402 eip155:8453

Resolve the site's IP and check it against 15 major DNSBL spam/abuse blacklists

Resolve the site's IP and check it against 15 major DNSBL spam/abuse blacklists. Use before sending mail from, or trusting, a host. WARN = listed on 1–2 lists; DOWN = listed on 3 or more.

Do you run x402.cloudpulsepoint.com? 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
30000 (raw units)
price
23
calls / 30d
1
unique payers
2026-09-14
updated

Provider

x402.cloudpulsepoint.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x05a877EF93E7818828D199E2Df0028bca3C75bf0",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "30000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "url": "https://example.com"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "check": "blacklist",
          "network": "eip155:8453",
          "result": {
            "error": null,
            "listedCount": 0,
            "listedTotal": 15,
            "sources": null,
            "status": "UP",
            "url": "https://example.com/",
            "warning": null
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "url": {
                  "description": "Full http(s) URL of the site to check, e.g. \"https://example.com\". Must resolve to a public address — private, loopback, link-local, and cloud-metadata targets are rejected with HTTP 400 before any payment.",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ]
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "check": {
                  "const": "blacklist",
                  "description": "Identifies which check produced this result."
                },
                "network": {
                  "description": "CAIP-2 id of the chain the payment settled on (e.g. eip155:8453 = Base).",
                  "type": "string"
                },
                "result": {
                  "properties": {
                    "error": {
                      "description": "Human-readable failure reason, or null on success.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "listedCount": {
                      "description": "Number of blacklists the IP was found on.",
                      "type": [
                        "integer",
                        "null"
                      ]
                    },
                    "listedTotal": {
                      "description": "Total number of blacklists queried (15).",
                      "type": [
                        "integer",
                        "null"
                      ]
                    },
                    "sources": {
                      "description": "Comma-separated names of the blacklists that listed the IP, or null if clean.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "status": {
                      "description": "UP = listed on 0 blacklists; WARN = listed on 1–2; DOWN = listed on 3 or more.",
                      "enum": [
                        "UP",
                        "WARN",
                        "DOWN"
                      ],
                      "type": "string"
                    },
                    "url": {
                      "description": "The normalized URL that was checked.",
                      "type": "string"
                    },
                    "warning": {
                      "description": "Human-readable warning when the check passed but a threshold was crossed, else null.",
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://x402.cloudpulsepoint.com/agent/check/blacklist"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://x402.cloudpulsepoint.com/agent/check/blacklist");
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://x402.cloudpulsepoint.com/agent/check/blacklist")
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/3172.json, and this resource appears in /discovery/resources and /discovery/search.