All endpoints in this section require Connected + API (JWT fromDocumentation Index
Fetch the complete documentation index at: https://docs.mannco.store/llms.txt
Use this file to discover all available pages before exploring further.
POST /user/login, header Authorization: Bearer).
Base URL prefix for examples: https://api.mannco.store.
Get active trades
trades array); typical fields include id, status, items_received, items_send, user, bot, offerid, timestamp (ms), code, lasterror.
Response
Trade fields (common)
| Field | Type | Description |
|---|---|---|
id | integer | Internal trade id |
user | string | User Steam ID |
items_received | string | Comma-separated asset IDs received |
items_send | string | Comma-separated asset IDs sent |
status | integer | See Introduction trade status table |
bot | string | Bot Steam ID |
offerid | string | Steam trade offer id |
timestamp | string | Unix time in milliseconds |
code | string | Verification / state code |
lasterror | string | Last error if any |
Get all trades
Response
Same wrapper as active trades:content.trades is an array of trade objects (may include game and other columns from the trades table).
Resend trade
items_send, statuses such as failed/pending families as implemented). Query parameter name is id, not resend.
Internal trade id from GET /trades/active or GET /trades/all
Response
Error responses
| Type | content |
|---|---|
error | Missing id parameter |
error | Object with message: Failed to resend trade. Trade not found or conditions not met. |
Example:
GET https://api.mannco.store/trade/resend?id=123456 with Authorization: Bearer <jwt>.