Access London's most comprehensive property scoring data through our RESTful API. Get real-time scores, borough metrics, and property insights with a single request.
Get property scores and detailed metrics for a specific postcode
// Example Response { "postcode": "SW1A", "scores": { "amenities": 8.5, "commute": 9.2, "safety": 7.8, "value": 6.5, "transport": 9.0, "overall": 8.2 }, "borough": "Westminster", "last_updated": "2024-01-15T10:30:00Z" }
Get all London boroughs with their average scores
// Example Response [ { "name": "Westminster", "code": "WSM", "average_score": 8.2, "property_count": 15420 } ]
Search properties by criteria (min score, max rent, etc.)
Submit a new property for scoring
Sign up for a free account to get instant access to our API with 1,000 requests/month.
const response = await fetch('https://api.localpinned.co.uk/v1/properties/SW1A', { headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' } }); const data = await response.json(); console.log(data.scores.overall); // 8.2
import requests response = requests.get( 'https://api.localpinned.co.uk/v1/properties/SW1A', headers={'Authorization': f'Bearer {API_KEY}'} ) data = response.json() print(data['scores']['overall']) # 8.2
curl -X GET https://api.localpinned.co.uk/v1/properties/SW1A \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"