curl --request GET \
--url https://api.plane.com/v1/refunds \
--header 'Authorization: Bearer <token>'{
"refunds": [
{
"id": "re_1PqJvEf9iWm3mK7P2fZp9Qxc",
"date": "2025-08-15",
"amount": "1000.00",
"currency": "USD",
"reference": "RF-2025-0815",
"note": "Cancelled contractor payment",
"status": "succeeded",
"source": "src_4a8S6Cm7qN9xL2eP",
"entity": "ent_7Vu2fTc0bL3kQ9mR"
}
]
}
Returns a list of all refunds in your Plane workspace.
curl --request GET \
--url https://api.plane.com/v1/refunds \
--header 'Authorization: Bearer <token>'{
"refunds": [
{
"id": "re_1PqJvEf9iWm3mK7P2fZp9Qxc",
"date": "2025-08-15",
"amount": "1000.00",
"currency": "USD",
"reference": "RF-2025-0815",
"note": "Cancelled contractor payment",
"status": "succeeded",
"source": "src_4a8S6Cm7qN9xL2eP",
"entity": "ent_7Vu2fTc0bL3kQ9mR"
}
]
}
starting_after is an object ID that defines your place in the
list.ending_before is an object ID that defines your place in the
list.refunds property that contains an array of
Refund objects.
{
"refunds": [
{
"id": "re_1PqJvEf9iWm3mK7P2fZp9Qxc",
"date": "2025-08-15",
"amount": "1000.00",
"currency": "USD",
"reference": "RF-2025-0815",
"note": "Cancelled contractor payment",
"status": "succeeded",
"source": "src_4a8S6Cm7qN9xL2eP",
"entity": "ent_7Vu2fTc0bL3kQ9mR"
}
]
}
Was this page helpful?