/v1/cleaning-units
Cleaning power (PSI × GPM)
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}