## Request object to create a new stake intent for Cardano protocol

### Network
- **Type**: string  
- **Enum**:  
  - Allowed: `mainnet`, `preprod`, `localnet`

### Base Address
- **Type**: string  
- **Required**: bech32 encoded base address. [Accounts](https://cips.cardano.org/cips/cip19/).

### Plan ID
- **Type**: string  
- 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  
- 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

### Sample cURL Command
```shell
curl --request POST \
     --url https://svc.blockdaemon.com/boss/v1/cardano/mainnet/stake-intents \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Choose an Example
- **Response Type**: application/json

**Response Codes**:  
- `200`  
- `400`  
- `401`  
- `500`  
- `503`

Updated 2 months ago.
