v1
latestOpenAPI 3.0.12026-07-247756110.6 KBPayment Links
List payment links
Get the list of all payment links
get/payment_links
Query parameters
per_pageinteger
Example:25
Number of trips per page
pageinteger
Example:1
Page number (minimum:1)
publish_status'published' | 'draft'
Filter payment links by publish status
Response
Successful response
Example response
{
"data": [
{
"trip": {
"uuid": "12345678",
"title": "Amazing London Adventure",
"trip_id": "TRIP20",
"url": "https://example.com/trips/123456",
"defaultImageUrl": "https://example.com/trip-123.jpg",
"start_date": "2026-05-07",
"end_date": "2026-05-14",
"currency": "USD",
"participant_fees": "all"
},
"pricing": {
"price": 800,
"payment_plan": {
"deposit": 654,
"installments": [
{
"type": "installment",
"total": 5000,
"previous_payment": 5000,
"paid": true,
"date": "2021-06-25T00:00:00.000Z"
}
]
}
}
}
],
"pagination": {
"total_count": 1,
"page": 1,
"per_page": 20,
"total_pages": 1
}
}