Aller au contenu
GET /v1/random

A random object (with image)

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/vam-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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