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/dogage-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/dogage-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogage-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogage-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/dogage-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": {
        "notes": "Ages in years (decimals allowed). The epigenetic dog formula is defined for ages ≥ 1; the AKC size table interpolates between yearly anchors. Estimates for fun and general guidance, not veterinary advice.",
        "sizes": [
            "small",
            "medium",
            "large",
            "giant"
        ],
        "service": "dogage-api",
        "endpoints": {
            "GET /v1/cat": "Cat age → human years.",
            "GET /v1/dog": "Dog age → human years (epigenetic model, AKC size table, and ×7 rule).",
            "GET /v1/meta": "This document."
        },
        "description": "Pet age conversion: dog and cat years to human-equivalent years."
    },
    "meta": {
        "timestamp": "2026-06-05T19:50:20.775Z",
        "request_id": "317bf48e-b4ba-402b-838c-8a32c9a270ae"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}