Transactions

List Transactions

get
Query parameters
pageNuminteger · min: 1OptionalExample: 1
pageSizeinteger · min: 1OptionalExample: 10
Header parameters
x-api-keystringRequiredExample: bagel_test_64C70FE8526A48568D4EEA9D9164F508
Responses
200Success
application/json
get
GET /api/transactions/list HTTP/1.1
Host: test.bagelpay.io
x-api-key: bagel_test_64C70FE8526A48568D4EEA9D9164F508
Accept: */*
200Success
{
  "total": 16,
  "items": [
    {
      "amount": 5000,
      "currency": "usd",
      "type": "payment",
      "customer": {
        "id": "null",
        "email": null
      },
      "remark": null,
      "mode": "test",
      "fees": 3,
      "tax": 0,
      "net": 47,
      "object": "transaction",
      "transaction_id": "tran_1965033938394124289",
      "order_id": "ORD_1965033809498968065",
      "amount_paid": 5000,
      "discount_amount": 5000,
      "tax_amount": 5000,
      "tax_country": "US",
      "refunded_amount": 0,
      "created_at": "2025-09-08 20:46:14",
      "updated_at": "2025-09-08 20:46:14"
    }
  ],
  "code": 200,
  "msg": "success"
}