> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# x402 Transfers

> x402 protocol token transfers across all chains

The `crosschain.agents.x402_transfers` table contains individual x402 protocol token transfer events across all supported chains. This is a union of chain-specific transfer models.

## Table Columns

| Column                     | Description                                   |
| -------------------------- | --------------------------------------------- |
| chain                      | Network name                                  |
| facilitator\_id            | Unique facilitator identifier                 |
| facilitator\_name          | Display name of the facilitator               |
| block\_timestamp           | When the transfer occurred                    |
| token\_address             | Token contract/mint address                   |
| token\_name                | Name of the token                             |
| token\_symbol              | Symbol of the token                           |
| raw\_amount                | Raw transfer amount before decimal adjustment |
| amount                     | Decimal-adjusted transfer amount              |
| usd\_amount                | USD value of the transfer                     |
| usd\_exchange\_rate        | Exchange rate used for USD conversion         |
| from\_address              | Token sender address (buyer)                  |
| to\_address                | Token recipient address (seller)              |
| transaction\_from\_address | Transaction signer (facilitator address)      |
| transaction\_to\_address   | Transaction recipient                         |
| transaction\_hash          | Transaction hash/signature                    |
| log\_index                 | Log index (NULL for Solana)                   |
| block\_number              | Block number/height                           |
| block\_hash                | Block hash                                    |
| unique\_id                 | Unique identifier for the transfer            |
| \_created\_at              | Record creation timestamp                     |
| \_updated\_at              | Record update timestamp                       |

## Sample Query

```sql theme={null}
SELECT 
  chain,
  block_timestamp,
  facilitator_name,
  from_address AS buyer,
  to_address AS seller,
  usd_amount
FROM crosschain.agents.x402_transfers
ORDER BY block_timestamp DESC
LIMIT 100;
```
