Ordnance Survey address lookup client (https://apidocs.os.uk/docs/os-places-postcode)
npm install @hmcts/os-places-clientWritten to directly replace the deprecated postcode-info-client-node
API Client wrapper for Ordnance Survey Places Postcode API.



You will need an API key for OS Places API - Capture and Verification. You can get one by emailing platforms@digital.justice.gov.uk with a brief summary of:
* Who you are
* What project you're going to be using it on
* Roughly how many lookups you expect to do per day
* No. of keys required
* Product and environment type for each key
* Contact name and email address for issuing keys
bash
$ yarn add @hmcts/os-places-client
`Typescript:
`ts
import { OSPlacesClient } from '@hmcts/os-places-client'new OSPlacesClient('').lookupByPostcode('SN15NB')
`- Javascript -
`js
const OSPlacesClient = require('@hmcts/os-places-client').OSPlacesClientnew OSPlacesClient('').lookupByPostcode('SN15NB')
``