Payments & Fund TransfersPayments

List Payments

GET
/v1/payments

Authorization

authorization
AuthorizationBearer <token>

Set Your Secret API Key

In: header

Query Parameters

after?string

An object ID used as a cursor in pagination. If a list request returns 100 objects ending with obj_0KSEVXZ2ZF0AV, a subsequent call can include after=obj_0KSEVXZ2ZF0AV to fetch the next page of the list.

limit?integer

A limit on the number of objects to be returned, between 1 and 100.

Formatint32
order?string

Sort list objects in either ascending or descending order.

Value in

  • "ASC"
  • "DESC"
status?string

Filter by payment status.

Response Body

*/*

application/json

application/json

curl -X GET "https://example.com/v1/payments"

One page of payments. Pass the last id as after to fetch the next page while hasMore is true.

{  "data": [    {      "id": "pymt_0J7Q2D4K9RXM3",      "type": "FAST",      "amount": 150000,      "currency": "SGD",      "customerReference": "INV-20260901-001",      "senderAccountId": "intacc_0H3BQY9BK1FCG",      "receiver": {        "name": "Chan Tai Man",        "bank": "OCBCSGSGXXX",        "bankAccountNumber": "7654321098"      },      "paymentDetails": "Payment for invoice INV-20260901-001",      "currencyExchange": {        "fxContractId": null      },      "senderAccountCurrency": "SGD",      "status": "COMPLETED",      "resultCode": null,      "bankReference": "FT26244N3K8Q1V",      "createdAt": "2026-09-01T02:15:32.418206Z",      "updatedAt": "2026-09-01T02:15:33.102544Z"    },    {      "id": "pymt_0J7Q2GTB5W8N6",      "type": "PAYNOW",      "amount": 4200,      "currency": "SGD",      "customerReference": "REFUND-88213",      "senderAccountId": "intacc_0H3BQY9BK1FCG",      "receiver": {        "name": "Tan Mei Ling",        "proxyType": "MOBILE",        "proxyValue": "+6591234567"      },      "paymentDetails": "Refund for order 88213",      "currencyExchange": {        "fxContractId": null      },      "senderAccountCurrency": "SGD",      "status": "SUBMITTED",      "resultCode": null,      "bankReference": "FT26244P7V2M9D",      "createdAt": "2026-09-01T02:18:05.771903Z",      "updatedAt": "2026-09-01T02:18:06.204118Z"    }  ],  "hasMore": true}