Bank verification is an essential service for any website that deals with financial transactions. At Postcode, we offer a reliable and efficient bank verification service that is designed to verify the identity of your users and protect your website from fraud.Our bank verification service allows you to verify the bank account details of your users in real-time, ensuring that the information they provide is accurate and up-to-date. When a user signs up or logs in to your website, they will be prompted to enter their bank account details. Our system will then verify the information provided against our database of verified accounts.Once the user's bank account details have been verified, you can be confident that you are dealing with a legitimate user and that their account information is accurate. This helps to reduce the risk of chargebacks and fraudulent transactions, and provides peace of mind for both you and your users.
At Postcode, we use advanced encryption and security measures to protect user data and prevent unauthorized access. Our bank verification service is also GDPR-compliant, ensuring that user data is collected and processed in accordance with EU regulations.In summary, our bank verification service can help to improve the security and credibility of your website, while also providing a seamless user experience. Contact us today to learn more about how our bank verification service can benefit your business.
The more you verify, the lower your cost.
bank | Price per bank |
---|---|
up to 769 | 13 p |
up to 66 | 300 p |
up to 120 | 250 p |
up to 200 | 200 p |
up to 5555 | 9 p |
up to 352 | 170 p |
up to 437 | 160 p |
up to 571 | 140 p |
over 1,000,000 | Contact us |
#Simple as nothing before :)
//replace your api key here
$ApiKey = urlencode('');
//replace your Account number here
$Number = urlencode('12345678');
//replace your Account number here
$SortCode = urlencode('123456');
//api URL
$url = 'https://postcodeaddress.com/api/get-bank/'.$ApiKey.'/'.$Number.'/'.$SortCode;
//make a curl request
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
#find response in JSON
$response = curl_exec($ch);
echo ($response);
curl_close ($ch);
static System.Data.DataSet BankValidation()
{
#Simple as nothing before :)
//replace your api key here
var ApiKey = urlencode('');
//replace your Account number here
var Number = urlencode('12345678');
//replace your Account number here
var SortCode = urlencode('123456');
//api URL
var url = "https://postcodeaddress.com/api/get-bank/"+ApiKey+"/"+Number+"/"+SortCode;
//Create the dataset
var dataSet = new System.Data.DataSet();
dataSet.ReadXml(url);
//Check for an error
if (dataSet.Tables.Count == 1 && dataSet.Tables[0].Columns.Count == 4 && dataSet.Tables[0].Columns[0].ColumnName == "Error")
throw new Exception(dataSet.Tables[0].Rows[0].ItemArray[1].ToString());
//Return the dataset
return dataSet;
}
require 'net/http'
require 'rexml/document'
#ApiKey = ''
#Number = '12345678'
#SortCode = '123456'
def BankValidation(ApiKey, Number, SortCode)
#Build the url
requestUrl = "https://postcodeaddress.com/api/get-bank/{ApiKey}/{Number}/{SortCode}";
#Get the data
begin
xml_results = Net::HTTP.get_response(URI.parse(requestUrl))
rescue Exception => e
puts 'Error: ' + e.message
end
#Parse to xml
results = REXML::Document.new(xml_results.body)
entries = Array.new
#Read into arrays
results.elements.each('Table/Row') do |row|
entry = Array.new
end
return entries
end
You are out of credits!
Get 1,000 free credits when you sign up.