/v1/garland
Garland balloon count
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}