Discussions
getting "Recommended price" of items
hello i am trying to fix pricing and was interested is it possible to get Recommended price of items . basically data that shows Recommended pricing on Csgoempire
new_item socket event
I watched socket events like 10m and got no one new_item
event type in socket
Diffrent responses from same transactions request
Using this request https://csgoempire.com/api/v2/user/transactions i do have market_name fields in response, but when i'm adding query params to the url like https://csgoempire.com/api/v2/user/transactions?page=1&per_page=100&type=withdrawals there's no market_name filelds in response.
Also, using page param in url different from 1 i don't get market_name in transaction fileds in response
Rate Limit
Hey!
I try access /api/v2/trading/item/{listing_id}/sales
and don't get expected rate limit that written in docs.
id mappings
from where can I get the information of the id -> skin hashname mappings
I cannot start websocket when open app dns 1.1.1.1
When i open app dns 1.1.1.1 on window, i cant connect websocket of empire. I try on another computer my code work normally.
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?
Request to Add assetid, instanceid, and classid to Item for Verification Purposes
Hello,
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}");
}
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?