Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/vinyl-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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