/v1/cleaning-units
Cleaning power (PSI × GPM)
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/pressurewasher-api/v1/cleaning-units" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pressurewasher-api/v1/cleaning-units", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pressurewasher-api/v1/cleaning-units");
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/pressurewasher-api/v1/cleaning-units",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Cleaning power = pressure × flow (cleaning units). Both matter — PSI breaks the grip of dirt, GPM flushes it away — so a 3,000 PSI / 2.5 GPM machine (7,500 CU) cleans far faster than 3,000 PSI / 1.5 GPM despite the same pressure. Match the CU to the job; more is not always better on soft surfaces.",
"inputs": {
"gpm": 2.5,
"psi": 3000
},
"duty_class": "medium duty (driveways, fences, siding)",
"cleaning_units": 7500
},
"meta": {
"timestamp": "2026-06-06T23:53:56.914Z",
"request_id": "4148a138-899c-4ee5-b7a7-e2cfe8fdeb9d"
},
"status": "ok",
"message": "Cleaning units",
"success": true
}