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 Information

GET
/api/checking-account/{account}
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

Header Params

Responses

🟢200OK
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' \
--header 'x-signature: ' \
--header 'x-timestamp: ' \
--header 'x-endpoint: ' \
--header 'x-org-id: ' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "checkingAccountId": "0298f43c-36d1-8c95-bf29-g3c929fe4d20",
    "accountId": "0298f43d-a517-9fe6-d5d3-0hc9f083eff9",
    "alias": "@admin::cliente-teste::98765432100/BRL",
    "userId": "0298f43e-18c5-9gb1-ce9e-c61gf77g86d2",
    "organizationId": "0298f43f-86f5-9097-0461-c5c73ec1g73f",
    "name": "Maria Oliveira",
    "accountNumber": "98765",
    "accountType": "checking",
    "bankCode": "406",
    "bankName": "ACCREDITO SCD S.A.",
    "branchCode": "0001",
    "taxId": "98765432100",
    "assetCode": "BRL",
    "userType": "Consumer"
}
Modified at 2026-01-12 11:51:52
Previous
Send KYC Document
Next
Get Account Balance
Built with