Zum Inhalt springen
GET /v1/playing-time

Playing time of a side

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/vinyl-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}