Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/vinyl-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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