Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/timelapse-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "notes": "Seconds, frames, MB. frames = shoot/interval; clip = frames/fps; interval = shoot/(clip·fps); storage = frames·size. For video bitrate/file size use a bitrate API.",
        "service": "timelapse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/storage": "Total storage from frame count and per-frame size.",
            "GET /v1/interval": "Shooting interval needed for a target clip length.",
            "GET /v1/clip-length": "Frame count and clip length from shoot duration, interval and fps."
        },
        "description": "Time-lapse maths: clip length from shoot duration/interval/fps, the interval for a target clip, and storage needed."
    },
    "meta": {
        "timestamp": "2026-06-07T08:17:51.714Z",
        "request_id": "9bd46b90-496d-4db6-ae49-f87d775ce5f7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}