curl --request POST \
--url https://api.ibantrack.com/api-v1/account-holder-verifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account": {
"iban": "FR7630004000031234567890143"
},
"account_holder": {
"name": "Jean Dupont"
}
}
'import requests
url = "https://api.ibantrack.com/api-v1/account-holder-verifications"
payload = {
"account": { "iban": "FR7630004000031234567890143" },
"account_holder": { "name": "Jean Dupont" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
account: {iban: 'FR7630004000031234567890143'},
account_holder: {name: 'Jean Dupont'}
})
};
fetch('https://api.ibantrack.com/api-v1/account-holder-verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ibantrack.com/api-v1/account-holder-verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'account' => [
'iban' => 'FR7630004000031234567890143'
],
'account_holder' => [
'name' => 'Jean Dupont'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.ibantrack.com/api-v1/account-holder-verifications"
payload := strings.NewReader("{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.ibantrack.com/api-v1/account-holder-verifications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ibantrack.com/api-v1/account-holder-verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "abc123ab-3171-4e97-92ec-a11e9fabc123",
"status": "completed",
"match_result": "match"
}Verify IBAN holder
Create a new IBAN holder verification request.
curl --request POST \
--url https://api.ibantrack.com/api-v1/account-holder-verifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account": {
"iban": "FR7630004000031234567890143"
},
"account_holder": {
"name": "Jean Dupont"
}
}
'import requests
url = "https://api.ibantrack.com/api-v1/account-holder-verifications"
payload = {
"account": { "iban": "FR7630004000031234567890143" },
"account_holder": { "name": "Jean Dupont" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
account: {iban: 'FR7630004000031234567890143'},
account_holder: {name: 'Jean Dupont'}
})
};
fetch('https://api.ibantrack.com/api-v1/account-holder-verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ibantrack.com/api-v1/account-holder-verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'account' => [
'iban' => 'FR7630004000031234567890143'
],
'account_holder' => [
'name' => 'Jean Dupont'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.ibantrack.com/api-v1/account-holder-verifications"
payload := strings.NewReader("{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.ibantrack.com/api-v1/account-holder-verifications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ibantrack.com/api-v1/account-holder-verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account\": {\n \"iban\": \"FR7630004000031234567890143\"\n },\n \"account_holder\": {\n \"name\": \"Jean Dupont\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "abc123ab-3171-4e97-92ec-a11e9fabc123",
"status": "completed",
"match_result": "match"
}Overview
This endpoint is the core of Ibantrack. It allows you to verify whether the provided name matches the holder of the specified IBAN, in real-time and across the SEPA zone. The verification is performed synchronously by querying the responding bank. Use the interactive API playground to test requests directly from this page: Authenticate using your API token, modify request parameters, and inspect real API responsesRequest payload
Required fields
| Field | Type | Description |
|---|---|---|
account.iban | string | IBAN of the account to be verified. |
account_holder.name | string | Name of the account holder to be verified. - For individuals: full legal name. - For businesses: legal business name (company name). |
Example requests
Individual — France
{
"account": {
"iban": "FR7630004000031234567890143"
},
"account_holder": {
"name": "Jean Dupont"
}
}
Business — Germany
{
"account": {
"iban": "DE80500105172521224695"
},
"account_holder": {
"name": "Blue Horizon Travel GmbH"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Response
Verification completed
"abc123ab-3171-4e97-92ec-a11e9fabc123"
The current lifecycle state of the verification request.
A completed status indicates that the financial institution has been successfully reached and processed the request.
A failedstatus indicates that the verification could not be completed due to technical or institutional constraints.
Additional details may be provided in the status_reason field.
pending, completed, failed The outcome of the account holder name verification against the financial institution’s records. Provided only when statusis completed.
match, close_match, no_match, account_not_verifiable Indicates the full name or company name as registered by the financial institution. Provided only if 'match_result' is 'close_match' and in accordance with data privacy regulations.
"JEAN DUPONT"
Additional context provided when the verification could not be completed.
institution_out_of_scope, institution_timeout, unsupported_characters, verification_not_possible "institution_timeout"
Show child attributes
Show child attributes