Vai al contenuto
GET /v1/rennet

Rennet dose

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/cheese-api/v1/rennet" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cheese-api/v1/rennet", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cheese-api/v1/rennet");
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/cheese-api/v1/rennet",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Single-strength liquid rennet ≈ 0.2 ml per litre of milk; dilute ~20× in cool, non-chlorinated water before stirring in. Tablets ≈ 1 per 18 L. Always follow your rennet's label IMCU strength.",
        "inputs": {
            "form": "liquid-single",
            "milk_volume": 10
        },
        "rennet_ml": 2,
        "ml_per_liter": 0.2,
        "dilution_water_ml": 40
    },
    "meta": {
        "timestamp": "2026-06-06T07:14:11.351Z",
        "request_id": "38cbf351-b26a-4d39-9e56-cb45e5cafa12"
    },
    "status": "ok",
    "message": "Rennet dose",
    "success": true
}