UK Potholes | Report and View Potholes

Pothole Reporter

Help keep roads safe by reporting potholes in your area. This is a user-submitted map — none of this data is automatically reported to local authorities.

Register Login View Map

How It Works

Report a Pothole

Click on the map in your dashboard to submit a pothole. The location, street, and area are automatically filled for you.

View Submissions

Anyone can view reported potholes on the public map. Check if issues have already been submitted in your area.

Community Driven

This platform is maintained by users like you. All reports are user-submitted — we do not send this data to local authorities automatically.

Disclaimer: All data displayed on this site is submitted by users. This website does not automatically report potholes to local authorities. Always exercise caution and verify road conditions independently.

For Developers

Use our UK Pothole API to access user-submitted pothole data across the UK. This data is for informational purposes only and is not reported to local authorities.

Getting Started
  1. Register an account here.
  2. Login and go to your dashboard to get your API key.
  3. Use the key in your requests like this:
GET https://api.ukpothole.co.uk/potholes.php?apikey=YOUR_KEY
Optional Filters
Example Requests
// All potholes in London
https://api.ukpothole.co.uk/potholes.php?apikey=YOUR_KEY&city=London

// Nearby potholes within 5 km
https://api.ukpothole.co.uk/potholes.php?apikey=YOUR_KEY&lat=51.5&lng=0.7&radius=5
Sample Code (JS)

fetch('https://api.ukpothole.co.uk/potholes.php?apikey=YOUR_KEY')
  .then(res => res.json())
  .then(data => console.log(data));
    

More examples and languages will be added soon. Your API key is unique to your account and should be kept secure.