Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/vinyl-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}