### Parameters

- **network**  
  The target Solana network (allowed 'mainnet' or 'testnet'). **(string, required)**

- **amount**  
  The amount of funds you want to move from the specified stake-account to the new stake-account (in Lamports). **(int64, required)**

- **stake_account_pubkey**  
  The address of the stake account to split. **(string, required)**  
  `^[1-9A-HJ-NP-Za-km-z]{43,44}$`

### Responses

- **200**  
  OK

- **400**  
  Invalid request.

- **401**  
  Header 'X-API-Key' missing.

- **500**  
  Internal server error.

### Example Request

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/sia/v2/solana/network/split-intent \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Example Responses

- `200`
- `400`
- `401`
- `500`
