Zum Inhalt springen
GET /v1/maker

Objects by a maker

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

Beispiel-Response

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

{
    "data": {
        "count": 20,
        "maker": "William Morris",
        "total": 24195,
        "objects": [
            {
                "date": "ca.1880",
                "image": "https://framemark.vam.ac.uk/collections/2025PL2747/full/!600,600/0/default.jpg",
                "maker": "William Morris",
                "place": "London",
                "title": "Olive and Rose",
                "object_type": "Embroidery",
                "system_number": "O1803073",
                "collection_url": "https://collections.vam.ac.uk/item/O1803073",
                "accession_number": "T.76-2025"
            },
            {
                "date": "1879",
                "image": "https://framemark.vam.ac.uk/collections/2019MG2168/full/!600,600/0/default.jpg",
                "maker": "Morris, William",
                "place": "Great Britain",
                "title": "Curtain ring set",
                "object_type": "Curtain ring set",
                "system_number": "O315342",
                "collection_url": "https://collections.vam.ac.uk/item/O315342",
                "accession_number": "CIRC.80D&E-1966"
            },
            {
                "date": "about 1885",
                "image": "https://framemark.vam.ac.uk/collections/2014GW1189/full/!600,600/0/default.jpg",
                "maker": "Morris, William",
                "place": "London",
                "title": "Back cushion",
                "object_type": "Back cushion",
                "system_number": "O1141568",
                "collection_url": "https://collections.vam.ac.uk/item/O1141568",
                "accession_number": "CIRC.642:3-1962"
            },
            {
                "date": "about 1885",
                "image": "https://framemark.vam.ac.uk/collections/2014GW1189/full/!600,600/0/default.jpg",
                "maker": "Morris, William",
                "place": "London",
                "title": "Seat cushion",
                "object_type": "Seat cushion",
                "system_number": "O1141565",
                "collection_url": "https://collections.vam.ac.uk/item/O1141565",
                "accession_number": "CIRC.642:2-1962"
            },
            {
                "date": "1881",
                "image": "https://framemark.vam.ac.uk/collections/2019LX4968/full/!600,600/0/default.jpg",
                "maker": "William Morris",
                "place": "Great Britain",
                "title": "St James",
                "object_type": "Furnishing fabric",
                "system_number": "O271082",
                "collection_url": "https://collections.vam.ac.uk/item/O271082",
                "accession_number": "T.2-1919"
            },
            {
                "date": "1881",
                "image": "https://framemark.vam.ac.uk/collections/2019LX4969/full/!600,600/0/default.jpg",
                "maker": "William Morris",
                "place": "Great Britain",
                "title": "St James",
              
…