Naar de inhoud
GET /v1/meta

Service description & endpoints

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/vam-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}