/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/vinyl-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vinyl-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vinyl-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/vinyl-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": "mm, µm, rpm. turns = (outer−inner)/2 ÷ pitch; time = turns/rpm; length = turns × π × mean diameter; speed = 2π·rpm/60·r. For musical note/tempo maths use a music API.",
"service": "vinyl-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/groove-speed": "Linear groove speed under the stylus at a radius.",
"GET /v1/playing-time": "Playing time and turns from the recorded band, pitch and rpm.",
"GET /v1/groove-length": "Total spiral groove length from the band and pitch."
},
"description": "Vinyl-record geometry: maximum playing time, total groove length, and linear groove speed at a radius."
},
"meta": {
"timestamp": "2026-06-07T08:17:49.645Z",
"request_id": "021d9f25-3fbf-4d42-9303-50688ce25b17"
},
"status": "ok",
"message": "Meta",
"success": true
}