/v1/meta
Spec
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/artic-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/artic-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"service": "artic-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/artist": "Artist detail by id (e.g. 35809).",
"GET /v1/search": "Full-text artwork search (q=, page=).",
"GET /v1/artists": "Search artists (q=).",
"GET /v1/artwork": "Artwork detail by id (e.g. 27992).",
"GET /v1/artworks": "Browse the collection (page=).",
"GET /v1/exhibition": "Exhibition detail by id.",
"GET /v1/exhibitions": "Exhibitions (q= optional)."
},
"description": "Art Institute of Chicago: full-text artwork search, artwork detail with high-res IIIF images, browse the collection, artist search and detail, and exhibitions. Real live museum data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:13.101Z",
"request_id": "691a515a-d970-4dfe-946e-b4ea2b05f219"
},
"status": "ok",
"message": "Meta",
"success": true
}