Get User Information
GET /user/infos
Retrieves comprehensive user profile information. Admin users can query other users by providing a user ID.
connected (admin for other users)
Response
User Object
| Field | Type | Description |
|---|---|---|
steamId | string | User’s Steam 64-bit ID |
balance | integer | Account balance in cents |
skrill | string | Skrill email (if configured) |
tradeurl | string | Steam trade URL |
since | integer | Account creation timestamp |
image | string | Steam avatar URL |
2fa | string | "true" if 2FA is enabled, "false" otherwise |
name | string | Display name |
lastactivity | integer | Last activity timestamp |
discordtag | string | Discord tag |
discord | string | Discord user ID |
shorturl | string | Custom profile short URL |
message | integer | Unread message count |
notification | integer | Email notification preference (1 = enabled) |
Get Balance
GET /user/balance
Retrieves only the user’s current balance. Admin users can query other users.
connected (admin for other users)
Response
The user’s balance in cents. Divide by 100 to get the dollar amount.
Get Sales Info
GET /user/getSalesInfos
Retrieves summary information about the user’s items currently on sale.
connected (admin for other users)
Response
| Field | Type | Description |
|---|---|---|
nb | integer | Number of items currently on sale |
price | integer | Total value of items on sale (in cents) |
user | string | Steam ID of the user |
Get Sales Chart Info
GET /user/getSalesChartInfos
Retrieves sales statistics and graph data for a specified period.
connected (admin for other users)
Query Parameters
Time period for the chart. Values:
1W (week), 1M (month), 1Y (year), All.If present, returns only graph data without summary statistics.
Get Notifications
GET /user/notifications
Retrieves the count of unread notifications and payment reviews.
connected
Response
| Field | Type | Description |
|---|---|---|
count | integer | Number of unread payment alerts |
paymentReviews | integer | Number of unread payment reviews |
Close Payment Alert
POST /user/closePaymentAlert
Marks a specific payment alert as read/closed.
connected
Body Parameters
The ID of the payment alert to close.
Close Payment Reviews
POST /user/closePaymentReviews
Marks all payment reviews as read for the current user.
connected
Response
Get Contact Email
GET /user/getContactMail
Retrieves the user’s contact email address.
connected (admin for other users)
Response
Generate CSV Token
GET /user/generateCSVToken
Generates a SHA-512 token for CSV export authentication.
connected (admin for other users)
Response
Set Affiliates
POST /user/setAffiliates
Registers an affiliate click via Tapfiliate. Works for both connected and anonymous users.
The referral code from the affiliate link.
Get User Buy Order for Item
GET /user/buyorder/:item
Retrieves the current user’s buy order for a specific item.
connected
Path Parameters
The item ID to check buy order for.