Search UK postcodes and retrieve full address data
The UK Postcode Lookup API lets you search for addresses using a full or partial UK postcode. Each request returns a list of matching addresses with street, city, county, and postcode fields. The database covers all 1.6 million UK postcodes.
GET /api/postcode?search={postcode}&apiKey={key}
Returns a JSON array of address objects matching the postcode.
{
"results": [
{
"addressLine1": "1 High Street",
"addressLine2": "",
"city": "London",
"county": "Greater London",
"postcode": "EC1A 1BB"
},
{
"addressLine1": "2 High Street",
"addressLine2": "Floor 3",
"city": "London",
"county": "Greater London",
"postcode": "EC1A 1BB"
}
],
"tokensUsed": 1,
"resultCount": 2
}
1 token / 10 results
ceiling(results ÷ 10)
0 tokens charged
1.6M UK postcodes
JSON REST API
API key (query param)
Swagger / OpenAPI