Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/easing-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "name": "Easing API",
        "notes": "Progress t and CSS-bezier x are clamped to 0..1; eased values may overshoot below 0 or above 1 for back/elastic/bounce. cubic-bezier x1,x2 must be within 0..1 (CSS rule). Nothing is stored.",
        "version": "v1",
        "endpoints": [
            {
                "path": "/v1/sample",
                "params": {
                    "t": "single progress 0..1",
                    "steps": "sample over N steps instead of a single t (returns N+1 points)",
                    "bezier": "custom cubic-bezier as x1,y1,x2,y2 (overrides easing)",
                    "easing": "named easing (default linear) — see /v1/list"
                },
                "returns": "the eased value, or a table of {t,value} samples"
            },
            {
                "path": "/v1/list",
                "params": [],
                "returns": "all supported named easings (CSS keywords + Penner)"
            },
            {
                "path": "/v1/meta",
                "params": [],
                "returns": "this document"
            }
        ],
        "description": "Evaluate animation easing and timing functions. Sample any of the 31 standard Penner easings (easeInOutCubic, easeOutBounce, easeInOutElastic, easeInBack…), the four CSS keywords (ease, ease-in, ease-out, ease-in-out), or your own CSS cubic-bezier(x1,y1,x2,y2) — at a single progress t, or as a ready-made table over N steps for building keyframes and lookup tables. Pure local maths, no key."
    },
    "meta": {
        "timestamp": "2026-06-03T09:25:06.104Z",
        "request_id": "15161590-908a-4e10-911c-ac826db0e7aa"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}