Send a payment via Venmo or PayPal
Send a payment via Venmo or PayPal. Requires KYC verification on the calling wallet; if not yet verified the response returns a kyc_url instead of sending the payout. The on-chain x402 payment credits the user's account balance via the standard deposit webhook, so abandoned/unverified flows can be recovered with POST /withdraw.
6500000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-14
updated
Provider
laso.finance · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3291e96b3bff7ed56e3ca8364273c5b4654b2b37",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "6500000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3MZVk97x9SeRxbYpc3jhzRfU2fyA3emYutnqfn9kNfYX",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "6500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"amount": 5,
"platform": "venmo",
"recipient_email": "[email protected]",
"recipient_first_name": "Jane",
"recipient_id": "5551234567",
"recipient_last_name": "Doe"
},
"type": "http"
},
"output": {
"example": {
"amount": 5,
"auth": {
"expires_in": "3600",
"id_token": "eyJ...",
"refresh_token": "AMf..."
},
"message": "Payment is being processed.",
"platform": "venmo",
"recipient_id": "5551234567",
"state": "in-process",
"success": true,
"user_id": "0xabc..."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"amount": {
"description": "USD amount to send to the recipient (min $5, max $1000). A 4.9% fee with a $1.50 minimum is added on top to compute the x402 USDC price.",
"type": "number"
},
"platform": {
"description": "Payment platform: 'venmo' or 'paypal'",
"type": "string"
},
"recipient_email": {
"description": "Recipient's email address. Required for Venmo. Optional for PayPal, where it defaults to recipient_id (the PayPal email).",
"type": "string"
},
"recipient_first_name": {
"description": "Recipient's first name (English letters A-Z and a-z only).",
"type": "string"
},
"recipient_id": {
"description": "Recipient identifier. For Venmo: 10-digit U.S. phone number. For PayPal: email address.",
"type": "string"
},
"recipient_last_name": {
"description": "Recipient's last name (English letters A-Z and a-z only).",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"amount": {
"type": "number"
},
"auth": {
"properties": {
"expires_in": {
"type": "string"
},
"id_token": {
"description": "Firebase ID token for the callable APIs",
"type": "string"
},
"refresh_token": {
"type": "string"
}
},
"type": "object"
},
"message": {
"type": "string"
},
"platform": {
"type": "string"
},
"recipient_id": {
"type": "string"
},
"state": {
"type": "string"
},
"success": {
"type": "boolean"
},
"user_id": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://laso.finance/send-payment" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://laso.finance/send-payment");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://laso.finance/send-payment")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/215.json, and this resource appears in /discovery/resources and /discovery/search.