Aller au contenu
GET /v1/meta

Service description & endpoints

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/clevelandart-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "service": "clevelandart-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/random": "A random artwork (with image).",
            "GET /v1/search": "Search/filter artworks (q=, department=, type=, artist=, has_image=1, limit=, skip=).",
            "GET /v1/artwork": "A single artwork by id (id=, e.g. 92937).",
            "GET /v1/creator": "Artworks by a creator (name=, e.g. Claude Monet)."
        },
        "description": "The Cleveland Museum of Art Open Access collection: search and filter 60k+ artworks by keyword, department, type or artist (optionally only those with a CC0 image), fetch a single artwork with its full metadata and imagery, browse a creator's works and pull a random artwork. Real museum data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:45.487Z",
        "request_id": "9a4d2511-e8f0-497a-a21a-e2a0df463e11"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}