WakaTime
Public coding stats and the languages WakaTime tracks.
WakaTime powers automated time-tracking for programmers. A handful of endpoints are public and keyless, including the global leaderboard and this catalog of every programming language it recognizes, with colors and file extensions. Personal dashboards and detailed stats require an API key or OAuth.
GET https://wakatime.com/api/v1/program_languages?page=1
{
"data": [
{
"id": "3180b7d4-3064-46f8-9eba-92ea218b5c58",
"name": "1C Enterprise",
"color": "#814CCC",
"extensions": [
".bsl",
".os"
]
}
],
"total": 866
}curl "https://wakatime.com/api/v1/program_languages?page=1"const res = await fetch("https://wakatime.com/api/v1/program_languages?page=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://wakatime.com/api/v1/program_languages?page=1")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/program_languages?page=1PROBEDPublic coding stats and the languages WakaTime tracks.
/program_languages?limit=5Program Languages — documented GET route.
/program_languagesProgram Languages — documented GET route.
/api/v1/editorsEditors — documented GET route.
/api/v1/leadersLeaders — documented GET route.
/api/v1/metaMeta — 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.
WakaTime: common questions
Is WakaTime free to use?
Yes — WakaTime is a free developer tools API. Free tier: Free public endpoints; personal data needs API key/OAuth. Whether the free tier allows commercial use is unclear — check the provider docs.
Does WakaTime need an API key?
No — WakaTime needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call WakaTime from the browser?
Not directly — WakaTime doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is WakaTime up right now?
As of our last scheduled check, WakaTime is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.