1. Transfers & Payouts
Numero Documentation
  • Overview
  • Transfers & Payouts
    • Validate Account Number
      POST
    • Initiate Single Transfer
      POST
    • Initiate Bulk Transfer
      POST
    • Transfer Status
      GET
  • Virtual Accounts
    • Create Virtual Account Customer
      POST
    • Create Virtual Account Business
      POST
    • Get Virtual Account
      GET
    • Get All Virtual Accounts
      GET
  • Virtual Cards
    • USD Virtual Cards
      • Issue Card
      • Top Up Card
      • Withdraw From Card
      • Activate Card
      • Deactivate Card
      • Get Card Transactions
      • Get Merchant Customers
      • Get Card Details
      • List Cards By Customer Id
  • Transaction History
    • Get Transactions
      GET
  • Webhooks & Security
    • Webhook Notifications
    • Generate Signature
      POST
  • Utility
    • Generate signature (debug)
      POST
  • Verification — POST (signed)
    • BVN
      POST
    • NIN
      POST
    • BVN Advanced
      POST
    • Bank account
      POST
    • CAC Advanced
      POST
    • CAC Premium
      POST
    • CAC Basic
      POST
    • CAC by name
      POST
    • TIN
      POST
    • Phone basic
      POST
    • Phone advanced
      POST
    • Phone + NIN
      POST
    • PVC
      POST
    • PVC Premium
      POST
    • FRSC
      POST
    • Address
      POST
    • Passport
      POST
    • AML
      POST
    • Generic — TriCredit summary (BVN)
      POST
    • Generic — CRC (BVN)
      POST
    • Generic — Kenya CRB
      POST
    • Generic — National ID (KE)
      POST
    • History
      GET
  • Verification — GET (API key only)
    • Get by ID
  • Response reference
    • POST verify — ApiResponse shape
  1. Transfers & Payouts

Validate Account Number

POST
/api/v1/business/validate

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Validate Account Number
text/plain
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-dev.usenumero.com/numeroaccount/api/v1/business/validate' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-signature-key;' \
--header 'Content-Type: application/json' \
--data '{
  "accountNumber": "string",
  "bankCode": "string"
}'
Response Response Example
{
  "status": true,
  "message": "string",
  "code": "string",
  "version": "string",
  "reference": "string",
  "data": {
    "accountName": "string",
    "accountNumber": "string",
    "bankCode": "string"
  },
  "error": {
    "message": "string"
  }
}
Modified at 2025-11-29 15:24:53
Previous
Transfers & Payouts
Next
Initiate Single Transfer
Built with