Get started quickly with our bank account validation API

Follow the steps below to get started. We'll have you up and running in no time

How can you reduce failed payments and save money?

The cost of failed payments - in wasted time and lost cashflow - is huge. Cut that cost straight away with a few pence spent validating the bank account details are correct. Immediate feedback which can be acted on before payment schedules even begin.

Read our short article on why bank account validation is important

We offer a choice of simple plans based on your monthly usage. Whether you are needing to check hundreds of thousands of accounts each year, or just a handful each week, we have a solution that fits you.

Watch the short video below to see a demo of our Secure Portal toolset

View our pricing plansTry our free account checker

Sign up and get using Mintly

Use our secure checkout to sign up and subscribe to one of our great value plans. If you need a bespoke plan or need an SLA, we can set that up, just contact us. Once you're subscribed you can get using our tools straight away or access our API.

API Integration

You'll find your API Key in your Mintly dashboard, under Subscription details. Use our tools, sample code and API docs to start integrating! Our support team is also on hand to help and our API documentation has sample code.

With most web technologies, it's just a few lines of code to call our API!

import axios from 'axios'
// const axios = require('axios') for CommonJS

const config = {
  method: 'GET',
  url: 'https://api.mintly.uk/bankAccount/v1/sortcode/XXXXXX/account/YYYYYYYY',
  headers: {
    'X-API-KEY': 'YOUR_API_KEY'
  }
}
try {
  const response = await axios.request(config)
  console.log(response)
} catch (error) {
  // Handle error
  console.log(error)
}
import requests
try:
  url = 'https://api.mintly.uk/bankAccount/v1/sortcode/XXXXXX/account/YYYYYYYY'
  headers = { 'X-API-KEY': 'YOUR_API_KEY' }
  r = requests.get(url, headers=headers, timeout=0.1)
  r.raise_for_status()
  r.json()
except:
  # Handle errors
  ...
$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.mintly.uk/bankAccount/v1/sortcode/XXXXXX/account/YYYYYYYY',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'X-API-KEY: YOUR_API_KEY'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.mintly.uk/bankAccount/v1/sortcode/XXXXXX/account/YYYYYYYY");
request.Headers.Add("X-API-KEY", YOUR_API_KEY);
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Secure Portal

Alternatively, get going right away with our portal; simply login and use the Tools to submit sort codes, account numbers and IBAN. Get the answers you need right away! Our portal tells you all the data you need:

  • Whether the sort code and account are valid
  • The owning bank and branch name
  • The contact address and telephone number for the bank
  • The payment types accepted by the bank branch (e.g. BACS, Direct Debit, Faster Payment)