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
0
votes
1 answer

Retrieving item price history from steam

I'm attempting to retrieve a price history from Steam Market items and for what I found this is what I need and what I would use as a base to get a price…
auhmaan
  • 726
  • 1
  • 8
  • 28
0
votes
0 answers

Steam API PHP JSON Timeout?

I got this to work on a smaller Steam group, but I'm trying to run it on a larger steamgroup and it eventually gives me a 504 timeout error. Am I missing something? Or would this be a server fix I would need to do?
Riva
  • 59
  • 1
  • 7
0
votes
1 answer

How do i capture all csgo skins image url's in a row from a-z to a .csv or .sql file?

I was wondernig how i could capture all csgo skins image url's in a row from a-z to a .csv or .sql file. I've been trying to google it and try it myself for 2 days now without any success. When I say all csgo skins i'm talking about the ones on the…
Reynir Freyr
  • 137
  • 3
  • 9
0
votes
3 answers

Convert SteamID64 to SteamID

I'm looking for a way that I can take a SteamID64 (76561198032122624) and convert it to a SteamID (STEAM_0:0:35928448) in PHP. I've searched this quite a bit and I'm unable to find how to do this. I'm almost sure it's possible since sites like…
Cludas18
  • 65
  • 3
  • 12
0
votes
1 answer

Showing data from Steam Dota 2 API JSON using Jquery (ajax)

I'm trying to show data I got from Steam Dota2 Api using jquery ajax. I'm pretty new to jquery and javascript in general, please bear with me. here's my current code :
Raditya D.
  • 3
  • 1
  • 5
0
votes
1 answer

Json to c# Objects in .NET

I've been wanting to make my own dota 2 stats website/app. Basically, I'm using the steam API to gather all the essential data. Most of this data is stored in Json format. I've been trying to deserialise the format so that I can have the data in a…
warboss
  • 1
  • 1
0
votes
1 answer

Unable to decode dota item schema json in php

I recently got the Dota 2 item schema by following this guide: http://roshpit.ghost.io/getting-updated-item-schema-for-dota2-despite-app570econ-api-being-down-for-5-months/ Since the file is really large, every time I attempt to verify it with json…
0
votes
3 answers

Steam Web API problems. Ruby on Rails omniauth-steam

Hello I'm following this tutorial http://grschafer.com/guides/2013/09/07/steam-openid-and-webapi-with-rails/ I set up the login button for steam I can click my account but when I try to go back to my homepage I get hit with this error.…
Cody
  • 1
0
votes
0 answers

CS:GO Trading bot error message: Value cannot be null at System.Linq.Enumerable.ToList[TSource]

I'm working on a steambot for cs:go items. It is a modded version of JesseCar96's steambot for TF2. The Items are stored in a class called schema. Within that there is an item array. Right now I am using this code to get the items in the trade: …
ETurns
  • 73
  • 1
  • 12
0
votes
1 answer

Is it possible to create/join a lobby with 4 people, not on friends list, programmatically? [Steam + CSGO]

I've got this project on my mind, but before I started doing any real work, I went through steam API docs to see if it was possible to create and invite 4 people that are NOT on the friends list, by ID (or something, users would be logged in through…
pedropeixoto
  • 1,633
  • 2
  • 27
  • 52
0
votes
3 answers

Converting to json re-orders objects in python

I'm trying to get a response from http://steamcommunity.com/profiles/76561198081591043/inventory/json/730/2 in python using requests. import requests url = "http://steamcommunity.com/profiles/76561198081591043/inventory/json/730/2" r =…
N Kiolp
  • 11
  • 2
0
votes
1 answer

Invalid argument supplied for foreach() - can't loop through two arrays

My code should convert "defindex" from array_inv into "item_name" from array_schema:
Kartm
  • 39
  • 1
  • 11
0
votes
1 answer

How do I escape these ampersands in PHP?

I'm currently writing something that uses the Steam web API and I'm trying to get the Steam market price via the web API like so: $url =…
Rune
  • 5
  • 1
  • 3
0
votes
1 answer

Get price of item in steam community market with JSON

I tried to find the price of the items in the steam community market through the steam website by selecting View Page Info (Google Chrome) to locate the JSON page but with no luck. NOTE I am trying to understand how to get the URL of the JSON page…
Wraithseeker
  • 1,884
  • 2
  • 19
  • 34
0
votes
1 answer

Getting a value from JSON, Node.js

I am having trouble with getting a value from inside of a JSON file, which has been retrieved from the Steam API (http://steamcommunity.com/dev). The problem occurs when I attempt to print the data, the Node.js file code is below: var data =…
TryAgain
  • 3
  • 2