https://github.com/miasmos/d3-leaderboards-api
Parses live Diablo 3 Leaderboards and returns them as json.
https://github.com/miasmos/d3-leaderboards-api
api d3 diablo-3 diablo3 javascript json leaderboard nodejs
Last synced: 3 months ago
JSON representation
Parses live Diablo 3 Leaderboards and returns them as json.
- Host: GitHub
- URL: https://github.com/miasmos/d3-leaderboards-api
- Owner: miasmos
- Created: 2015-03-01T05:26:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-29T01:47:11.000Z (over 9 years ago)
- Last Synced: 2024-04-11T16:20:46.594Z (over 1 year ago)
- Topics: api, d3, diablo-3, diablo3, javascript, json, leaderboard, nodejs
- Language: JavaScript
- Homepage:
- Size: 1.5 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# d3-leaderboards-api
Parses live Diablo 3 Leaderboards and returns them as json.Does not implement caching or throttling. Please do so in your wrapper to limit requests to Blizzard's servers.
Types
==========
Classes: demon-hunter, barbarian, witch-doctor, wizard, monk, crusader
Eras: 1, 2, 3, 4, 5
Teams: 2, 3, 4Endpoints
==========
/season/:era/class/:class => http://us.battle.net/d3/en/rankings/season/:era/rift-:class
Fetches the top 1000 seasonal characters of the specified class./era/:era/class/:class => http://us.battle.net/d3/en/rankings/era/:era/rift-:class
Fetches the top 1000 non-seasonal characters of the specified class./season/:era/team/:team => http://us.battle.net/d3/en/rankings/season/:era/rift-team-:team
Fetches the top 1000 seasonal characters of the specified team size./era/:era/team/:team => http://us.battle.net/d3/en/rankings/era/:era/rift-team-:team
Fetches the top 1000 non-seasonal characters of the specified team size./season/hardcore/:era/class/:class => http://us.battle.net/d3/en/rankings/season/:era/rift-hardcore-:class
Fetches the top 1000 seasonal hardcore characters of the specified class./era/hardcore/:era/class/:class => http://us.battle.net/d3/en/rankings/era/:era/rift-hardcore-:class
Fetches the top 1000 non-seasonal hardcore characters of the specified class./season/hardcore/:era/team/:team => http://us.battle.net/d3/en/rankings/season/:era/rift-hardcore-team-:team
Fetches the top 1000 seasonal hardcore characters of the specified team size./era/hardcore/:era/team/:team => http://us.battle.net/d3/en/rankings/era/:era/rift-hardcore-team-:team
Fetches the top 1000 non-seasonal hardcore characters of the specified team size.
Dependencies
==========
cheerio
request
express