Zum Inhalt springen
GET /v1/object

A single object by system number

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/vam-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}