---
title: "Post restake Intent"
method: POST
path: "/v1/cosmos/{network}/restake-intents"
tags: ["Cosmos"]
---

# Post restake Intent

`POST /v1/cosmos/{network}/restake-intents`

Create transaction to move given amount of ATOMs from one validator to another.

## Request body

- NewRestakeIntentCosmos — Request object to create a new restake intent for Cosmos.
  - `delegator_address` string, bech32, required — Public Key of an asymmetric key-pair.
  - `old_validator_address` string, bech32, required — Public Key of an asymmetric key-pair.
  - `amount` string, required — Denomination of the cryptocurrency Cosmos.
  - `plan_id` 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 to stake to validators on a shared node from the specified plan.

## Response `201`

Restake intent created

- RestakeIntent — Request object to create a new restake intent.
  - `restake_intent_id` string, uuid, required — Unique idenifier for a restake intent.
  - `customer_id` string, required — Unique identifier for a customer
  - `protocol` 'ethereum' | 'polkadot' | 'solana' | 'cosmos' | 'polygon' | 'near' | 'cardano' | 'avalanche' | 'binance', required — Blockchain protocol.
  - `network` 'mainnet' | 'holesky' | 'hoodi', required — Network
  - `cosmos` RestakeIntentCosmos — Cosmos Restake Intent
    - `unsigned_transaction` string, base64, required — Generated unsigned transaction smart contract call data.
    - `delegator_address` string, bech32, required — Public Key of an asymmetric key-pair.
    - `old_validator_address` string, bech32, required — Public Key of an asymmetric key-pair.
    - `new_validator_address` string, bech32, required — Public Key of an asymmetric key-pair.
    - `amount` string, required — Denomination of the cryptocurrency Cosmos.
    - `hex_transaction` ProcessedComosTransaction — Returns back the transactionHash and unsignedTxHex for signing purposes
      - `transaction_hash` string — The SHA-256 hash of the signable transaction in hexadecimal format.
      - `unsigned_transaction_hex` string — The original unsigned transaction encoded in hexadecimal format.
  - `binance` RestakeIntentBinance — Binance Restake Intent
    - `unsigned_transaction` string, base64, required — Generated unsigned transaction smart contract call data.
    - `delegator_address` string, bech32, required — Binance beacon chain address.
    - `old_validator_address` string, bech32, required — Binance beacon chain validator address.
    - `new_validator_address` string, bech32, required — Binance beacon chain validator address.
    - `amount` string, required — The smallest denomination of Binance Coin (BNB) is called Jager. 1 Jager =0.00000001 BNB.

## Other responses

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

---

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