Example Request
curl --request GET \ --url 'https://sekalipay.com/api/v1/trx?page=1' \ --header 'X-APIKEY: YOUR_API_KEY'
Response Sample
200 OK
{
"message": "OK",
"data": {
"transactions": [
{
"invoice": "INV-XXX",
"ref_id": "TRX-001",
"status": "completed",
"price": 50000,
"fees": 0,
"amount": 50000,
"activity": "order",
"created_at": "2026-07-08T10:00:00.000000Z",
"updated_at": "2026-07-08T10:00:05.000000Z",
"expired_at": null,
"payment_link": null,
"qr_link": null
}
],
"pagination": {
"total": 42,
"per_page": 10,
"current_page": 1,
"last_page": 5,
"from": 1,
"to": 10
}
}
}