ToolAssay

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.

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$6.50listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://laso.finance/send-payment

CategoryCompany and compliance
Provider hostlaso.finance
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days3 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "amount": 5,
    "platform": "venmo",
    "recipient_email": "jane@example.com",
    "recipient_first_name": "Jane",
    "recipient_id": "5551234567",
    "recipient_last_name": "Doe"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$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"
}

This page as JSON