Voxel Worlds API — free mock REST API for testing

An original block-building sandbox inspired by voxel games. Practice world seeds, coordinate resources, inventory conflicts and optimistic concurrency.

The Voxel Worlds API models block worlds with players, inventories and integer coordinates. Coordinates are bounded, so it is a compact place to practise boundary testing — the off-by-one at the edge of a valid range, which is the class of bug that unit tests catch and integration tests usually do not.

Base URL: https://funapi.dev/api/voxel/v1 · 6 endpoints · OpenAPI 3.1 spec and Postman collection available. New here? Read the getting started guide.

Example request and response

GET https://funapi.dev/api/voxel/v1/worlds — List worlds. No token, no signup:

curl -i https://funapi.dev/api/voxel/v1/worlds

answers 200 OK with:

{
  "total": 1,
  "data": [
    {
      "id": 1,
      "name": "Blockshire",
      "seed": 424242,
      "biome": "meadow",
      "difficulty": "normal",
      "_v": 1
    }
  ]
}

Open and run this endpoint

What you can practise here

worlds

procedural block worlds

players

survival stats and inventory

All 39 mock REST APIs

Last updated