mirrored listing x402 eip155:8453

Returns whale, CEX, bridge, and stablecoin flow alerts for a chosen chain and lookback win

Returns whale, CEX, bridge, and stablecoin flow alerts for a chosen chain and lookback window, each with direction, venue, and USD value — use it to catch large capital movements before they move price. Typical agent tasks: check for a large exchange inflow on Base, monitor bridge flows into or out of a chain, track stablecoin issuer mint or burn events, or add on-chain flow context to a crypto market-intelligence pipeline. Configurable 1-168 hour lookback, USDC on Base via x402.

Do you run crypto.forgemesh.io? 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
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-25
updated

Provider

crypto.forgemesh.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x93A1F57D2e0DBE4cc882b5DbAEbe7F0F16443338",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "20000",
    "maxTimeoutSeconds": 1800
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "chain": "base",
          "hours": 4
        },
        "type": "http"
      },
      "output": {
        "example": {
          "alert_count": 2,
          "alerts": [
            {
              "direction": "in",
              "type": "exchange_flow",
              "value_usd": 750000,
              "venue": "Coinbase"
            }
          ],
          "chain": "base",
          "window_hours": 4
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "chain": {
                  "enum": [
                    "ethereum",
                    "base",
                    "arbitrum"
                  ],
                  "type": "string"
                },
                "hours": {
                  "maximum": 168,
                  "minimum": 1,
                  "type": "number"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "alert_count": {
                  "type": "number"
                },
                "alerts": {
                  "type": "array"
                },
                "chain": {
                  "type": "string"
                },
                "window_hours": {
                  "type": "number"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "offer-receipt": {
    "info": {
      "offers": [
        {
          "acceptIndex": 0,
          "format": "eip712",
          "payload": {
            "amount": "20000",
            "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
            "network": "eip155:8453",
            "payTo": "0x93A1F57D2e0DBE4cc882b5DbAEbe7F0F16443338",
            "resourceUrl": "https://crypto.forgemesh.io/api/whale",
            "scheme": "exact",
            "validUntil": 1787685782,
            "version": 1
          },
          "signature": "0x11ba86f44156adb4217ac68de4af29233513d6b86fe0b5fa1f1db1d3c103aaac692fe640615e138ed827dd55f71945f8370896bc66fe17c382df14157767a4e51b"
        }
      ]
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "offers": {
          "items": {
            "properties": {
              "acceptIndex": {
                "type": "integer"
              },
              "format": {
                "type": "string"
              },
              "payload": {
                "properties": {
                  "amount": {
                    "type": "string"
                  },
                  "asset": {
                    "type": "string"
                  },
                  "network": {
                    "type": "string"
                  },
                  "payTo": {
                    "type": "string"
                  },
                  "resourceUrl": {
                    "type": "string"
                  },
                  "scheme": {
                    "type": "string"
                  },
                  "validUntil": {
                    "type": "integer"
                  },
                  "version": {
                    "type": "integer"
                  }
                },
                "required": [
                  "version",
                  "resourceUrl",
                  "scheme",
                  "network",
                  "asset",
                  "payTo",
                  "amount"
                ],
                "type": "object"
              },
              "signature": {
                "type": "string"
              }
            },
            "required": [
              "format",
              "signature"
            ],
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "offers"
      ],
      "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://crypto.forgemesh.io/api/whale"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://crypto.forgemesh.io/api/whale");
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://crypto.forgemesh.io/api/whale")
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/4988.json, and this resource appears in /discovery/resources and /discovery/search.