SERVICE / DETAILother

Recent JPYC Transfers

GET open-pay.jp/api/paid/usdc/jpyc/transfers

SONAR SCORE0.596
LIVE PRICE0.005000
BAZAAR LIVEcompatible
CDP INDEXEDno
DECISION EVIDENCE

Why an agent can trust this route.

19 observations in the last 24h
HANDSHAKE SUCCESS94.7%402 challenge reachable
PAID DELIVERY0.0%settlement observed
P90 LATENCY4097msrecent response window
PRICE DRIFT0.0%advertised vs observed

Sonar evidence is advisory. Paid delivery is shown as verified only when paid probes are available; otherwise route estimates use the unpaid handshake as a clearly labeled proxy.

SONAR PROBE HISTORY / 30D

Observed outcomes

JSON ↗
LIVE ENDPOINT METADATA

List recent JPYC Transfer events on one supported chain from roughly the last hour of blocks, optionally filtered by address — tx hash, from, to, amount, block. Without a cursor: newest first. With a cursor: only events after that position, oldest first, so each observed event is returned once within the scanned window. Use to confirm a recent JPYC payment or monitor wallet activity. Not for history beyond the window, sanctions screening, identity, or finality proof.

Resource: open-pay.jp/api/paid/usdc/jpyc/transfers

Network: eip155:8453 · Asset: 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 · Pay to: 0x52d4901142e2B5680027da5EB47C86CB02a3cA81

Payment methods: · Last validation: 2026-09-14 16:32:01.206+00

{
  "input": {
    "type": "object",
    "required": [
      "type",
      "method"
    ],
    "properties": {
      "type": {
        "type": "string",
        "const": "http"
      },
      "method": {
        "enum": [
          "GET"
        ],
        "type": "string"
      },
      "queryParams": {
        "type": "object",
        "required": [
          "chain"
        ],
        "properties": {
          "chain": {
            "enum": [
              "polygon",
              "kaia",
              "avalanche",
              "ethereum"
            ],
            "type": "string",
            "description": "Chain to scan. Supported values: polygon, kaia, avalanche, ethereum."
          },
          "limit": {
            "type": "string",
            "default": "20",
            "pattern": "^(?:[1-9]|[1-9][0-9]|100)$",
            "description": "Maximum number of transfer events to return, newest first (1-100). This is not a page number."
          },
          "cursor": {
            "type": "string",
            "pattern": "^[0-9]+:(?:-1|[0-9]+)$",
            "description": "The nextCursor value from a previous response (\"<block>:<logIndex>\"). Returns only transfers newer than that position, oldest first (mode=delta), so repeated calls pay only for new events and return each observed event once within the scanned window, assuming stable chain history; continue with nextCursor while hasMore is true. A cursor up to 64 blocks beyond the current chain head (normal when a node lags) returns no items and echoes the cursor back; further ahead is rejected with 400 cursor_ahead_of_head."
          },
          "address": {
            "type": "string",
            "pattern": "^0x[a-fA-F0-9]{40}$",
            "description": "Only transfers where this address is the sender or the recipient."
          }
        },
        "additionalProperties": false
      }
    },
    "additionalProperties": false
  },
  "output": {
    "type": "object",
    "required": [
      "type"
    ],
    "properties": {
      "type": {
        "type": "string"
      },
      "example": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "schemaVersion",
          "token",
          "generatedAt",
          "notice",
          "termsUrl",
          "chain",
          "chainId",
          "contract",
          "fromBlock",
          "toBlock",
          "mode",
          "nextCursor",
          "hasMore",
          "truncated",
          "items"
        ],
        "properties": {
          "mode": {
            "enum": [
              "snapshot",
              "delta"
            ],
            "type": "string",
            "description": "snapshot = no cursor was supplied; items are newest first. delta = a cursor was supplied; items are the events after that position, oldest first."
          },
          "chain": {
            "enum": [
              "polygon",
              "kaia",
              "avalanche",
              "ethereum"
            ],
            "type": "string"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "blockNumber",
                "txHash",
                "logIndex",
                "from",
                "to",
                "value",
                "valueFormatted"
              ],
              "properties": {
                "to": {
                  "type": "string",
                  "pattern": "^0x[a-fA-F0-9]{40}$"
                },
                "from": {
                  "type": "string",
                  "pattern": "^0x[a-fA-F0-9]{40}$"
                },
                "value": {
                  "type": "string",
                  "pattern": "^[0-9]+$",
                  "description": "Atomic JPYC amount with 18 decimals."
                },
                "txHash": {
                  "type": "string",
                  "pattern": "^0x[a-fA-F0-9]{64}$"
                },
                "logIndex": {
                  "type": "integer",
                  "minimum": 0
                },
                "blockNumber": {
                  "type": "string",
                  "pattern": "^[0-9]+$"
                },
                "valueFormatted": {
                  "type": "string",
                  "pattern": "^[0-9]+(\\.[0-9]+)?$"
                }
              },
              "additionalProperties": false
            }
          },
          "token": {
            "type": "object",
            "required": [
              "symbol",
              "decimals"
            ],
            "properties": {
              "symbol": {
                "type": "string",
                "const": "JPYC"
              },
              "decimals": {
                "type": "integer",
                "const": 18
              }
            },
            "additionalProperties": false
          },
          "notice": {
            "type": "string",
            "const": "onchain-facts-only",
            "description": "On-chain facts read from public RPC endpoints at request time. Informational only — not financial advice, not an offer, quote or solicitation. Full terms at termsUrl."
          },
          "chainId": {
            "type": "integer",
            "minimum": 1
          },
          "hasMore": {
            "type": "boolean",
            "description": "delta: more events exist after the returned ones — call again with nextCursor to continue. snapshot: older events in the window were omitted and are NOT retrievable via nextCursor (it starts after the newest returned event)."
          },
          "toBlock": {
            "type": "string",
            "pattern": "^[0-9]+$"
          },
          "contract": {
            "type": "string",
            "pattern": "^0x[a-fA-F0-9]{40}$"
          },
          "termsUrl": {
            "type": "string",
            "format": "uri"
          },
          "fromBlock": {
            "type": "string",
            "pattern": "^[0-9]+$"
          },
          "truncated": {
            "type": "boolean",
            "description": "true when the supplied cursor is older than the scanned block window; events between the cursor and fromBlock were not scanned."
          },
          "nextCursor": {
            "type": "string",
            "pattern": "^[0-9]+:(?:-1|[0-9]+)$",
            "description": "Pass as the cursor query parameter on the next call to receive only transfers newer than this response (\"<block>:<logIndex>\"). In snapshot mode this is where monitoring starts (after the newest returned event). Never moves backwards relative to the cursor you supplied."
          },
          "generatedAt": {
            "type": "string",
            "format": "date-time"
          },
          "schemaVersion": {
            "type": "string",
            "const": "2.2"
          }
        },
        "additionalProperties": false
      }
    }
  },
  "paymentRequirements": [
    {
      "raw": {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x52d4901142e2B5680027da5EB47C86CB02a3cA81",
        "amount": "5000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      },
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "payTo": "0x52d4901142e2B5680027da5EB47C86CB02a3cA81",
      "scheme": "exact",
      "network": "eip155:8453",
      "amountAtomic": "5000"
    }
  ]
}
METADATA PROVENANCE

Source catalog records are retained separately from live endpoint observations. Sonar score, uptime, and latency are advisory metrics. CDP indexing is not inferred from validation.