# Binance Staking API

## Network

### Allowed Values
- `mainnet`
- `testnet`

## Individual Binance Stake

### Amount
- Type: string
- Required: Yes
- Format: `^[1-9]\d+$`
- Note: The smallest denomination of Binance Coin (BNB) is called Jager. 1 Jager = 0.00000001 BNB.

### Delegator Address
- Type: string
- Required: Yes
- Format: `^bnb[0-9a-z]+$`
- Note: This is the Binance beacon chain address.

### Plan ID
- Type: string
- Description: This feature enables you to stake to validators from the specified plan(s). When no plan id is specified, validators across all plans that match the API route will be available for staking. If it is a shared plan, you can stake to validators on a shared node from the specified plan.

### Idempotency-Key
- Type: uuid
- Description: The unique idempotency key for this request.

## Response Codes
- ```200``` Created
- ```400``` Invalid request.
- ```401``` Header 'X-API-Key' missing.
- ```500``` Internal server error.
- ```503``` Insufficient validators available to process Stake Intent request.

## Example Curl Request
```bash
curl --request POST \
     --url https://svc.blockdaemon.com/boss/v1/binance/mainnet/stake-intents \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```
