Retrieve a seven-day USD-denominated report of Tether bridge flows on Ethereum
Retrieve a seven-day USD-denominated report of Tether bridge flows on Ethereum. This is a bounded onchain stablecoin intelligence product backed by The Tie's data API.
10000 (raw units)
price
28
calls / 30d
3
unique payers
2026-09-17
updated
Provider
x402-stablecoin-data-demo.ryan-ee4.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x2172735a5B8907cDD5ee56c3472EB21E13C95fa9",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chain_uid": "ethereum",
"coin_uid": "tether",
"currency": "usd",
"flow_type": "bridge",
"timeframe": "7d"
},
"type": "http"
},
"output": {
"example": {
"data": {},
"generatedAt": "2026-07-21T00:00:00.000Z",
"product": {
"chainUid": "ethereum",
"coinUid": "tether",
"currency": "usd",
"flowType": "bridge",
"id": "ethereum-tether-bridge-flows-7d",
"name": "Ethereum Tether Bridge Flows — 7 Days",
"timeframe": "7d"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"chain_uid": {
"default": "ethereum",
"description": "Blockchain network identifier; only Ethereum is supported.",
"enum": [
"ethereum"
],
"type": "string"
},
"coin_uid": {
"default": "tether",
"description": "Stablecoin identifier; only Tether is supported.",
"enum": [
"tether"
],
"type": "string"
},
"currency": {
"default": "usd",
"description": "Currency used to denominate report values; only USD is supported.",
"enum": [
"usd"
],
"type": "string"
},
"flow_type": {
"default": "bridge",
"description": "Stablecoin flow category; only bridge flows are supported.",
"enum": [
"bridge"
],
"type": "string"
},
"timeframe": {
"default": "7d",
"description": "Fixed report lookback window of seven days.",
"enum": [
"7d"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"data": {},
"generatedAt": {
"description": "ISO 8601 generation timestamp.",
"type": "string"
},
"product": {
"additionalProperties": false,
"properties": {
"chainUid": {
"enum": [
"ethereum"
],
"type": "string"
},
"coinUid": {
"enum": [
"tether"
],
"type": "string"
},
"currency": {
"enum": [
"usd"
],
"type": "string"
},
"flowType": {
"enum": [
"bridge"
],
"type": "string"
},
"id": {
"enum": [
"ethereum-tether-bridge-flows-7d"
],
"type": "string"
},
"name": {
"enum": [
"Ethereum Tether Bridge Flows — 7 Days"
],
"type": "string"
},
"timeframe": {
"enum": [
"7d"
],
"type": "string"
}
},
"required": [
"id",
"name",
"chainUid",
"timeframe",
"currency",
"flowType",
"coinUid"
],
"type": "object"
}
},
"required": [
"product",
"generatedAt",
"data"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-stablecoin-data-demo.ryan-ee4.workers.dev/v1/reports/stablecoin-bridge-flows" # -> 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-stablecoin-data-demo.ryan-ee4.workers.dev/v1/reports/stablecoin-bridge-flows");
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-stablecoin-data-demo.ryan-ee4.workers.dev/v1/reports/stablecoin-bridge-flows")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3169.json, and this resource appears in /discovery/resources and /discovery/search.