https://github.com/andrewda/csgoitemdb
An API to retrieve accurate CS:GO prices for high- and low-tier items
https://github.com/andrewda/csgoitemdb
counter-strike csgo item price steam
Last synced: 8 months ago
JSON representation
An API to retrieve accurate CS:GO prices for high- and low-tier items
- Host: GitHub
- URL: https://github.com/andrewda/csgoitemdb
- Owner: andrewda
- License: gpl-3.0
- Created: 2015-09-09T05:00:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T04:02:54.000Z (almost 6 years ago)
- Last Synced: 2025-04-30T17:02:34.094Z (about 1 year ago)
- Topics: counter-strike, csgo, item, price, steam
- Language: JavaScript
- Homepage:
- Size: 65.4 KB
- Stars: 36
- Watchers: 8
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSGOItemDB
[](https://www.codacy.com/app/dassonville-andrew/CSGOItemDB-com)
CSGOItemDB is a simple API which allows users to get the prices of CS:GO skins.
## Setup
Step 1. Clone the repository to your computer or download the files manually.
```
git clone https://github.com/andrewda/CSGOItemDB
```
Step 2. Edit options.json
```JSON
{
"errors": {
"missing_params": "missing parameter(s)",
"invalid_key": "insufficient privileges (unrecognized key)",
"not_premium": "insufficient privileges (not premium)",
"unknown_item": "unknown item"
},
"backpacktf_key": "BACKPACK.TF API KEY (can be retreived from http://backpack.tf/api)",
"update_time": 7200,
"refresh_interval": 60000,
"delete_old_interval": 90000
}
```
Step 3. Download any missing dependencies
```
npm install
```
Step 4. Run the server
```
node server.js
```
Step 5. Run the updater
```
node updater.js
```