# Transfers via Figment's Transfer Endpoint

Returns transfers made via [Figment's Transfer endpoint](https://docs.figment.io/reference/cardano-transfer#/).

## Network
- **Type:** string
- **Enum:** `preprod`, `mainnet`

## Transfer Object
### Properties
- **from**: string  
- **to**: string  
- **amount_quantity**: string  
- **amount_units**: string  
- **tx_epoch**: integer (epoch in which the transaction was included)
- **active_epoch**: integer (epoch in which the transferred ADA will become eligible for rewards)
- **pool_id**: string (pool id of the pool that the transaction was sent to)
- **tx_hash**: string  
- **tx_status**: string  
  - Enum values:  
    - `confirmed`: Transaction has been confirmed.  
    - `in_progress`: Transaction is pending for confirmation.  
    - `failed`: Transaction has failed and will not be confirmed.  
    - `expired`: Transaction has expired and will not be confirmed.  
    - `not_found`: Transaction was not found.
- **timestamp**: string (timestamp of the transaction in UTC)

## Example Request
```
curl --request GET \
     --url https://api.figment.io/cardano/transfers \
     --header 'accept: application/json' \
     --header 'x-api-key: your-api-key-here'
```

## Example Response
```json
{
  "transfers": [
    {
      "from": "addr_1235rcs4pte22vatewgsfuv0mzw88pkz7tp8j9yc3m34k2v5s4a786fgrcdnjsf9kp5mahvvm8hk85hjxl88jjzdl4dsfjaabc",
      "to": "addr_1qzmwrkqkr7g5qyyvxwteqhkqs4wwy9k5fpx6j2q7x2q2v5s4a786fgrcdnjsf9kp5mahvvm8hk85hjxl88jjzdl4dsfja2tt",
      "amount_quantity": "1000000000000000000",
      "amount_units": "lovelace",
      "tx_epoch": 998,
      "active_epoch": 1000,
      "pool_id": "pool13h08lf24fjmxxg0mmuattjv8dvy0r6fc4hrqg4qmj38xsweexrv",
      "tx_hash": "3cbf058b236a1814f558f4c98416efa7920a53fb0bba40f3706812af188311a7",
      "tx_status": "confirmed",
      "timestamp": "2025-10-29T23:18:56.000Z"
    }
  ]
}
```
