Skip to main content
The polygon.agents.x402_transfers table contains individual x402 protocol token transfer events. Transfers are identified by matching the transaction sender against registered x402 facilitator addresses.

Table Columns

ColumnDescription
chainNetwork name
facilitator_idUnique facilitator identifier
facilitator_nameDisplay name of the facilitator
block_timestampWhen the transfer occurred
token_addressToken contract address
token_nameName of the token
token_symbolSymbol of the token
raw_amountRaw transfer amount before decimal adjustment
amountDecimal-adjusted transfer amount
usd_amountUSD value of the transfer
usd_exchange_rateExchange rate used for USD conversion
from_addressToken sender address (buyer)
to_addressToken recipient address (seller)
transaction_from_addressTransaction signer (facilitator address)
transaction_to_addressTransaction recipient
transaction_hashTransaction hash
log_indexLog index within the transaction
block_numberBlock number
block_hashBlock hash
unique_idUnique identifier for the transfer
_created_atRecord creation timestamp
_updated_atRecord update timestamp

Sample Query

SELECT 
  block_timestamp,
  facilitator_name,
  from_address AS buyer,
  to_address AS seller,
  usd_amount,
  transaction_hash
FROM polygon.agents.x402_transfers
ORDER BY block_timestamp DESC
LIMIT 100;