Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/pace-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "name": "Running Pace API",
        "notes": "Race prediction uses Peter Riegel's T2 = T1 × (D2/D1)^1.06; treat it as an estimate. Nothing is stored.",
        "version": "v1",
        "endpoints": [
            {
                "path": "/v1/pace",
                "params": {
                    "time": "seconds, M:SS or H:MM:SS (required)",
                    "distance": "required",
                    "distance_unit": "m|km|mi (default km)"
                },
                "returns": "pace per km/mile and speed in km/h, mph, m/s"
            },
            {
                "path": "/v1/time",
                "params": {
                    "pace": "e.g. 5:00 (required)",
                    "distance": "required",
                    "pace_unit": "per_km|per_mile",
                    "distance_unit": "default km"
                },
                "returns": "the finish time"
            },
            {
                "path": "/v1/predict",
                "params": {
                    "time1": "required",
                    "distance1": "required",
                    "distance2": "required",
                    "distance_unit": "default km"
                },
                "returns": "predicted time at distance2 (Riegel)"
            },
            {
                "path": "/v1/splits",
                "params": {
                    "time": "required",
                    "split": "km|mi",
                    "distance": "required",
                    "distance_unit": "default km"
                },
                "returns": "cumulative split times"
            },
            {
                "path": "/v1/meta",
                "params": [],
                "returns": "this document"
            }
        ],
        "description": "A running-pace toolkit: compute pace and speed from a distance and time, the finish time from a distance and pace, predict a race time at another distance (Riegel formula), and build a split-time table. Pure local, no key."
    },
    "meta": {
        "timestamp": "2026-06-03T01:09:44.893Z",
        "request_id": "051db23d-985e-40a7-9a5f-0ad6d0fc87b6"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}