Skip to main content
GET
/
send-payment
Send a Venmo or PayPal payment
curl --request GET \
  --url https://laso.finance/send-payment
{
  "success": true,
  "message": "Payment is being processed.",
  "platform": "<string>",
  "amount": 123,
  "recipientId": "<string>"
}

Query Parameters

amount
number
required

USD amount to send (min $5, max $1000)

Required range: 5 <= x <= 1000
platform
enum<string>
required

Payment platform to use

Available options:
venmo,
paypal
recipient_id
string
required

Recipient's identifier on the payment platform (e.g. Venmo username or PayPal email)

Response

Payment accepted for processing

success
boolean
message
string
Example:

"Payment is being processed."

platform
string
amount
number
recipientId
string