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.