Skip to main content
GET
/
send-payment
Send a Venmo or PayPal payment
curl --request GET \
  --url https://laso.finance/send-payment
{
  "auth": {
    "id_token": "<string>",
    "refresh_token": "<string>",
    "expires_in": "<string>"
  },
  "user_id": "0xabc...",
  "success": true,
  "message": "Payment is being processed.",
  "platform": "<string>",
  "amount": 123,
  "recipient_id": "<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. For Venmo: 10-digit US phone number (e.g. 5551234567). For PayPal: email address.

Response

Payment accepted for processing

auth
object
user_id
string

User ID derived from wallet address

Example:

"0xabc..."

success
boolean
message
string
Example:

"Payment is being processed."

platform
string
amount
number
recipient_id
string