Skip to main content
POST
/
unbond
Unbond tokens
curl --request POST \
  --url http://localhost:5935/unbond \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "1000000000000000000"
}
'
{
  "txHash": "0x...",
  "status": "success"
}
This page is still cooking...
Expect big things soon!

Body

application/json
amount
string
required

Amount of LPT to unbond (in wei)

Example:

"1000000000000000000"

Response

200 - application/json

Unbond initiated successfully

txHash
string

Transaction hash

Example:

"0x..."

status
string

Transaction status

Example:

"success"

Last modified on January 13, 2026