GET
/
wallet
/
{wallet_id}
/
transactions
/
history
/
{number_of_days}
cURL
curl --request GET \
  --url https://api.nh.staging.mum.juspay.net/service2/wallet/{wallet_id}/transactions/history/{number_of_days} \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "amount": 123,
      "currency": "<string>",
      "occurred_at": {
        "seconds": 123
      },
      "transaction_id": "<string>",
      "transaction_status": "SUCCESS"
    }
  ],
  "wallet_id": "<string>"
}

Authorizations

Authorization
string
header
required

JWT access token. Obtain from /auth/otp/verify endpoint.

Path Parameters

wallet_id
string
required

Transcorp wallet id (transcorp_wallet_id from GET /wallet)

number_of_days
integer<int32>
required

Filter window in days (0 = all history, 1–365)

Response

Local ledger (max 10 entries)

transactions
object[]
required
wallet_id
string
required