/v1/garland
Garland balloon count
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}