Retrieves all transactions associated with a specific payment page.
This endpoint uses cursor-based pagination.
Use the Next-Cursor and Prev-Cursor headers to paginate through results.
curl --request GET \
--url https://api.momentco.io/collect/payment_pages/{id}/transactions{
"data": [
{
"id": "pt_9N2a38DJQWPL8K4X",
"payment_page_id": "pp_EVT9283NAKSD8234SKJD",
"status": "succeeded",
"amount": "<unknown>",
"currency": "<unknown>",
"customer": {
"name": "John Smith",
"email": "[email protected]",
"phone": "+1234567890"
},
"custom_fields": {
"session_choice": "Morning (8AM–12PM)",
"dietary_restrictions": "Vegan",
"referral_code": "FITWELL100"
},
"payment_id": "p_xyz789abc123def456",
"products": [
{
"product_id": "product_123123",
"product_name": "sample product",
"qty": 123,
"price": 1123,
"currency": "ZAR",
"description": "testing product desc"
}
],
"checkout_session_id": "chk_456789abc123def",
"delivery_address": {
"line1": "123 Main Street",
"line2": "Apt 4B",
"city": "Cape Town",
"state": "Western Cape",
"country": "ZA",
"pin": "8001"
},
"metadata": {
"event_id": "wellness_nairobi_2025"
},
"created_at": "2025-06-18T08:45:00Z",
"updated_at": "2025-06-18T08:45:10Z"
}
]
}Unique identifier for the payment page. Must be a valid payment page ID.
Unique identifier for a payment page
"pp_SjSA234ADKA25245ADJKS"
Cursor pointing to the next or previous page of results.
"txn_abc123xyz"
Number of transactions to return (default: 20, max: 100)
x <= 100A list of transactions for the payment page.
Show child attributes
Unique identifier for the transaction
"pt_9N2a38DJQWPL8K4X"
ID of the payment page used for this transaction
"pp_EVT9283NAKSD8234SKJD"
Status of a payment transaction
succeeded, failed "succeeded"
Customer information collected on the Payment Page. This is omitted if requires_customer_details is set to false.
Show child attributes
Customer's full name
100"John Smith"
Customer's phone number
20"+1234567890"
Internal payment object linked to the transaction
"p_xyz789abc123def456"
List of purchased products in this transaction
Show child attributes
Unique identifier for the product
"product_123123"
Quantity of the product purchased
x >= 1123
Price per unit in minor currency units (e.g., cents)
1123
Product Name
"sample product"
Short description of the product
"testing"
[
{
"product_id": "product_123123",
"product_name": "sample product",
"qty": 123,
"price": 1123,
"currency": "ZAR",
"description": "testing product desc"
}
]ID of the checkout session that processed this transaction
"chk_456789abc123def"
Delivery/shipping address provided by the customer
Show child attributes
Address line 1 (street address, PO Box, etc.)
200"123 Main Street"
City or locality
100"Cape Town"
State, province, or region
100"Western Cape"
Country in ISO 3166-1 alpha-2 format
2"ZA"
Postal code or ZIP code
20"8001"
Address line 2 (apartment, suite, unit, building, floor, etc.)
200"Apt 4B"
{
"line1": "123 Main Street",
"line2": "Apt 4B",
"city": "Cape Town",
"state": "Western Cape",
"country": "ZA",
"pin": "8001"
}ISO timestamp of when the transaction was initiated
"2025-06-18T08:45:00Z"
ISO timestamp of the last status update
"2025-06-18T08:45:10Z"
Was this page helpful?
curl --request GET \
--url https://api.momentco.io/collect/payment_pages/{id}/transactions{
"data": [
{
"id": "pt_9N2a38DJQWPL8K4X",
"payment_page_id": "pp_EVT9283NAKSD8234SKJD",
"status": "succeeded",
"amount": "<unknown>",
"currency": "<unknown>",
"customer": {
"name": "John Smith",
"email": "[email protected]",
"phone": "+1234567890"
},
"custom_fields": {
"session_choice": "Morning (8AM–12PM)",
"dietary_restrictions": "Vegan",
"referral_code": "FITWELL100"
},
"payment_id": "p_xyz789abc123def456",
"products": [
{
"product_id": "product_123123",
"product_name": "sample product",
"qty": 123,
"price": 1123,
"currency": "ZAR",
"description": "testing product desc"
}
],
"checkout_session_id": "chk_456789abc123def",
"delivery_address": {
"line1": "123 Main Street",
"line2": "Apt 4B",
"city": "Cape Town",
"state": "Western Cape",
"country": "ZA",
"pin": "8001"
},
"metadata": {
"event_id": "wellness_nairobi_2025"
},
"created_at": "2025-06-18T08:45:00Z",
"updated_at": "2025-06-18T08:45:10Z"
}
]
}