Skip to main content
GET
/
get-payment-status
Get payment statuses
curl --request GET \
  --url https://laso.finance/get-payment-status \
  --header 'Authorization: Bearer <token>'
{
  "payments": [
    {
      "id": "<string>",
      "amount_pre_fees": 123,
      "amount_with_fees": 123,
      "fees_paid": 123,
      "platform": "venmo",
      "state": "<string>",
      "recipient_id": "<string>",
      "timestamp": 123,
      "timestamp_readable": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

ID token from /auth or /get-card

Query Parameters

recipient_id
string

Filter payments by recipient ID

payment_id
string

Get a specific payment by ID

Response

List of payments

payments
object[]