Vai al contenuto
GET /v1/mould

Mould → oil weight

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/soap-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}