---
title: "Post Split Intent"
method: POST
path: "/v2/solana/{network}/split-intent"
tags: ["Solana"]
---

# Post Split Intent

`POST /v2/solana/{network}/split-intent`

Returns an unsigned transaction transaction that can be used to
 split to divide an existing stake account into two separate accounts, each holding a
 specified portion of the original stake’s SOL.

## Path parameters

- `network` string, required

## Request body

- SolanaSplitTransactionRequest
  - `amount` integer, required — The amount of funds you want to move from the specified stake-account to the new stake-account (in Lamports).
  - `network` string — The target Solana network (allowed 'mainnet' or 'testnet').
  - `stake_account_pubkey` string, required — The address of the stake account to split

## Response `200`

OK

- SolanaSplitTransactionResponse
  - `estimated_fee` integer, required — The estimated fee for the transaction.
  - `instruction_count` integer, required — The number of instructions in the transaction.
  - `metadata` SolanaSplitMetadata
    - `minimum_rent_exemption` integer — Minimum amount of SOL (in Lamports) new stake-account needs for rent-exemption
  - `network` string — The target Solana network (allowed 'mainnet' or 'testnet').
  - `new_stake_account_pubkey` string, required — The new address of the stake account to receive the split amount.
  - `stake_account_pubkey` string, required — The original address of the stake account to split from.
  - `stake_authority_pubkey` string, required — The address of the account authorized to deactivate both the original and new stake accounts.
  - `unsigned_transaction` string, required — Base64-encoded, serialized Solana transaction to be signed and submitted.

## Other responses

- `400` — Invalid request.
- `401` — Unauthorized
- `500` — Internal server error

---

[API](https://skmtc.dev/blockdaemon/apis/staking-api.md) · [All operations](https://skmtc.dev/blockdaemon/apis/staking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/blockdaemon/staking-api/revisions/f94e296a08a3/schema)
