/v1/playing-time
Playing time of a side
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/vinyl-api/v1/playing-time" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vinyl-api/v1/playing-time", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vinyl-api/v1/playing-time");
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/vinyl-api/v1/playing-time",
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": "A record's playing time = the number of groove turns ÷ the turntable speed. The turns = the recorded band's radial width ÷ the groove pitch (the spacing between adjacent grooves), so a 12-inch LP with ~85 mm of band at a 100 µm pitch holds about 850 turns, and at 33⅓ rpm that is roughly 25 minutes a side. A tighter pitch fits more time but cuts the groove amplitude — and so the loudness and bass — which is the classic time-versus-level trade a cutting engineer makes.",
"inputs": {
"rpm": 33.333,
"groove_pitch_um": 100,
"inner_diameter_mm": 120,
"outer_diameter_mm": 290
},
"revolutions": 850,
"playing_time_min": 25.5,
"playing_time_formatted": "25:30"
},
"meta": {
"timestamp": "2026-06-07T08:17:49.554Z",
"request_id": "a8571154-0550-4e70-a61a-86cc0615bcc8"
},
"status": "ok",
"message": "Playing time",
"success": true
}