Zum Inhalt

Markt

Markt-Endpunkte liefern Auktionen, die für die Firmentypen des Charakters freigegeben sind.

Eigene Auktionen

Eigene Importauktionen

GET /market/my/auctions/import

Scopes: factory, market

Premium-Zusatzinhalt

Das Feld icon enthält nur mit Premium-Zugriff eine URL. Andernfalls ist der Wert null.

[
  {
    "id": "65f...",
    "item": "Rohstoff",
    "bidAmount": 750,
    "isLastBidderMe": true,
    "auctionEnd": "2026-06-05T18:00:00.000Z",
    "icon": null
  }
]

Eigene Exportauktionen

GET /market/my/auctions/export

Scopes: factory, market

Premium-Zusatzinhalt

Das Feld icon enthält nur mit Premium-Zugriff eine URL. Andernfalls ist der Wert null.

[
  {
    "id": "65f...",
    "item": "Produkt",
    "bidAmount": 2500,
    "amount": 20,
    "isLastBidderMe": false,
    "auctionEnd": "2026-06-05T18:00:00.000Z",
    "singleWeight": 1.5,
    "totalWeight": 30,
    "icon": null,
    "duration": 60
  }
]

Verfügbare Auktionen

Importauktionen

Premium-Endpunkt

Dieser Endpunkt ist nur mit Premium-Zugriff verfügbar.

GET /market/import

Scopes: market

[
  {
    "id": "65f...",
    "item": "Rohstoff",
    "bidAmount": 1000,
    "auctionEnd": "2026-06-05T18:00:00.000Z",
    "icon": "https://static.statev.de/items/item_hash.webp"
  }
]

Exportauktionen

Premium-Endpunkt

Dieser Endpunkt ist nur mit Premium-Zugriff verfügbar.

GET /market/export

Scopes: market

[
  {
    "id": "65f...",
    "item": "Produkt",
    "bidAmount": 2500,
    "auctionEnd": "2026-06-05T18:00:00.000Z",
    "amount": 20,
    "weight": 30,
    "icon": "https://static.statev.de/items/item_hash.webp",
    "duration": 60
  }
]