Bankei BaaS Admin
  1. Checking Account
Bankei BaaS Admin
  • Introduction
  • API Security and Authentication
  • Handling Monetary Values in Our System
  • Secure API Credential Exchange Process
  • Organization
    • Get Organization
      GET
  • Admin Account
    • Get Account Information
      GET
  • User
    • Create User - Basic
      POST
    • Get User
      GET
  • KYC
    • Request KYC Analisys - Company
      POST
    • Get KYC Analisys Status
      GET
    • Request KYC Analisys - Consumer
      POST
    • Send KYC Document
      POST
  • Checking Account
    • Get Account Information
      GET
    • Get Account Balance
      GET
    • Create Checking Account
      POST
    • Get Account Transactions
      GET
  • Card
    • Get Card Groups
      GET
    • Create Nominated Card
      POST
    • Get Cards
      GET
    • Get Card Shipping
      GET
    • Activate Nominated Card
      POST
    • Temporary Disable Card
      POST
    • Enable Temporary Disable Card
      POST
    • Block Card
      POST
    • Get Card Sensitive Information
      GET
  • Pix
    • Generate Pix-In Static BR Code
    • Generate Pix-In Dynamic Cob BR Code
    • Generate Pix-In Dynamic CobV BR Code
    • Get Account Pix Keys
    • Generate Pix Key
  • Pix Out
    • Preview Pix BrCode Payment
    • Preview Pix Key Payment
    • Confirm Pix Payment
  • Bill Payment
    • Line vs. Barcode
    • Bill Payment Preview
    • Create Bill Payment
  • Invoice
    • Generate Invoice
  • Receipt
    • Get Transaction Receipt
  • Webhook
    • Bill Payment Webhook Events
    • Create Webhook Subscription
    • Get Webhook Subscriptions
    • Delete Webhook Subscription
    • Get Webhook Events
    • Get Webhook Event Detail
    • Get Webhook Send Attempts
    • Get Webhook Send Attempt Detail
    • Dispatch Webhook Events
  • Sandbox
    • Pay Pix BrCode [Sandbox Only]
    • Confirm Bill Payment [Sandbox Only]
    • Reject Bill Payment [Sandbox Only]
    • Approve Kyc Analisys [Sandbox Only]
  • Schemas
    • Account
    • Asset
    • Metadata
    • Address
    • Consumer
  1. Checking Account

Get Account Transactions

GET
/api/checking-account/{account}/transactions
Remember that in addition to the API key, you will need to sign the request. API Security and Authentication

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params

Query Params

Header Params

Responses

🟢200
application/json
Body

🟠404Not Found
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://baas-api.np.bankei.com.br/api/checking-account/0298f43c-36d1-8c95-bf29-g3c929fe4d20/transactions?page=1&resultsPerPage=10&betweenDate=2025-08-14,2025-08-16&type=Credit&chartOfAccounts=INTERNAL_TRANSFER_DESTINATION&chartOfAccountsGroup=INTERNAL_TRANSFER' \
--header 'x-signature: ' \
--header 'x-timestamp: ' \
--header 'x-endpoint: ' \
--header 'x-org-id: ' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "totalItems": 4,
    "totalPages": 1,
    "currentPage": 1,
    "data": [
        {
            "id": "0198ab53-b82c-7087-9c50-e8dc9876f894",
            "transactionId": "0198ab53-b82c-7085-8c28-0ea0b7a5f97e",
            "description": "Requested by app or card",
            "type": "Credit",
            "assetCode": "BRL",
            "amount": 495,
            "chartOfAccounts": "INTERNAL_TRANSFER_DESTINATION",
            "accountId": "0197614c-1057-772f-a705-e29ddff173e4",
            "parentTransactionId": null,
            "status": "Completed",
            "sourceAmount": 495,
            "sourceAssetCode": "BRL",
            "destinationAmount": 495,
            "destinationAssetCode": "BRL",
            "exchangeRate": 1,
            "chartOfAccountsGroup": "INTERNAL_TRANSFER",
            "externalId": "35711AC44648426091135DDFAD9930F1135CF5A815D5446D9621EE0838E190BA32DE6DB4B64543EFBC3E60AB304AB27750D9DBC787324EE19370DAC6203BDE30",
            "createdAt": "2025-08-15T01:24:07.340598Z"
        },
        {
            "id": "0198ab50-8df7-70f2-b831-83ac29b15a6c",
            "transactionId": "0198ab50-8df7-70f0-8702-4c5f28ae1546",
            "description": "Requested by app or card",
            "type": "Credit",
            "assetCode": "BRL",
            "amount": 500,
            "chartOfAccounts": "INTERNAL_TRANSFER_DESTINATION",
            "accountId": "0197614c-1057-772f-a705-e29ddff173e4",
            "parentTransactionId": null,
            "status": "Completed",
            "sourceAmount": 500,
            "sourceAssetCode": "BRL",
            "destinationAmount": 500,
            "destinationAssetCode": "BRL",
            "exchangeRate": 1,
            "chartOfAccountsGroup": "INTERNAL_TRANSFER",
            "externalId": "619E785B7783400D96EFD17CE575585A5E158FD88AA24476BF6712EB8F27392BE33CDB2708AF4097A089CC40F847A74EB808A22978F54D03BC8D98E18D0F200A",
            "createdAt": "2025-08-15T01:20:39.927887Z"
        },
        {
            "id": "0198a99d-98df-72d7-a1c0-53b9d6db14bd",
            "transactionId": "0198a99d-98df-72d5-8662-f9e046f57a32",
            "description": "Requested by app or card",
            "type": "Credit",
            "assetCode": "BRL",
            "amount": 149,
            "chartOfAccounts": "INTERNAL_TRANSFER_DESTINATION",
            "accountId": "0197614c-1057-772f-a705-e29ddff173e4",
            "parentTransactionId": null,
            "status": "Completed",
            "sourceAmount": 149,
            "sourceAssetCode": "BRL",
            "destinationAmount": 149,
            "destinationAssetCode": "BRL",
            "exchangeRate": 1,
            "chartOfAccountsGroup": "INTERNAL_TRANSFER",
            "externalId": "AA5D88CDF6A342359086E6D518686CB0591BFFA3B54F49A3AAD609459E4B32CC3359C716F75340B1826D37EA71146C9AA51CB4A148C14C568DE75A157A990643",
            "createdAt": "2025-08-14T17:25:34.559054Z"
        },
        {
            "id": "0198a990-a626-745b-ad40-237b7c4914e9",
            "transactionId": "0198a990-a626-7459-9ca5-ca3413f8955e",
            "description": "Requested by app or card",
            "type": "Credit",
            "assetCode": "BRL",
            "amount": 500,
            "chartOfAccounts": "INTERNAL_TRANSFER_DESTINATION",
            "accountId": "0197614c-1057-772f-a705-e29ddff173e4",
            "parentTransactionId": null,
            "status": "Completed",
            "sourceAmount": 500,
            "sourceAssetCode": "BRL",
            "destinationAmount": 500,
            "destinationAssetCode": "BRL",
            "exchangeRate": 1,
            "chartOfAccountsGroup": "INTERNAL_TRANSFER",
            "externalId": "8C661A4FA2CE465DA89BCEAB563835B03399A07DD7A54C2F9438EDCA68431159855C9C622C344F5DB624AF3822B1A60EF3D64768963343AA98B395ED3D43AAAA",
            "createdAt": "2025-08-14T17:11:25.990154Z"
        }
    ]
}
Modified at 2026-01-12 11:52:20
Previous
Create Checking Account
Next
Get Card Groups
Built with