mirrored listing x402 eip155:8453

Boon x402 endpoint recognition graph

Boon x402 endpoint recognition graph

Do you run api.boonprotocol.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
10000 (raw units)
price
8
calls / 30d
5
unique payers
2026-09-17
updated

Provider

api.boonprotocol.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "context": "with",
          "eventLimit": 200,
          "limit": 20,
          "sort": "reviewed"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "edges": [
            {
              "from": "wallet:0x0000000000000000000000000000000000000002",
              "kind": "recognized",
              "relationshipSignals": {
                "directRelatedParty": false
              },
              "to": "route:0x9569f7ef2e344da57aa497dafe4509499f133340d1e0ab0d3e93f6e7c057bb0e"
            }
          ],
          "nodes": [
            {
              "id": "route:0x9569f7ef2e344da57aa497dafe4509499f133340d1e0ab0d3e93f6e7c057bb0e",
              "kind": "endpoint"
            },
            {
              "id": "wallet:0x0000000000000000000000000000000000000002",
              "kind": "wallet"
            }
          ],
          "version": "1"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "context": {
                  "default": "with",
                  "enum": [
                    "with",
                    "all",
                    "raw"
                  ],
                  "type": "string"
                },
                "eventLimit": {
                  "default": 200,
                  "maximum": 500,
                  "minimum": 1,
                  "type": "integer"
                },
                "limit": {
                  "default": 20,
                  "maximum": 50,
                  "minimum": 1,
                  "type": "integer"
                },
                "method": {
                  "type": "string"
                },
                "origin": {
                  "format": "uri",
                  "type": "string"
                },
                "q": {
                  "maxLength": 160,
                  "type": "string"
                },
                "recognizer": {
                  "pattern": "^0x[0-9a-fA-F]{40}$",
                  "type": "string"
                },
                "sort": {
                  "default": "reviewed",
                  "enum": [
                    "reviewed",
                    "recent"
                  ],
                  "type": "string"
                }
              },
              "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"
    }
  }
}

Use it

curl

curl "https://api.boonprotocol.com/api/v1/x402/graph"
# -> 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.boonprotocol.com/api/v1/x402/graph");
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.boonprotocol.com/api/v1/x402/graph")
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/9052.json, and this resource appears in /discovery/resources and /discovery/search.