Skip to main content
GET
/
api
/
v2
/
payments
List payments
curl --request GET \
  --url https://rcur.app/api/v2/payments
[
  {
    "id": "pay_abc123",
    "mollie_payment_id": "tr_abc123",
    "mollie_payment_status": "paid",
    "webhook_url": "https://example.com/webhook"
  }
]

Response

200 - application/json

List of payments

id
string
required
Example:

"pay_abc123"

mollie_payment_id
string
required
Example:

"tr_abc123"

mollie_payment_status
enum<string>
required
Available options:
open,
canceled,
pending,
authorized,
expired,
failed,
paid
Example:

"paid"

webhook_url
string | null
Example:

"https://example.com/webhook"