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

Body

application/json
amount
string
required

Amount of LPT to bond (in wei)

Example:

"1000000000000000000"

to
string
required

Orchestrator address to bond to

Example:

"0x1234567890abcdef1234567890abcdef12345678"

Response

200 - application/json

Bond successful

txHash
string

Transaction hash

Example:

"0x..."

status
string

Transaction status

Example:

"success"

Last modified on January 13, 2026