Ir al contenido
GET /v1/meta

Service metadata

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/brewanalytics-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/brewanalytics-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/brewanalytics-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/brewanalytics-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": {
        "note": "Look up a formula by name (wget, node, ffmpeg) or a cask by token (google-chrome, visual-studio-code). For /v1/top, type=formula|cask and days=30|90|365. Counts come from Homebrew's opted-in analytics.",
        "source": "formulae.brew.sh public API (live)",
        "service": "brewanalytics-api",
        "endpoints": {
            "GET /v1/top": "Most-installed packages (type=formula|cask, days=30|90|365, limit=25).",
            "GET /v1/cask": "Install counts for a desktop-app cask (name=google-chrome).",
            "GET /v1/meta": "This document.",
            "GET /v1/formula": "Install counts for a command-line formula (name=wget)."
        },
        "description": "Live install analytics for Homebrew, the macOS/Linux package manager, from formulae.brew.sh — the adoption view of the Homebrew ecosystem. formula = a command-line tool's install counts (30, 90 and 365 days, plus install-on-request) with version and description; cask = a desktop app's install counts; top = the most-installed formulae or casks over a window. Live, no key, nothing stored. Distinct from the Homebrew formula-catalog API — this measures how much a package is actually used.",
        "upstream_status": "ok",
        "wget_installs_365d": 384754
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:22.864Z",
        "request_id": "e4a001de-7035-4cbd-9445-1d0b6d3e6069"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}