# addresses

A list of addresses.

## Addresses

- Defaults to 11VR4pF6c7kfBhfmuwwjWY3FodeYBKWx7ix2rsRCU2q6hqJ

## Accept

- `application/json`
- `text/plain`

### Status of Multiple Validators

| Status Code | Description                        |
|-------------|------------------------------------|
| 200         | Status of Multiple Validators      |
| 400         | Invalid value for: body           |
| 401         | Invalid or expired token           |
| 404         | Not Found                         |
| 405         | Method Not Allowed                 |
| 429         | Rate Limit Exceeded                |
| 500         | Internal Server Error              |
| 503         | Service Unavailable                 |

## Example

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/reporting/staking/v1/polkadot/mainnet/validator/status \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{

"addresses": [
    "11VR4pF6c7kfBhfmuwwjWY3FodeYBKWx7ix2rsRCU2q6hqJ"
  ]
}'
```

### Choose an example:

- application/json
    - `200`
    - `401`
    - `405`
    - `429`
    - `500`
    - `503`
- text/plain
    - `400`
    - `404`
