# Network

The network to look up against. Defaults to mainnet.

# Type

Specifies the role associated with the request.

Allowed values: `delegator`, `validator`.

# Accept

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

# Responses

| Status Code | Description         |
|-------------|---------------------|
| 200         | OK                  |
| 400         | Bad Request         |
| 422         | Validation Error    |

# Example cURL Request

```shell
curl --request POST \
     --url https://svc.blockdaemon.com/reporting/staking/v2/cosmos/mainnet/delegator/status \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Example Responses

```json
{
  "status": "200"
}
```

```json
{
  "status": "400"
}
```

```json
{
  "status": "422"
}
```
