Skip to main content
POST
/
privacy
/
transfer
Private transfer
curl --request POST \
  --url https://api.onbeam.io/privacy/transfer \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "toAddress": "<string>",
  "chainId": 123,
  "token": "<string>",
  "amount": "<string>"
}
'
{
  "transferId": "<string>",
  "status": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
toAddress
string
required
chainId
integer
required
token
string
required
amount
string
required

Response

200 - application/json

Transfer created

transferId
string
required
status
string
required
Example:

"pending"