Skip to main content
POST
/
business
/
validate
Resolve a bank account (name enquiry) πŸ”’
curl --request POST \
  --url https://api-staging.usenumero.com/numeroaccount/api/v1/business/validate \
  --header 'Content-Type: application/json' \
  --header 'X-Numero-Api-Key: <api-key>' \
  --header 'X-Numero-Signature: <api-key>' \
  --data '
{
  "accountNumber": "<string>",
  "bankCode": "<string>",
  "transferSessionId": "<string>",
  "amount": 123
}
'
{ "status": true, "message": "Successful", "code": "200", "version": "v1", "reference": "abc123", "data": { "accountName": "John Doe", "accountNumber": "0123456789", "bankCode": "000013" }, "error": null }

Authorizations

X-Numero-Api-Key
string
header
required

Your business API key (live_key_...). Issued on approval; managed in Dashboard β†’ Settings β†’ Developer.

X-Numero-Signature
string
header
required

Base64(HMAC-SHA256(secretApiKey, input)) over the raw request body (POST) or canonicalized query string (signed GET). Also send X-Numero-Signature-Version: v2. Required on money-movement / state-changing endpoints (marked πŸ”’).

Body

application/json
accountNumber
string
required
bankCode
string
required
transferSessionId
string | null

Echo across the validate→transfer flow.

amount
number | null

Response

Successful response

Canonical response envelope for the public surface. data on success, error on failure.

data
any
required

Endpoint payload on success (object or array); null on failure.

error
object
required
meta
object
required