/v1/rennet
Rennet dose
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}