Vai al contenuto
GET /v1/search

Search & filter objects

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/vam-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "page": 1,
        "count": 20,
        "total": 1825,
        "objects": [
            {
                "date": "1517-1520",
                "image": "https://framemark.vam.ac.uk/collections/2010EJ0362/full/!600,600/0/default.jpg",
                "maker": "Raphael",
                "place": "Italy",
                "title": "St. Paul Preaching at Athens",
                "object_type": "Print",
                "system_number": "O1063091",
                "collection_url": "https://collections.vam.ac.uk/item/O1063091",
                "accession_number": "DYCE.1013"
            },
            {
                "date": "1720",
                "image": "https://framemark.vam.ac.uk/collections/2010EF7209/full/!600,600/0/default.jpg",
                "maker": "Gribelin, Simon (II)",
                "place": "London",
                "title": "The Seven Famous Cartons [sic] of Raphael Urbin",
                "object_type": "Print",
                "system_number": "O239656",
                "collection_url": "https://collections.vam.ac.uk/item/O239656",
                "accession_number": "DYCE.2504"
            },
            {
                "date": "early -  mid 18th century",
                "image": "https://framemark.vam.ac.uk/collections/2010EF7232/full/!600,600/0/default.jpg",
                "maker": "Larmessin, Nicolas (IV)",
                "place": "France",
                "title": "Portrait of Raphael",
                "object_type": "Print",
                "system_number": "O1157472",
                "collection_url": "https://collections.vam.ac.uk/item/O1157472",
                "accession_number": "DYCE.2583"
            },
            {
                "date": "ca. 1516",
                "image": "https://framemark.vam.ac.uk/collections/2006BE0705/full/!600,600/0/default.jpg",
                "maker": "Musi, Agostino dei",
                "place": "Italy",
                "title": "The Death of Ananias",
                "object_type": "Print",
                "system_number": "O239659",
                "collection_url": "https://collections.vam.ac.uk/item/O239659",
                "accession_number": "DYCE.1065"
            },
            {
                "date": "about 1515-1516",
                "image": "https://framemark.vam.ac.uk/collections/2006AN5938/full/!600,600/0/default.jpg",
                "maker": "Raphael",
                "place": "Italy",
                "title": "The Miraculous Draught of Fishes (Luke 5: 1-11)",
                "object_type": "Tapestry cartoon",
                "system_number": "O102006",
                "collection_url": "https://collections.vam.ac.uk/item/O102006",
                "accession_number": "ROYAL LOANS.2"
            },
            {
                "date": "1517-1520",
                "image": "https://framemark.vam.ac.uk/collections/2006BH8518/full/!600,600/0/default.jpg",
                "maker": "Raphael",
                "place": "Italy",
              
…