Skip to main content
POST
/
withdrawals
Request Single Withdrawal
curl --request POST \
  --url https://v1.orchestrator.rhinestone.dev/withdrawals \
  --header 'Content-Type: application/json' \
  --data '{
  "account": "<string>",
  "chainId": 123,
  "tokenAddress": "<string>",
  "amount": 123,
  "recipient": "<string>"
}'
{
  "allocatorData": "<string>",
  "transferDetails": {
    "id": 123,
    "nonce": 123,
    "expires": 123,
    "recipients": [
      {
        "claimant": 123,
        "amount": 123
      }
    ]
  }
}

Headers

x-api-key
string

Rhinestone API key

Body

application/json

Body

account
string
required
chainId
number
required
tokenAddress
string
required
amount
integer
required
recipient
string
required

Response

200

Successfully retrieved a compact signature

allocatorData
string
required
transferDetails
object
required