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

# Transfer

> Raw transfer data capturing every token transfer event on Solana.

| Field           | Type                              | Description                                              |
| --------------- | --------------------------------- | -------------------------------------------------------- |
| `id`            | *Integer*                         | Unique identifier for the transfer                       |
| `transfer_type` | *[Transfer Type](#transfer-type)* | Type of transfer based on the underlying token standard. |
| `stack_height`  | *Integer*                         | Solana instruction stack height                          |
| `token_address` | *String \[address]*               | Token address being transferred                          |
| `from_address`  | *String \[address]*               | Wallet address that sent the transfer                    |
| `to_address`    | *String \[address]*               | Wallet address that received the transfer                |
| `amount`        | *Number*                          | Amount of token transferred                              |
| `usd_amount`    | *Number \[USD]*                   | Value of the transfer at execution time                  |
| `block_slot`    | *Integer*                         | Solana block slot number                                 |
| `block_time`    | *String \[date-time]*             | Timestamp of the block                                   |
| `tx_hash`       | *String*                          | Transaction signature                                    |

## Transfer Type

*Enum(String)*

| Value                | Description         |
| -------------------- | ------------------- |
| `spl_token_transfer` | SPL token transfer  |
| `native_transfer`    | Native SOL transfer |
