Skip to main content
GET
/
api
/
v1.0
/
statements
/
{account_id}
List
curl --request GET \
  --url https://sandbox-payment-b2b.singapay.id/api/v1.0/statements/{account_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-PARTNER-ID: <api-key>'
{
  "status": 200,
  "success": true,
  "data": {
    "transaction_id": "331222025121209092460774035",
    "reference_number": "1134567891011",
    "status": "success",
    "bank": {
      "code": "BRI",
      "account_name": "John Doe",
      "account_number": "1234567890000"
    },
    "gross_amount": {
      "currency": "IDR",
      "value": "51000.00"
    },
    "fee": {
      "name": "Transfer Fee",
      "value": "1000.00",
      "currency": "IDR"
    },
    "net_amount": {
      "currency": "IDR",
      "value": "50000.00"
    },
    "post_timestamp": "1765505364000",
    "processed_timestamp": "1765505365000",
    "balance_after": {
      "value": "1000000.00",
      "currency": "IDR"
    },
    "notes": "Transfer payment"
  },
  "pagination": {}
}

Authorizations

Authorization
string
header
required

JWT issued by POST /api/v1.1/access-token/b2b. Send Authorization: Bearer <token>.

X-PARTNER-ID
string
header
required

Merchant API key (Credential.api_key). Required on every request.

Path Parameters

account_id
string
required

Account ULID

Query Parameters

start_date
string

Range start (passed to whereBetween with processed_timestamp; default start of current month).

end_date
string

Range end (default end of current month).

Response

Success — data is collection of MerchantStatementResource; meta includes pagination + additional_info date range

Standard success response envelope for disbursement API v1.0 endpoints (list, show, check fee, check beneficiary, and transfer).

status
integer

HTTP status code echoed in the response body.

Example:

200

success
boolean

Indicates whether the request completed successfully.

Example:

true

data
object

Response payload. A single object for detail endpoints, or an array of disbursement records for list. Field shapes match the documented resource schemas.

pagination
object | null

Pagination metadata when listing disbursements (for example current page, per page, and total count). Omitted when data is a single object.