# Ethereum Network Withdrawable Amount API

## Overview
This document describes the API for retrieving the withdrawable amount on the Ethereum main network.

### Parameters
- **network** (string, required): Set to `mainnet` or `hoodi`.
- **withdrawal_address** (string, required): Must match the regex `^0x[a-fA-F0-9]{40}$`.

## Responses
- **200**: Ok
- **400**: Invalid request.
- **401**: Header 'X-API-Key' missing.
- **500**: Internal server error.

## Example Request
```shell
curl --request GET \
     --url https://svc.blockdaemon.com/boss/v1/ethereum/mainnet/withdrawable-amount/withdrawal_address \
     --header 'accept: application/json'
```

## Example Responses
- **application/json**
    - `200`
    - `400`
    - `401`
    - `500`

---
*Updated 2 months ago*
