/v1/speed
Chain linear speed
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/chaindrive-api/v1/speed" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chaindrive-api/v1/speed", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chaindrive-api/v1/speed");
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/chaindrive-api/v1/speed",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Chain speed = pitch × teeth × rpm ÷ 12 (the sprocket's pitch circumference per turn). Standard roller chain is happy up to a few thousand ft/min; beyond that you need better lubrication and finer pitch to control wear and noise. Faster chain at the same power means lower tension and a longer life.",
"inputs": {
"rpm": 100,
"teeth": 17,
"pitch_in": 0.5
},
"chain_speed_ft_s": 1.18,
"chain_speed_ft_min": 70.8
},
"meta": {
"timestamp": "2026-06-06T23:53:58.513Z",
"request_id": "07bef5ec-893b-45f7-b205-3869ec9a64e1"
},
"status": "ok",
"message": "Chain speed",
"success": true
}