Ir al contenido
GET /v1/meta

Service description & endpoints

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/vam-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vam-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vam-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/vam-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": {
        "service": "vam-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/maker": "Objects by a maker (name=, e.g. William Morris).",
            "GET /v1/object": "A single object by system number (id=, e.g. O35612).",
            "GET /v1/random": "A random object (with image).",
            "GET /v1/search": "Search/filter objects (q=, maker=, place=, material=, images=1, page=, limit=)."
        },
        "description": "The Victoria and Albert Museum (V&A) collection: search and filter over 1.2 million objects by keyword, maker, place or material (optionally only those with an image), fetch a single object with its full record and IIIF imagery, browse a maker's works and pull a random object. Real museum data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:42.686Z",
        "request_id": "2a9cbf60-ba7b-4a05-bea7-949f4b7526ad"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}