# Art Institute of Chicago Artwork Detail Lookup

> Art Institute of Chicago 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 detailed metadata for a single Art Institute of Chicago artwork by its numeric ID, returning title, artist, date, medium, and more from the museum's open collection.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-artic-artwork-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/art-institute-of-chicago-artwork-detail-lookup-74fc137e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7xOr5G7tkvRZqg1KxFR2X

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 art-institute-of-chicago-artwork-detail-lookup-74fc137e -d '<json body>'
```

Example prompt: Look up the Art Institute of Chicago artwork with ID 27992 and give me its title, artist name, date, and medium.

## When to prefer this

Choose this endpoint when you need structured, official metadata for a specific Art Institute of Chicago artwork by its numeric ID. It is keyless and inexpensive, making it ideal for enriching art references, verifying citations, or building gallery datasets without requiring your own ARTIC API integration.

## Known failure modes

- Invalid or non-existent numeric artwork ID returns an error or empty result
- Upstream ARTIC API unavailability causes a timeout or 502 error
- Malformed request body (missing required fields) returns a 400 validation error
- Payment failure via x402 protocol prevents the call from executing

## How this service works

Fetch one Art Institute of Chicago artwork by numeric ID. Returns title, artist_title, date_display, medium_display and more from the museum's open collection API. Keyless. Good for enriching art references or building gallery datasets.

## Output

Returns a JSON object containing the artwork's title, artist_title, date_display, medium_display, and additional fields from the Art Institute of Chicago's open collection API.

## 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/art-institute-of-chicago-artwork-detail-lookup-74fc137e/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)
