### Network

- **Type:** string  
- **Enum:**  
  - `mainnet`  
  - `hoodi`  
- **Required:** True

### Data about Validators

- **Description:** Data about a list of validators (up to 500) to exit.
- **Field:** `validator_identifiers`  
  - **Type:** array of objects  
  - **Required:** True  
  - **Length:** ≤ 500

#### Validator Identifiers
- This field contains a list of validators to exit.

### Response Codes
- **200:** A list of validators was exited correctly.  
- **400:** Invalid request.  
- **401:** Header 'X-API-Key' missing.  
- **404:** Validator not found.  
- **500:** Internal server error.  
- **503:** Insufficient validators available to process Stake Intent request.

---

### Example Request

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/boss/v1/ethereum/mainnet/voluntary-exits \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Example Responses
- **Application/json:**
  - `200`
  - `400`
  - `401`
  - `404`
  - `500`
  - `503`
