# API Parameters

## Network  
**Type**: string  
**Enum**:  
- mainnet  
- holesky  
- hoodi  
**Required**: Yes  
Defaults to mainnet. The network to look up against.

## Address  
**Type**: string  
**Required**: Yes  
The address to look up rewards for.

## StartTime  
**Type**: number  
Epoch-based start time for reward queries.

## EndTime  
**Type**: number  
Epoch-based end time for reward queries.

## Epoch  
**Type**: number  
The epoch to look up rewards for.

## Period  
**Type**: string  
**Enum**:  
- yearly  
- daily  
- weekly  
- monthly  
- epoch  
- raw  
**Required**: Yes  
Defaults to monthly. The type of aggregation to apply.

## Denomination  
**Type**: string  
**Enum**:  
- wei  
- kwei  
- mwei  
- gwei  
- szabo  
- finney  
- ether  
**Defaults**: wei  
Denomination to use for the response - default is wei.

## Accept  
**Type**: string  
**Enum**:  
- application/json  
- application/x-ndjson  
**Defaults**: application/json  
Generated from available response content types.

# Example cURL Request  
```bash  
curl --request GET \
     --url 'https://svc.blockdaemon.com/reporting/staking/v2/ethereum/mainnet/validator/rewards/address?period=monthly&denomination=wei' \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json'  
```

# Response Codes  
- **200**: OK  
- **400**: Bad Request  
- **422**: Validation Error

Updated 2 months ago.
