/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}