Lodol Docs

Cash App

API actions for the Cash App integration.

Cash App

Send or request money and review activity using Cash App.


Get payment status

Retrieve the status of a payment by ID.

Parameters

ParameterTypeRequiredDescription
payment_idstringYesThe ID of the payment to look up.

Response

{
  "amount": 1000,
  "currency": "USD",
  "payment_id": "pay_abc123",
  "status": "completed"
}

List activity

List recent Cash App activity.

Parameters

ParameterTypeRequiredDescription
limitnumberNoMaximum number of activity entries to return.

Response

[
  {
    "amount": 2500,
    "id": "act_001",
    "timestamp": "2024-01-15T10:30:00Z",
    "type": "payment_sent"
  },
  {
    "amount": 1500,
    "id": "act_002",
    "timestamp": "2024-01-14T15:45:00Z",
    "type": "payment_received"
  }
]

Request payment

Request money from a Cash App user.

Parameters

ParameterTypeRequiredDescription
sender_handlestringYesCash App handle of the person to request from.
amount_centsnumberYesAmount to request in cents.
currencystringNoCurrency code.
notestringNoOptional note for the request.

Response

{
  "amount": 500,
  "currency": "USD",
  "request_id": "req_xyz789",
  "requester": "$cashtag",
  "status": "pending"
}

Send payment

Send money to a Cash App user.

Parameters

ParameterTypeRequiredDescription
recipient_handlestringYesCash App handle of the recipient.
amount_centsnumberYesAmount to send in cents.
currencystringNoCurrency code.
notestringNoOptional note for the payment.

Response

{
  "amount": 1000,
  "currency": "USD",
  "payment_id": "pay_abc123",
  "recipient": "$cashtag",
  "status": "completed"
}

On this page