# Network

**String**  
**Enum**  
Network to get the rewards withdrawals from. Default is mainnet.

Allowed:
- `preprod`
- `mainnet`

# tx_hash

**String**  
Transaction hash of the rewards withdrawal.

# 200

Returns the rewards withdrawals

## Object

### rewards_withdrawals

**Array of objects** (required)

#### rewards_withdrawals*

**Object**

- **timestamp**: **String**  
timestamp of the transaction in UTC
- **amount_quantity**: **String**  
- **amount_units**: **String**  
- **pool_id**: **String**  
pool id of the pool where the rewards are withdrawn from
- **delegator_address**: **String**  
The address of the delegator who is withdrawing the rewards
- **destination_address**: **String**  
The target address where the rewards are sent to
- **tx_hash**: **String**  
- **tx_status**: **String**  
  
**Enum**  
The current status of the transfer transaction.

- **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.

Allowed:
- `not_found`
- `in_progress`
- `confirmed`
- `failed`
- `expired`

### meta

**Object**

#### pagination

**Object**

### Pagination Object

- **current_page**: 1  
- **total_pages**: 10  
- **total_item_count**: 1000  
- **has_next**: true

## Example cURL Request

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

## Example Response

```json
{
  "rewards_withdrawals": [
    {
      "timestamp": "2026-01-16 21:35:47",
      "amount_quantity": "38529434",
      "amount_units": "lovelace",
      "tx_status": "confirmed",
      "pool_id": "pool13h08lf24fjmxxg0mmuattjv8dvy0r6fc4hrqg4qmj38xsweexrv",
      "delegator_address": "addr_1235rcs4pte22vatewgsfuv0mzw88pkz7tp8j9yc3m34k2v5s4a786fgrcdnjsf9kp5mahvvm8hk85hjxl88jjzdl4dsfjaabc",
      "destination_address": "addr_1qzmwrkqkr7g5qyyvxwteqhkqs4wwy9k5fpx6j2q7x2q2v5s4a786fgrcdnjsf9kp5mahvvm8hk85hjxl88jjzdl4dsfja2tt",
      "tx_hash": "3cbf058b236a1814f558f4c98416efa7920a53fb0bba40f3706812af188311a7"
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 1,
      "total_pages": 10,
      "total_item_count": 1000,
      "has_next": true
    }
  }
}
```
