Share Orders Data Export

This service exports the share_orders table every 2 minutes.

CSV Download: /download/csv
JSON API (All): /json (all orders grouped by type)
JSON API (Clubs): /clubs (club orders only)
JSON API (Players): /players (player orders only)
JSON Download: /download/json (download file)
Status: /status

JSON Format

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], ...]

Example Response (/clubs endpoint):

{
  "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.