# Network

The network to look up against.

- **Defaults to**: mainnet

# Type

The type of request.

- **Enum**: required
- Allowed Values: `validator`, `delegator`

# Validator ID

The validator id to check against when looking up a delegator status – required only for delegator types.

# Accept

- **Defaults to**: application/json
- Generated from available response content types
- Allowed Values: `application/json`, `application/x-ndjson`

# Responses

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

---

## Example Request

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/reporting/staking/v2/polygon/mainnet/validator/status \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
[
  "0xAB30eF276ADC2bE22CE58d75B4F4009173A73676",
  "0x6ae6c540c7b110d5c01cb9bc23297a013f9f4982"
]
' 
```

# Example Responses

- **application/x-ndjson**
- **200**
- **application/json**
- **400**
- **422**
