This service exports the share_orders table every 2 minutes.
All JSON endpoints use a compact array format to minimize file size. The share_id (club_id or player_id) is the object key, and each order is represented as an array:
"share_id": [[order_id, name, is_ask, price, num], ...]
{ "meta": { "fields": ["order_id", "name", "is_ask", "price", "num"], "updated": "2024-08-05T15:30:00" }, "data": { "329": [ [140193, "darkclaw2", 1, 10000000, 100], [140195, "user123", 0, 9500000, 50] ], "789": [ [140165, "Mikelo", 1, 1000000, 1] ] } }
In this example, club ID 329 has two orders: a sell order from darkclaw2 and a buy order from user123.
Note: When the name field is null
, it indicates a system-generated order or an order from a deleted account.