Naar de inhoud
GET /v1/artwork

A single artwork by id

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/clevelandart-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "artwork": {
            "id": 92937,
            "url": "https://clevelandart.org/art/1922.1133",
            "type": "Painting",
            "image": "https://openaccess-cdn.clevelandart.org/1922.1133/1922.1133_web.jpg",
            "title": "Stag at Sharkey's",
            "culture": [
                "America"
            ],
            "creators": [
                "George Bellows (American, 1882–1925)"
            ],
            "copyright": null,
            "technique": "oil on canvas",
            "department": "American Painting and Sculpture",
            "dimensions": "Framed: 110 x 140.5 x 8.5 cm (43 5/16 x 55 5/16 x 3 3/8 in.); Unframed: 92 x 122.6 cm (36 1/4 x 48 1/4 in.)",
            "image_full": "https://openaccess-cdn.clevelandart.org/1922.1133/1922.1133_full.tif",
            "description": "Bellows was no stranger to Sharkey’s Athletic Club, a raucous saloon with a backroom boxing ring, located near his studio. Founded by Tom “Sailor” Sharkey, an ex-fighter who had also served in the US Navy, the club attracted men seeking to watch or participate in matches. Because public boxing was illegal in New York at the time, a private event had to be arranged in order for a bout to take place. Participation was usually limited to members of a particular club, but whenever an outsider competed, he was given temporary membership and known as a “stag.” Although boxing had its share of detractors who considered it uncouth at best or barbaric at worst, its proponents—among them President Theodore Roosevelt—regarded it a healthy manifestation of manliness. Around the time Bellows painted <em>Stag at Sharkey’s, </em>boxing was moving from a predominantly working-class enterprise to one with greater genteel appeal. For some contemporaries, boxing was a powerful analogy for the notion that only the strongest and fittest would flourish in modern society.",
            "did_you_know": "George Bellows was raised in Columbus, Ohio, and attended Ohio State University where he played baseball and basketball.",
            "creation_date": "1909",
            "accession_number": "1922.1133",
            "share_license_status": "CC0"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:43.466Z",
        "request_id": "4cea41ce-1be3-45a1-8ea4-431cf38f2cff"
    },
    "status": "ok",
    "message": "Artwork retrieved successfully",
    "success": true
}