# API Documentation for Ethereum Voluntary Exits

## Network

- **Allowed Values:** `mainnet`, `hoodi`

## Pagination Parameters

- **page**: `int64` (≥ 1)
  - *Defaults to 1.* The result set page to view.
- **per_page**: `int64` (1 to 1000)
  - *Defaults to 250.* The number of items to include on a single page.

## Responses

- `200`: Successful operation
- `400`: Invalid request.
- `401`: Header 'X-API-Key' missing.
- `500`: Internal server error.

## Example Curl Command

```shell
curl --request GET \
     --url 'https://svc.blockdaemon.com/boss/v1/ethereum/mainnet/voluntary-exits?page=1&per_page=250' \
     --header 'accept: application/json'
```

## HTTP Response Status Codes

```json
"200"
"400"
"401"
"500"
```
