# Cleveland Museum of Art Artwork Detail Lookup

> Cleveland Museum of Art Artwork Detail Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Fetches metadata for a single Cleveland Museum of Art artwork by numeric ID, returning title, creation date, type, accession number, and CC0 rights status.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cleveland-art-detail
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cleveland-museum-of-art-artwork-detail-lookup-42e06610
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YdPilR1ldlWxOGlIEJVY2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cleveland-museum-of-art-artwork-detail-lookup-42e06610 -d '<json body>'
```

Example prompt: Can you pull up the details for Cleveland Museum of Art artwork ID 93726 — I need the title, creation date, type, and accession number?

## When to prefer this

Use this endpoint when you need structured metadata for a specific Cleveland Museum of Art artwork by its numeric ID, particularly for enriching art references, verifying CC0 licensing, or building catalog data. Prefer this over general web search when you need clean, structured data directly from CMA's open-access collection.

## Known failure modes

- Invalid or non-existent artwork ID returns an error or empty result
- Malformed request body (missing required fields) returns a 400-level error
- Upstream CMA API unavailability causes timeout or 502 error
- Payment not processed (x402) results in 402 Payment Required response

## How this service works

Fetch one Cleveland Museum of Art artwork by numeric ID. Returns title, creation_date, type, accession number and CC0 rights. Keyless open-access museum API. Useful for enriching art references.

## Output

Returns a JSON object containing the artwork's title, creation date, artwork type, accession number, and CC0 rights status for the specified numeric CMA artwork ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cleveland-museum-of-art-artwork-detail-lookup-42e06610/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
