/v1/exhibition
Exhibition detail
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}