Quickstart Guide
All API requests are made to:Get API Credentials
Log in to your Ibantrack Dashboard and retrieve your credentials under Settings > API.
- Client ID
- Client Secret
You must have Administrator privileges to view and copy these credentials.Your Client ID & Secret carry significant privileges. Please keep them secure and do not share them.
Obtain Access Token
Tokens expire after 1 hour. Cache and reuse tokens until expiration.
Authorization header of every API request.For detailed token management, see Authentication .Make Your First Verification
See Enrichment.
Interpret the Result
The
See Match Results for details.
match_result tells you if the name matches:| Result | Meaning |
|---|---|
match | ✅ Name matches bank records |
close_match | ⚠️ Similar name (review matched_name) |
no_match | ❌ Name doesn’t match |
unable_to_verify | ⚪ Bank couldn’t verify |
Quick Example
Test in Sandbox
Use the sandbox environment to test without real bank calls.The
sandbox_result input parameter forces a specific outcome:
Response Codes
Ibantrack uses conventional HTTP response codes to indicate the success or failure of an API request.| Code | Description |
|---|---|
200 | Success: Everything worked as expected. |
400 | Bad Request: The request was unacceptable, often due to missing parameters. |
401 | Unauthorized: No valid client credentials or token provided. |
403 | Forbidden: Insufficient credits to perform the verification. |
429 | Too Many Requests: You have hit the rate limit. |
500 | Server Error: Something went wrong on our end. |
Rate Limiting
To ensure platform stability and high quality of service for all users, Ibantrack API enforces the following rate limits:| Endpoint | Rate Limit |
|---|---|
POST /account-holder-verifications | 60 requests / minute |
GET /account-holder-verifications/{id} | 120 requests / minute |
429 Too Many Requests error.
Need higher limits for batch processing or high-volume environments? Contact our support team to discuss a custom plan.

