Naar de inhoud
GET /v1/helium

Helium lift of a balloon

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/balloon-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Helium lift = inflated volume × (air − helium density) = ~1.046 g per litre. A fully inflated 11\" latex balloon (~11.4 L) lifts about 12 g gross, ~9 g after the balloon's own weight. Net lift floats the string and any attached weight.",
        "inputs": {
            "diameter_in": 11,
            "balloon_weight_g": 2.8
        },
        "net_lift_g": 9.15,
        "gross_lift_g": 11.95,
        "volume_liters": 11.42
    },
    "meta": {
        "timestamp": "2026-06-06T15:30:49.943Z",
        "request_id": "87e3d522-4906-4087-bb41-d58b2e515974"
    },
    "status": "ok",
    "message": "Helium lift",
    "success": true
}