# General features described in [Rewards Overview](https://docs.figment.io/docs/rewards-overview)

## Network

**Required**: Network Rewards are on.

- `mainnet`

### Start

**Required**: Rewards received on or after this date

### End

**Required**: Rewards received on or before this date

# Response Structure

## 200 Got rewards

### Data

- **Type**: object
- **Data**: array of objects

### Data Object

- **Address**: string  
  Address that received rewards  
- **Validator**: string  
  Validator's staking pool address  
- **Timestamp**: string  
  Timestamp when reward happened  
- **Reward**: string  
  Reward amount  
- **Reward USD**: string  
  Reward amount in USD  
- **Total Staked**: string  
  Total staked to Sui

## Example Request

```shell
curl --request POST \
     --url https://api.figment.io/sui/rewards \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: your-api-key-here' \
     --data '{\n  "network": "mainnet"\n}'
```

## Example Response

```json
{
  "data": [
    {
      "address": "string",
      "validator": "string",
      "timestamp": "2024-10-24T00:01:00Z",
      "reward": 0.008,
      "reward_usd": 0.02,
      "total_staked": 2
    }
  ]
}
```
