/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/balloon-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/balloon-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/balloon-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"notes": "Diameters in inches, lift in grams. Net helium lift ≈ 1.046 g/L (air 1.225 − helium 0.1786); subtract the latex weight. Garland ≈ 12 balloons/ft. Party planning — helium and temperature vary. For physics buoyancy use a buoyancy API.",
"service": "balloon-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/float": "Balloons needed to float a payload weight.",
"GET /v1/helium": "Helium lift (gross & net) of a balloon from its inflated diameter.",
"GET /v1/garland": "Balloon count and size mix for an organic garland of a given length."
},
"description": "Party-balloon maths: helium lift by size, balloons to float a payload, and the balloon count for an arch/garland."
},
"meta": {
"timestamp": "2026-06-06T15:30:50.035Z",
"request_id": "9d95bb03-eeda-40a9-8745-922b671e1d06"
},
"status": "ok",
"message": "Meta",
"success": true
}