Skip to content
GET /v1/meta

Service description & endpoints

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/clevelandart-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}