Skip to main content
POST
/
v2
/
amplify
/
smartDepositAddresses
Create a smart deposit address for a user.
curl --request POST \
  --url https://api.paxoslabs.com/v2/amplify/smartDepositAddresses \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "userDestinationAddress": "0x0000000000000000000000000000000000000123",
  "vaultAddress": "0x1234567890abcdef1234567890abcdef12345678",
  "inputToken": "0xf08a50178dfcde18524640ea6618a1f965821715",
  "chainId": 1
}
'
{
  "smartDepositAddress": "0xabcdef1234567890abcdef1234567890abcdef12"
}

Documentation Index

Fetch the complete documentation index at: https://developers.paxoslabs.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key in format: pxl_<public_id>_

Body

application/json
userDestinationAddress
string
required

Address of end user who we are depositing funds on behalf of

Example:

"0x0000000000000000000000000000000000000123"

vaultAddress
string
required

Vault contract address

Example:

"0x1234567890abcdef1234567890abcdef12345678"

inputToken
string
required

Underlying token address to deposit into the vault

Example:

"0xf08a50178dfcde18524640ea6618a1f965821715"

chainId
number
required

Chain ID where the vault exists

Example:

1

Response

Smart Deposit address

smartDepositAddress
string
required

The smart deposit address for the given user

Example:

"0xabcdef1234567890abcdef1234567890abcdef12"