Bank Account Validation Request
Identity and SecurityHow to call Bank Account Validation — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/bank/account_validation
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| account_number | string | Required | Bank account number to validate (6–18 digits). |
| ifsc_code | string | Required | IFSC code of the account's branch (e.g. ABCD0123456). |
Request Body
{
"account_number": "1234567890",
"ifsc_code": "HDFC0001234"
}
cURL
curl -X POST https://app.way2api.com/api/v1/bank/account_validation \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"account_number":"1234567890","ifsc_code":"HDFC0001234"}'
🚀 Send Request