Transactions

Retrieve transaction history and recent operations for your BaridiMob accounts.

GET

/sdk/mobilebank/accounts/{rip}/recent-operations

Get the most recent operations for an account (transfers sent/received).

Query Parameters

Parameter Type Default Description
type string transfer Operation type filter
page integer 1 Page number

Response

{
  "success": true,
  "message": "Operation Successful.",
  "message_ar": "العملية ناجحة.",
  "data": {
    "operations": [
      {
        "id": "268764689",
        "type": "transfer",
        "amount": 8000,
        "currency": "DZD",
        "source_rip": "00799999001234567890",
        "target_rip": "00799999009876543210",
        "status": "success",
        "timestamp": "2025-12-01T13:22:50+00:00"
      }
    ],
    "pagination": {
      "current_page": 1,
      "per_page": 10
    }
  }
}

Your API key is saved locally in your browser.

rip
type
page
GET
GET

/sdk/mobilebank/accounts/{rip}/account-history

Get detailed transaction history for an account.

Query Parameters

Parameter Type Description
start_date string Start date in YYYYMMDD format (e.g., 20251101)
page integer Page number (default: 1)

Response

{
  "success": true,
  "message": "Operation Successful.",
  "message_ar": "العملية ناجحة.",
  "data": {
    "transactions": [
      {
        "id": "7525950",
        "type": "transfer_out",
        "description": "Transfer to another account",
        "amount": -8000,
        "currency": "DZD",
        "reference": "009593752595",
        "status": "Success",
        "balance_after": "0.00 DZD",
        "timestamp": "2025-12-01T13:22:50+00:00"
      },
      {
        "id": "8537430",
        "type": "transfer_in",
        "description": "Transfer from another account",
        "amount": 38880,
        "currency": "DZD",
        "reference": "009367853743",
        "status": "Success",
        "balance_after": "8024.00 DZD",
        "timestamp": "2025-11-03T14:59:16+00:00"
      },
      {
        "id": "5405550",
        "type": "bill_payment",
        "description": "Mobile Topup / Bill Payment",
        "amount": -100,
        "currency": "DZD",
        "reference": "009080540555",
        "status": "Success",
        "balance_after": "1500.00 DZD",
        "timestamp": "2025-09-29T23:05:05+00:00"
      }
    ],
    "pagination": {
      "current_page": 1,
      "per_page": 10
    }
  }
}

Your API key is saved locally in your browser.

rip
start_date
page
GET