/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/pressurewasher-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pressurewasher-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pressurewasher-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"notes": "US units (psi, GPM, lb). CU = PSI×GPM; flow ∝ √P; reaction ≈ 0.0526·GPM·√PSI; water = GPM×minutes. Estimates — surface and detergent matter as much as the numbers.",
"service": "pressurewasher-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/nozzle": "Flow at a different pressure (√P) and the nozzle reaction force.",
"GET /v1/water-usage": "Water used over a run, with optional cost.",
"GET /v1/cleaning-units": "Cleaning power (PSI × GPM) with a duty classification."
},
"description": "Pressure-washer maths: cleaning units (power rating), nozzle flow and reaction force at a pressure, and water used over a run."
},
"meta": {
"timestamp": "2026-06-06T23:53:57.132Z",
"request_id": "9b0c2031-8772-4a85-9320-458e1983d8ff"
},
"status": "ok",
"message": "Meta",
"success": true
}