Zum Inhalt springen
GET /v1/helium

Helium lift of a balloon

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/balloon-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}