1. Verification — POST (signed)
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
    • Create Virtual Account Business
    • Get Virtual Account
    • Get All Virtual Accounts
  • 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
  • Webhooks & Security
    • Webhook Notifications
    • Generate Signature
  • Utility
    • Generate signature (debug)
  • 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. Verification — POST (signed)

History

GET
/api/v{{apiVersion}}/business/verification/history
Paginated verification history for the business resolved from API key.

Request

Query Params

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api-dev.usenumero.com/numeroaccount/api/v{{apiVersion}}/business/verification/history?pageNumber=1&pageSize=20' \
--header '{{apiHeaderName}}: {{apiKey}}'
Response Response Example
{
  "status": true,
  "message": "Success",
  "code": "200",
  "data": {
    "items": [
      {
        "verificationId": 1,
        "reference": "VER-20260102-abc",
        "type": "BVN",
        "status": "Completed",
        "createdAt": "2026-01-02T12:00:00Z",
        "maskedIdentifiers": "bvn=***8901",
        "walletTransactionReference": "VER-20260102-abc",
        "walletAmount": 100.0
      }
    ],
    "totalCount": 1,
    "pageNumber": 1,
    "pageSize": 20
  }
}
Modified at 2026-04-04 16:28:41
Previous
Generic — National ID (KE)
Next
Verification — GET (API key only)
Built with