Skip to main content

Payments

Read the payment records associated with your orders.

A payment represents a single attempt to pay an order through a chosen payment method. Use these endpoints to look up a payment or list payments for your project.

Amount Format

All amounts are in minor currency units (e.g., cents for EUR) and returned as integers (e.g., 2500 for €25.00).

Get a Payment​

GET /payment-executor/integration/v1/payments/{id}

Retrieves a single payment by its identifier. The payment must belong to your project.

Request​

curl https://api.paysera.com/payment-executor/integration/v1/payments/{id} \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Path Parameters​

ParameterTypeRequiredDescription
idUUIDYesPayment identifier

Response​

{
"id": "0c2d4e6a-1b3c-4d5e-9f8a-2b4c6d8e0f12",
"order_id": "a6f2b8e3-5e5f-47d9-b13f-87ed2db2938a",
"order_reference": "ORDER-12345",
"project_id": "your-project-id",
"amount": 2500,
"currency": "EUR",
"status": "settled",
"payment_method_id": "3f9a1c20-7b4d-4e8a-9c1f-5d6e7a8b9c0d",
"payment_method_key": "swedbank",
"payment_method_name": "Swedbank",
"payment_method_type": "banklink",
"purpose": "Order #12345",
"original_amount": null,
"original_currency": null,
"exchange_rate": null,
"external_payment_id": "EXT-998877",
"created_at": 1736433500,
"updated_at": 1736433570
}

Response Fields​

FieldTypeDescription
idUUIDPayment identifier
order_idUUIDAssociated order identifier
order_referencestringMerchant reference of the order
project_idstringProject the payment belongs to
amountintegerAmount in minor units
currencystringISO 4217 currency
statusstringPayment status
payment_method_idstringPayment method identifier
payment_method_keystringPayment method key (e.g., swedbank)
payment_method_namestringHuman-readable payment method name
payment_method_typestringPayment method type (e.g., banklink)
purposestringPayment purpose
original_amountintegerOriginal amount before conversion (nullable)
original_currencystringOriginal currency before conversion (nullable)
exchange_ratenumberApplied exchange rate (nullable)
external_payment_idstringIdentifier in the external provider system
created_atintegerCreation Unix timestamp (seconds)
updated_atintegerLast update Unix timestamp (seconds)

List Payments​

GET /payment-executor/integration/v1/payments

Returns a cursor-paginated list of payments for your project. Filters can be combined freely.

Request​

curl "https://api.paysera.com/payment-executor/integration/v1/payments?order_id=ORDER_ID&limit=20" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Query Parameters​

ParameterTypeDescription
order_idUUIDFilter by order
status[]stringFilter by one or more payment statuses
payment_method_id[]stringFilter by payment method id
payment_method_key[]stringFilter by payment method key
currency[]stringFilter by ISO 4217 currency
amount, amount_gte, amount_lteintegerExact / range filter on amount (minor units)
created_at_gte, created_at_lteintegerCreated-at range (Unix seconds)
qstringFree-text search over order_reference (max 255 chars)
cursorstringPagination cursor
limitintegerPage size
sortstringSort order

Response​

{
"items": [
{
"id": "0c2d4e6a-1b3c-4d5e-9f8a-2b4c6d8e0f12",
"order_id": "a6f2b8e3-5e5f-47d9-b13f-87ed2db2938a",
"amount": 2500,
"currency": "EUR",
"status": "settled",
"payment_method_key": "swedbank",
"created_at": 1736433500
}
],
"cursor": "eyJpZCI6Li4ufQ==",
"has_more": true
}