Μετάβαση στο περιεχόμενο
GET /v1/exhibitions

Exhibitions

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/artic-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 20,
        "pagination": {
            "limit": 20,
            "total": 6254,
            "offset": 0,
            "total_pages": 313,
            "current_page": 1
        },
        "exhibitions": [
            {
                "id": 3365,
                "image": null,
                "title": "John Massey: Cartón de Venezuela",
                "status": "Closed",
                "gallery": "Gallery 24",
                "web_url": "https://www.artic.edu/exhibitions/3365/john-massey-carton-de-venezuela",
                "description": "Gallery 24\nOne of Chicago’s great design stories emerged from the Container Corporation of America (CCA) in the middle of the 20th century.",
                "is_featured": false
            },
            {
                "id": 3251,
                "image": "https://www.artic.edu/iiif/2/d3022cbb-fd06-2933-bab7-adcdd6fb9bd4/full/843,/0/default.jpg",
                "title": "Four Followers of Caravaggio",
                "status": "Closed",
                "gallery": "Gallery 211",
                "web_url": "https://www.artic.edu/exhibitions/3251/four-followers-of-caravaggio",
                "description": "Michelangelo Merisi da Caravaggio earned great notoriety for his revolutionary style and for his unconventional process of painting directly from live models. The special loan of Orazio Gentileschi's The Lute Player from the National Gallery of Art in Washington DC enables us to show how four other painters in early 17th-century Rome assimilated his style in their own distinct ways. The Lute Player joins three other Caravaggesque paintings from the Art Institute's collection by Giovanni Baglione, Bartolomeo Manfredi, and Cecco del Caravaggio.",
                "is_featured": false
            },
            {
                "id": 2999,
                "image": null,
                "title": "Tools of the Trade: 19th- and 20th- Century Architectural Trade Catalogs",
                "status": "Closed",
                "gallery": "Research Center Franke Reading Room",
                "web_url": "https://www.artic.edu/exhibitions/2999/tools-of-the-trade-19th-and-20th-century-architectural-trade-catalogs",
                "description": null,
                "is_featured": false
            },
            {
                "id": 998,
                "image": null,
                "title": "Ink on Paper: Japanese Monochromatic Prints (2009)",
                "status": "Closed",
                "gallery": "Gallery 107",
                "web_url": "https://www.artic.edu/exhibitions/998/ink-on-paper-japanese-monochromatic-prints-2009",
                "description": null,
                "is_featured": false
            },
            {
                "id": 3093,
                "image": null,
                "title": "Head Dressing: The Art of Crowns, Helmets, Hats, and Hairstyles in Africa",
                "status": "Closed",
                "gallery": "Gallery 137",
      
…