### Tip  
The endpoint returns yield and reward data for an address across the last 30 and 90 days, for validators on networks that support delegations the response also includes the yield for delegators staked to the validator. Note if an address is not currently monitored it will return a 404 response. The first time an address is called it will be calculated in the background and will eventually return a value. You can also preempt this by sending a PUT to add it to monitoring.

Monitored addresses are updated once a day and is based on UTC days only.

### Parameters

**network**  
*string*  
*required*  
Defaults to mainnet  
The blockchain network to query (e.g., mainnet).

**type**  
*string*  
*enum*  
*required*  
Specifies whether the request is for a validator or delegator.  
Allowed: `validator`, `delegator`

**address**  
*string*  
*required*  
The validator address to retrieve stats data for.

### Response Codes

- `200`  OK  
- `400`  Bad Request  
- `422`  Validation Error

### Example

```shell
curl --request GET \
     --url https://svc.blockdaemon.com/reporting/staking/v2/solana/mainnet/validator/stats/address \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json'
```
