You need to sign in to do that
Don't have an account?

API Access to Trailhead Data
I wanted to figure out if there is or if there is any plan to open challenges data via an api so that we can reward employees for completing trialhead data.
You need to sign in to do that
Don't have an account?
https://trailhead-leaderboard-developer-edition.na35.force.com/
It would be nice to have a sort of either Official Leaderboard or a simple "Ranking" API webservice to query and filter on the badge acquisitions to build our own :). .
That is exactly how mine works. I parse the html returned for all the values on the list. It's a little tedious, but it is now fully automated and i now have 90% code coverage!
Some of the returned HTML is a little weird. I've seen hidden sections that still show in Progress for superbadges when the person in fact has the superbadge. That one thru me off.
As I've mentioned in other posts, I did this mainly for my own edification to understand more about Apex, Visualforce and test units. I suspect an "Official" Leaderboard tool may come out in time.
MCR
We have develop this project into salesforce org. and its working fine.
and working on that .... #VirtuoWhiz
https://api.trailhead.salesforce.com
Came here with the same question but didn't see any link, so just updating.
Introducing Trailhead Force Leader Board API
https://0to1code.wordpress.com/2018/02/27/introducing-trailhead-force-leader-board-api/
https://forceleaderboard-developer-edition.na50.force.com/apex/apiexplorer
You will have a response like this:
{
"Twitter": null,
"Trailhead_URL": null,
"TrailblazerID": null,
"Title": null,
"Rank": null,
"Profile_Image": null,
"Points": null,
"Name": null,
"Linkedin": null,
"Facebook": null,
"Certifications": 0,
"Certification_URL": null,
"Badges": null
}
I hope it can help a little.