Zum Inhalt springen
GET /v1/random

A random object (with image)

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/random" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vam-api/v1/random", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vam-api/v1/random");
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/random",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "object": {
            "date": "ca.1600-1610",
            "image": "https://framemark.vam.ac.uk/collections/2011EV3173/full/!600,600/0/default.jpg",
            "maker": "Unknown",
            "place": "Deccan",
            "title": "Painting",
            "object_type": "Painting",
            "system_number": "O1277505",
            "collection_url": "https://collections.vam.ac.uk/item/O1277505",
            "accession_number": "IS.14A-1913"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:42.370Z",
        "request_id": "24a6347e-9eba-42c2-8f3b-cf56f633b35d"
    },
    "status": "ok",
    "message": "Random object retrieved successfully",
    "success": true
}