Padel Snipe
Thousands of mapped padel clubs across Europe, CC-BY licensed
Padel Snipe publishes a geolocated dataset of padel clubs across several European countries plus a few beyond. One keyless GET returns every club with coordinates, court counts and booking platform, cached daily at the edge. The data ships under CC-BY 4.0, so commercial reuse is fine with attribution.
GET https://padelsnipe.com/api/world/clubs
{
"license": "CC-BY-4.0",
"attribution": "Padel Snipe — https://padelsnipe.com/world",
"count": 3788,
"countries": [
"BE",
"DE",
"ES",
"FR",
"GB",
"IT",
"NL",
"PT",
"QA",
"SE",
"US"
],
"clubs": [
{
"id": "22eb0f22-ac90-4a2f-a946-2b2ab75aabd9",
"name": "Polisportiva Curiel Pontassieve",
"platform": "playtomic",
"country": "IT",
"city": "Pontassieve",
"courts": {
"total": 2,
"indoor": 0,
"outdoor": 2
}
}
]
}curl "https://padelsnipe.com/api/world/clubs"const res = await fetch("https://padelsnipe.com/api/world/clubs");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://padelsnipe.com/api/world/clubs")
print(res.json())/world/clubsPROBEDThousands of mapped padel clubs across Europe, CC-BY licensed
/worldWorld — documented GET route.
/world/1World details by ID (example: 1).
/world?limit=10World — documented GET route.
/world/search?q=testSearch by query parameters.
/world/clubs.csvClubs Csv — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Padel Snipe: common questions
Is Padel Snipe free to use?
Yes — Padel Snipe is a free health & food API. Free tier: Free — no auth. Commercial use is allowed on the free tier.
Does Padel Snipe need an API key?
No — Padel Snipe needs no API key or signup. You can call it straight away; rate limits still apply (Fair use — no hard limit stated).
Can I call Padel Snipe from the browser?
Yes — Padel Snipe returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Padel Snipe up right now?
As of our last scheduled check, Padel Snipe is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.