Free, read-only access to the DonutSMP economy — the same data that powers the market terminal and the stats pages. JSON over HTTPS, no SDK required.
Base URL
https://api.donutsmp.design/v1Auth header
X-API-Key: <your-key>Rate limit
120 req / min per keyFormat
application/json · UTF-8Get a free API key with /api key create in-game or via the support page. Prices are returned in in-game dollars. See the documentation for guides and examples.
GET
https://api.donutsmp.design/v1/market/itemsReturns every tracked item market with its current price, 24h change, volume and listing count. Sorted by 24h volume by default.
Parameters
sortquery · stringprice · change24h · volume24h · listings (default volume24h)directionquery · stringasc or desc (default desc)limitquery · int1–200 results per page (default 50)cursorquery · stringPagination cursor from the previous responseExample request
curl -H "X-API-Key: <your-key>" \
https://api.donutsmp.design/v1/market/itemsExample response · 200
{
"data": [
{
"symbol": "SPWN",
"name": "Spawner",
"price": 1250000.0,
"change24h": 4.2,
"volume24h": 84213000,
"listings": 312,
"stackSize": 64
}
],
"cursor": "eyJvZmZzZXQiOjUwfQ",
"total": 1120
}