/v1/garland
Garland balloon count
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/balloon-api/v1/garland" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/balloon-api/v1/garland", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/balloon-api/v1/garland");
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/garland",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "An organic balloon garland uses roughly 12 balloons per foot in a mix of sizes — about 40 % 5\", 45 % 11\" and 15 % 16\" for depth and texture. Denser (16/ft) looks lush; sparser (8/ft) is lighter. Buy ~10 % extra for pops.",
"inputs": {
"length_ft": 10,
"balloons_per_foot": 12
},
"size_mix": {
"5in": 48,
"11in": 54,
"16in": 18
},
"total_balloons": 120
},
"meta": {
"timestamp": "2026-06-06T15:30:49.845Z",
"request_id": "cbdad343-c305-4adf-abc0-9dd0e25152db"
},
"status": "ok",
"message": "Garland count",
"success": true
}