Package Exports
- resteemo
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (resteemo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-resteemo
RESTeemo API wrapper for Node. Powered by Quickfind.
Installation
$ npm install resteemoAPI
As per RESTeemo's Terms and Conditions, you must provide contact details in the user agent of requests. node-resteemo will not fill in these details for you.
var teemo = require('resteemo')('string with contact info');All functions are asynchronous. The callback is always executed as
callback(error, response), where response is an Object unless there was an
error. Refer to RESTeemo's API docs for what each response looks like.
Player requests
Looks up information for String summoner on String platform.
teemo.player(platform, summoner, callback)teemo.player.ingame(platform, summoner, callback)teemo.player.recentGames(platform, summoner, callback)teemo.player.influencePoints(platform, summoner, callback)teemo.player.runes(platform, summoner, callback)teemo.player.mastery(platform, summoner, callback)teemo.player.leagues(platform, summoner, callback)teemo.player.honor(platform, summoner, callback)teemo.player.teams(platform, summoner, callback)
Here, season is a Number.
teemo.player.rankedStats(platform, summoner, season, callback)
Team requests
Looks up information for a team using String tag or String guid on String
platform.
teemo.team(platform, tag, callback)teemo.team.leagues(platform, guid, callback)
Platform requests
teemo.freeWeek(platform, callback)
Supported platforms
Below is a table of the platforms that RESTeemo supports. When polling the API, the shorthand version of a platform is necessary, but you can pass the full version to node-resteemo if you'd like and it will internally use the shorthand version.
| Short | Full |
|---|---|
| na | North_America |
| br | Brasil |
| ru | Russia |
| euw | Europe_West |
| eun | Europe_East |
| tr | Turkey |
| las | Latin_America_South |
| lan | Latin_America_North |
Release notes
2.4.1
- Updated lodash.isundefined to 2.2.x
- Updated lodash.isstring to 2.2.x
- Updated lodash.isnull to 2.2.x
- Updated lodash.isfunction to 2.2.x
View previous releases here.

