POST
/
v0
/
deposit
/
{token}
/
{type}
Deposit
curl --request POST \
  --url https://lulo.dial.to/api/v0/deposit/{token}/{type} \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "transaction",
  "account": "6JpNV6DK88auwzKVizdeT4Bw3D44sam5GqjcPCJ7y176"
}'
{
  "type": "<any>",
  "transaction": "<string>"
}

Path Parameters

token
string
default:USDC
required

Token ticker or mint address

Example:

"USDC"

type
enum<string>
default:protected
required

Deposit type: protected (PUSD) or boosted (LUSD)

Available options:
protected,
boosted
Example:

"protected"

Query Parameters

amount
number
default:100

The amount to deposit. Human readable value, e.g. 100 USDC

Required range: x >= 1
Example:

100

percentage
integer

The percentage of balance to deposit

Required range: 1 <= x <= 100

Body

application/json

Response

200 - application/json

OK

The response is of type object.