Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ajhsu/steam-profile-api
- Owner: ajhsu
- License: mit
- Created: 2017-07-05T03:55:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-13T14:43:46.000Z (over 6 years ago)
- Last Synced: 2024-11-07T09:28:46.008Z (about 2 months ago)
- Topics: nodejs, steam, steam-api
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```