API documentation
Amounts are integers in kopecks or cents.
curl, JavaScript and Python examples
curl https://steamitems.pro/v1/games -H 'Authorization: Bearer YOUR_API_KEY'
const response = await fetch('/v1/games', {
headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
console.log(await response.json());
import requests
response = requests.get('https://steamitems.pro/v1/games',
headers={'Authorization': 'Bearer YOUR_API_KEY'})
print(response.json())Loading documentation…