I am using Python to scrape some data from Rightmove. At the moment, I'm having to look up the rightmove postcode ID manually to generate the URL. Is there a way of doing this via the API?
For example, for postcode SY3 9EB, the URL is: https://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=POSTCODE%5E4203018
So I need a way of mapping a table of postcodes to ID, e.g.
Postcode ID
SY3 9EB 5E4203018
Thanks in advance!