Questions tagged [steam-web-api]

The Steam Web API is a set of data services for obtaining information related to Valve Software's Steam platform.

The Steam Web API is a set of data services for obtaining information related to Valve Software's Steam platform.
Queryable information includes player, game item, news and other related content.

To use most of the Web-APIs, you will need an API key, provided by Valve.

531 questions
7
votes
4 answers

Steam authentication with Angular

I'm trying to do authentication with Steam from the home page in Angular but whenever I click on button (which has (click) event pointing at login() function in AppComponent), instead of being redirected to Steam page, current page is refreshed and…
Nikola Stojaković
  • 2,257
  • 4
  • 27
  • 49
7
votes
1 answer

Steam API get historical player count of specific game

I am using steam api with python in order to get the number of players playing a game such as Dota 2. import requests import numpy as np import pandas as pd def main(): header = {"Client-ID": "F07D7ED5C43A695B3EBB01C28B6A18E5"} appId =…
codastic
  • 333
  • 3
  • 7
7
votes
2 answers

Retrieve a list of installed games from the Steam API

I'm working on a Steam Roulette program, and I'm trying to create filters. One of the filters I'd like to implement is (if the user data was loaded with SteamWorks), is to return a list of games (preferably in App ID form) that he/she has installed…
Timothy
  • 364
  • 1
  • 12
  • 24
7
votes
3 answers

Steam market currency and XML format

Im trying to get an item page on market in certain currency, tried to add Accept-Language: ru-RU\r\n and Accept-Language: ru-RU, ru\r\n and Accept-Language: ru, ru-RU;q=0.8\r\n to header but steam ignores it and always gives a page with mixed…
user3392623
  • 73
  • 1
  • 1
  • 5
7
votes
2 answers

Laravel 4, Composer and hybridauth - How to load additional providers

I'm using Laravel 4 and have loaded hybridauth via composer and got it working just fine with Facebook and Twitter. Now i'm trying to get it working with Steam, which is listed as an additional provider, however I keep getting the following…
John Mellor
  • 2,351
  • 8
  • 45
  • 79
6
votes
3 answers

How can I send trade offer

Actually I am working on Steam trade offer functionality, in which I am getting a problem. I have downloaded the Steam class library and implement it in Codeigniter. I am following the setup guide from…
Indresh Tayal
  • 276
  • 1
  • 11
6
votes
1 answer

How can I get the Steam ID of a game from its name using the Steam API?

I've been looking through the Steam API documentation, and there are a number of services that provide information on a game in the Steam web store, however they all seem to require the Steam ID of the game as a parameter. This can be done with user…
Aquova
  • 147
  • 3
  • 8
6
votes
2 answers

Retrieve SteamID from Steam API by passing Steam Username

I am wondering is there a way that if a user enters their 'Steam Username' that you can then find their 'SteamID'. I have been looking all through the 'Steam API' and have found no information about this. My idea was for a user to enter their 'Steam…
user3091919
  • 215
  • 4
  • 14
6
votes
4 answers

How to get "last played on" for Steam game using Steam API

I'm developing an App that uses public Steam API for collect some information. Currently I retrieve the achievements by calling GetPlayerAchievements (v0001) and total hours played calling GetOwnedGames (v0001). This works fine. But now I need to…
user3122306
  • 245
  • 2
  • 4
  • 15
6
votes
1 answer

How can I get a list of all CSGO items including skin name, quality and rarity?

I'm not looking for details of a specific player inventory, but a list of all items for CSGO. What I want is details of the weapons in particular, but including skin name information and rarity. To make it easier to explain this site has the…
iguanaman
  • 930
  • 3
  • 13
  • 25
6
votes
3 answers

Connection Error: A connection attempt failed because the connected party did not properly respond after a period of time

I'm developing some software in python that utilizes Steam APIs. I'm using Flask to run and test the python code. Everything was going swell, but now I'm getting this error (I haven't changed any code): ('Connection aborted.', error(10060, 'A…
Vishwa Iyer
  • 841
  • 5
  • 14
  • 33
6
votes
1 answer

Get steam item prices

I was wondering if there is any efficient way to get the prices of an item on steam. I found : http://steamcommunity.com/market/priceoverview/?country=DE¤cy=3&appid=730&market_hash_name=P90%20%7C%20Asiimov%20%28Factory%20New%29 You get…
Bart
  • 259
  • 2
  • 4
  • 17
5
votes
0 answers

Steam API - Get contents of CSGO Storage Units

I am attempting to get the contents of a Steams users inventory, specifically CSGO items. The API request I send is: https://steamcommunity.com/profiles/{STEAM_USER_ID}/inventory/json/730/2 It retrieves the the contents of a steam user's inventory,…
5
votes
0 answers

AWS Cognito signup using Steam social login

Steam social signin with AWS Cognito I'm creating a cognito user pool which has user phone number as unique key. I want to integrate Steam social signin to record a user's steam ID. Problem is that AWS Cognito supports OpenID connect while Steam…
5
votes
1 answer

Getting steam game version number, to check if update is available

I'm trying to create an NPM module to get steam game versions from the appID. Currently, I can get the game info with https://store.steampowered.com/api/appdetails?appids=730 (730 is CSGO appID) How do I get the current game version? This is so I…
1
2
3
35 36