ReferenceTrading
Withdraw to Steam
Sends backpack items to your Steam account as trade offers. Items held by different bots become separate offers; the response's withdraw_ids has one id per offer, matching the withdraw_id on /trades rows. Requires a Steam trade URL on the account. At most 50 items per request.
Authorization
apiKey AuthorizationBearer <token>
API key generated from your account settings on the website. Send as Authorization: Bearer csd_....
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/public/v1/withdraw" \ -H "Content-Type: application/json" \ -d '{ "items": [ { "id": 1, "amount": 1 } ] }'{ "withdraw_ids": [ 1 ]}