Discussions
Wrong tradeoffer_id from Get Active Trades
When using api get active trades we get item_id in the field with tradeoffer_id. What are the options to get the correct tradeoffer_id?
Posted by Dmytro Dehtiarov 7 months ago
Request to Add assetid, instanceid, and classid to Item for Verification Purposes
Hello,
Posted by null 7 months ago
API call status code "Forbidden" using code as below
string apiKey = "MY_API_KEY";
// Create a RestClient
var client = new RestClient("https://csgoempire.com");
// Create a RestRequest for the endpoint
var request = new RestRequest("/api/v2/user", Method.Get);
// Add the authorization header
request.AddHeader("Authorization", $"Bearer {apiKey}");
// Execute the request
var response = client.Execute(request);
// Check if the request was successful
if (response.IsSuccessful)
{
// Parse the response content
var content = response.Content;
dynamic data = Newtonsoft.Json.JsonConvert.DeserializeObject(content);
Console.WriteLine($"Your account balance is: {data.balance}");
}
else
{
Console.WriteLine($"Failed to retrieve account balance. Status code: {response.StatusCode}");
}
Posted by jari nieminen 7 months ago
Add market_hash_name to api/v2/user/transactions
Hi, this api request dont return in res.data array market_hash_name of items. Can you add this pls?
Posted by null 8 months ago
How can I get the steam_id (partner) from a transaction history record?
My transaction history (csgoempire) is getting very large and sometimes when I'm looking for a specific record I have trouble coming across skins with the same name traded at the same price and also at a time close to each other. In this case it would be very useful to get the steam_id associated with the deposit_id of that transaction, so I could compare it with my Steam trade history. Would that be possible?
Posted by TypeError 9 months ago
Item id
Hi,
Posted by null 9 months ago
Steam asset id not present in the withdrawal object schema
Hi,
Posted by Nick 9 months ago
Is it possible to withdraw crypto via api?
Is it possible to withdraw crypto via api?
Posted by John Matrix 9 months ago
Why is the API not responding properly
It's not loading properly
Posted by Mark Gebauer 9 months ago