/v1/meta
Service description & endpoints
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}