# Rewards

View and claim TBOT rewards.

## Endpoints

| Method | Path                    | Description       |
| ------ | ----------------------- | ----------------- |
| GET    | `/v1/rewards`           | List user rewards |
| GET    | `/v1/rewards/types`     | List reward types |
| POST   | `/v1/rewards/:id/claim` | Claim a reward    |

***

### List Rewards

```
GET /v1/rewards
```

```bash
curl https://rest-api.tokenbot.com/v1/rewards \
  -H "X-API-Key: tb_live_your_key"
```

***

### List Reward Types

```
GET /v1/rewards/types
```

***

### Claim Reward

```
POST /v1/rewards/:id/claim
```

```bash
curl -X POST https://rest-api.tokenbot.com/v1/rewards/rwd_abc123/claim \
  -H "X-API-Key: tb_live_your_key"
```
