Live demo · hosted on VoxelBox

relay — Demo REST API

A live, read-only API served from VoxelBox's own hardware. Real endpoints, real JSON, no signup — curl it right now or try it below.

Base URL https://relay.voxelbox.org

Endpoints

Use it in your code

JavaScript (fetch)

// list every product in the catalog
const res  = await fetch("https://relay.voxelbox.org/v1/products");
const body = await res.json();

console.log(body.count, "products");
console.log(body.data[0].name); // "Copper Pipe Fitting 15mm (10-pack)"

curl

# grab one product, pretty-printed with jq
curl -s https://relay.voxelbox.org/v1/products/3 | jq .name

The API is read-only and unauthenticated — every endpoint answers plain GET requests with JSON. Data belongs to the fictional Copperline Supply Co. store and resets never, because it never changes.

Want an app like this? VoxelBox →