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

Spec

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

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

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

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

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

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

curl "https://api.oanor.com/rowing-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rowing-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rowing-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/rowing-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "notes": "Seconds, watts, kcal. watts = 2.80/pace³ (pace = split/500 s/m); split = 500·(2.80/watts)^(1/3); Cal/hr = 4·watts·0.8604 + 300. Concept2 relations. For running pace use a pace API; for cycling a cycling API.",
        "service": "rowing-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/calories": "Calories per hour (and total) from watts via the Concept2 formula.",
            "GET /v1/split-to-watts": "Power from a 500 m split (seconds).",
            "GET /v1/watts-to-split": "500 m split from a power in watts."
        },
        "description": "Indoor-rowing (Concept2 erg) maths: watts from a 500 m split, split from watts, and calories burned."
    },
    "meta": {
        "timestamp": "2026-06-07T08:17:52.857Z",
        "request_id": "19e5d389-7189-408a-a509-52be29b19d61"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}