/v1/object
A single object by system number
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/vam-api/v1/object" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vam-api/v1/object", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vam-api/v1/object");
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/object",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"object": {
"date": "1978",
"title": "Tiger Toys Bricks",
"images": [
"https://framemark.vam.ac.uk/collections/2025PH2269/full/!600,600/0/default.jpg"
],
"makers": [],
"places": [
"Thetford"
],
"styles": [],
"gallery": "006",
"summary": null,
"materials": [
"Card",
"Wood"
],
"categories": [
"Toys and games",
"Education and learning",
"Children and childhood"
],
"on_display": true,
"techniques": [
"Printing"
],
"object_type": "Alphabet block",
"system_number": "O35612",
"collection_url": "https://collections.vam.ac.uk/item/O35612",
"accession_number": "B.276-1993",
"materials_techniques": "Printed card, wood",
"physical_description": "Card tray printed in colours to show the title and illustrations of tigers playing with bricks. On the bottom are two grids; one the plan for set T524 and the other the composition of the bricks. The tray holds 12 wooden cubes; stained red, blue, green or yellow and marked with letters of the alphabet, numbers and symbols on each face side; these are in different colours. The whole is sealed with clear plastic."
}
},
"meta": {
"timestamp": "2026-06-08T01:18:41.981Z",
"request_id": "a95e4805-a9ad-45d4-bfca-34129a0cecad"
},
"status": "ok",
"message": "Object retrieved successfully",
"success": true
}