Check your API key
Authorization
apiKey API key generated from your account settings on the website. Send as Authorization: Bearer csd_....
In: header
Response Body
curl -X GET "https://example.com/auth/api-key"Migrating from the v1 API
Endpoint-by-endpoint mapping from the legacy /IService/Method/v1 API.
Export your order history GET
Your whole order history in one download, no pagination: every item you bought and sold, oldest first. `format=csv` (the default) returns a spreadsheet with a header row; `format=json` returns `{ "orders": [...] }` with the same columns. Narrow it with `side` (`bought` or `sold`), `app_id`, and `from`/`to` as ISO dates. Money is in integer cents: `unit_price` is the price of one copy, `total_value` the whole row, `fee` the selling commission (only ever set on your `sold` rows) and `net` what the row was worth to you. `settled_at` is when a sale settled and is empty until it does. The response is streamed, so a long history starts arriving immediately.