Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ajhsu/steam-profile-api

Fetch user profiles directly from steamcommunity.com
https://github.com/ajhsu/steam-profile-api

nodejs steam steam-api

Last synced: about 6 hours ago
JSON representation

Fetch user profiles directly from steamcommunity.com

Awesome Lists containing this project

README

        

# Steam Profile API
Fetch user profiles directly from steamcommunity.com

## Install and Run

Install
```bash
$ npm install
```

And start
```bash
$ npm start
```

After bootstraped, you'll get the following JSON response by accessing `http://localhost:8090/user/ajhsu`,
```
{
"privacy":"",
"currentStatus":"Currently Offline",
"lastStatus":"Last Online 6 hrs, 21 mins ago",
"realName":"AJ Hsu",
"country":"Taiwan",
"recentPlayTime":"55.8 hours past 2 weeks",
"recentGames":[
{
"name":"Don't Starve Together",
"details":"7.7 hrs on record\nlast played on 4 Jul"
},
{
"name":"Street Fighter V",
"details":"3.3 hrs on record\nlast played on 3 Jul"
},
{
"name":"Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad",
"details":"0.0 hrs on record\nlast played on 2 Jul"
}
],
"badgeCount":"2",
"gameCount":"23",
"friendCount":"12"
}
```