/v1/mould
Mould → oil weight
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/soap-api/v1/mould" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soap-api/v1/mould", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soap-api/v1/mould");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/soap-api/v1/mould",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Oils to fill a mould ≈ volume(cm³) × 0.40. Feed this oil weight into /v1/lye (split across your oils by percentage) to size the lye and water.",
"inputs": {
"volume": 1000,
"oil_density": 0.4
},
"total_oil_grams": 400,
"mould_volume_cm3": 1000
},
"meta": {
"timestamp": "2026-06-06T07:14:12.700Z",
"request_id": "6abdf54f-d73a-434e-8dd8-195217fd1a90"
},
"status": "ok",
"message": "Mould sizing",
"success": true
}