Venmo
API actions for the Venmo integration.
Venmo
Send, request, and refund payments through Venmo.
Get a Venmo payment
Look up the details of a Venmo payment by its ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
payment_id | string | Yes | Venmo payment ID |
Response
{
"data": {
"payment": {
"amount": 100.0,
"date_created": "2025-01-18T10:30:00Z",
"id": "555666777",
"note": "Concert tickets",
"status": "settled"
}
}
}Refund a Venmo payment
Refund all or part of a Venmo payment.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
payment_id | string | Yes | Payment ID to refund |
amount | number | No | The amount to refund. Leave blank to refund the full payment. |
note | string | No | Refund note |
Response
{
"data": {
"refund": {
"amount": 25.0,
"date_created": "2025-01-21T14:00:00Z",
"id": "999888777",
"note": "Refund for cancelled order",
"status": "issued"
}
}
}Request a Venmo payment
Request money from a Venmo user with a custom note.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
recipient | string | Yes | The Venmo user ID of the person you're requesting money from. |
amount | number | Yes | Request amount |
note | string | Yes | Request note |
audience | string | No | Who can see this payment: private, friends, or public. |
Response
{
"data": {
"payment": {
"amount": 50.0,
"date_created": "2025-01-20T13:00:00Z",
"id": "987654321",
"note": "Rent payment",
"status": "pending"
}
}
}Send a Venmo payment
Send money to someone on Venmo, add a note, and choose who can see the payment.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
recipient | string | Yes | The Venmo user ID of the person you're paying. |
amount | number | Yes | Payment amount |
note | string | Yes | Payment note |
audience | string | No | Who can see this payment: private, friends, or public. |
Response
{
"data": {
"payment": {
"amount": 25.0,
"date_created": "2025-01-20T12:00:00Z",
"id": "123456789",
"note": "Dinner split",
"status": "settled"
}
}
}