/v1/exhibition
Exhibition detail
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}