/v1/speed
Chain linear speed
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}