DiscGolf
Structured disc golf course data with coordinates and layouts
DiscGolfAPI serves a curated catalog of disc golf courses with coordinates, layouts, operational status and confidence scoring. Public course endpoints return JSON with no API key, tagged with attribution and licensing metadata. Filter by country and page through the listings to feed maps or apps.
GET https://io.discgolfapi.com/v1/courses?country=GB&limit=2
{
"schema_version": "1.0.0",
"attribution": "Course data supplied by DiscGolfAPI.",
"license": "Free to use with attribution.",
"count": 2,
"courses": [
{
"id": "crs_ackers_adventure",
"name": "Ackers Adventure",
"country_code": "GB",
"region_code": "ENG",
"operational_status": "open",
"confidence_score": 0.65
}
]
}curl "https://io.discgolfapi.com/v1/courses?country=GB&limit=2"const res = await fetch("https://io.discgolfapi.com/v1/courses?country=GB&limit=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://io.discgolfapi.com/v1/courses?country=GB&limit=2")
print(res.json())/courses?country=GB&limit=2PROBEDStructured disc golf course data with coordinates and layouts
/courses?limit=5Courses — documented GET route.
/courses?page=1Courses — documented GET route.
/courses?country=GB&limit=5&offset=10%3C/code%3E%3C/pre%3ECourses — 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.
DiscGolf: common questions
Is DiscGolf free to use?
Yes — DiscGolf is a free health & food API. Free tier: Free — public endpoints, no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does DiscGolf need an API key?
No — DiscGolf needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call DiscGolf from the browser?
Yes — DiscGolf 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 DiscGolf up right now?
As of our last scheduled check, DiscGolf is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.