npm i --save rightmove-scraper
const outcodeData = require('./outcodeData.json'); //See https://github.com/ISNIT0/rightmove-outcode-scraper
const rightmoveApi = require('rightmove-scraper')(outcodeData);
rightmoveApi
.byOutcode('SW10')
.then(data => console.log(data));
rightmoveApi
.propertyDetail(63605453)
.then(data => console.log(data));
You will need outcodeData.json from https://github.com/ISNIT0/rightmove-outcode-scraper.