Naar de inhoud
GET /v1/exhibition

Exhibition detail

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/artic-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "exhibition": {
            "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
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:12.633Z",
        "request_id": "005c8c2d-9ca5-4a95-b4fa-50447d662c87"
    },
    "status": "ok",
    "message": "Exhibition retrieved successfully",
    "success": true
}