npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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?

  1. 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

  2. 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.

  3. 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.

  4. Use your production credentials

    You can now set the library environment to env: production by updating the instantiator.