hmrc-vat-checker
v1.0.0
Published
Validate and check info for UK VAT numbers
Readme
HMRC VAT Checker
This library allows you to check UK VAT numbers against the HMRC APIs.
import { HmrcVatCheckerV2 } from 'hmrc-vat-checker'
const vatChecker = new HmrcVatCheckerV2({
env: 'sandbox', // or 'production'
clientId: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
clientSecret: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
})
const vatNumberToCheck = '245719348'
vatChecker.checkVatNumber(vatNumberToCheck)
.then(resp => {
/*
-> HmrcVatCheckerV2Response {
exists: true,
name: 'BRITISH TELECOMMUNICATIONS PUBLIC LIMITE D COMPANY',
vatNumber: GbVatNumber { number: '245719348' },
address: HmrcVatCheckerV2ResponseAddress {
line1: '1 BRAHAM STREET',
line2: 'LONDON',
postcode: 'E1 8EE',
countryCode: 'GB'
},
requesterVatNumber: null,
consultationNumber: null,
processingDate: 2025-01-29T12:00:00.000Z
}
*/
})
.catch(err => {
// # Error while checking
// Non-existent VAT numbers will resolve the promise with
// HmrcVatCheckerV2Response.exists === false
// Invalid VAT number will error here
// API errors will error here
})
// VAT Numbers can be optionally prefixed with 'GB'
const ourVatNumber = 'GB245719348'
// Get a HMRC consultation reference number with our check as well
vatChecker.checkVatNumberWithReference(vatNumberToCheck, ourVatNumber)
.then(resp => {
/*
-> HmrcVatCheckerV2Response {
// ... standard response plus:
requesterVatNumber: GbVatNumber { number: '245719348' },
consultationNumber: 'XXX-XXX-XXX',
// ...
}
*/
})Example
Examples are available in the examples folder.
How to get credentials?
Create an account on the HMRC Developer Hub
Further instructions can be found at https://developer.service.hmrc.gov.uk/api-documentation/docs/using-the-hub
Create sandbox credentials
You will need to generate a client ID and client secret, store these securely and use them to instantiate this library. You can now use the sandbox environment with the mock VAT registration numbers.
Get production credentials
Once you're ready, you can apply to go live on the HMRC Developer Hub. This library should already comply with the technical requirements set out by HMRC, but you will have to assess your own compliance with the questions they ask you.
Use your production credentials
You can now set the library environment to
env: productionby updating the instantiator.
