# Metropolitan Museum of Art Object Detail Lookup

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

Fetches full details for a specific Metropolitan Museum of Art artwork by object ID, returning title, artist, date, medium, and image URL.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-met-object
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/metropolitan-museum-of-art-object-detail-lookup-eb759bc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PL8JgW6ij9cKKaa4uamAt

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 metropolitan-museum-of-art-object-detail-lookup-eb759bc0 -d '<json body>'
```

Example prompt: Can you pull up the details for Met museum object ID 45734 — I need the title, artist, date, medium, and image URL?

## When to prefer this

Choose this endpoint when you need structured metadata for a specific Met museum artwork by its numeric object ID and want a keyless, pay-per-call access pattern without managing Met API credentials. Ideal for AI agents that need artwork details on demand without rate-limit concerns tied to API key quotas.

## Known failure modes

- Invalid or non-existent object ID returns an error or empty result
- Object exists but has no image (restricted or rights-managed works return null image URL)
- Met API upstream downtime causes a degraded or failed response
- Payment of 0.002 USDC per call not fulfilled results in 402 rejection

## How this service works

Details for a Metropolitan Museum of Art object by id, no key. Returns title, artist, date, medium, and image url. For AI agents fetching a specific artwork.

## Output

Returns a JSON object containing the artwork's title, artist display name, creation date, medium description, and a URL to the primary image hosted by the Met — all sourced from the Met's public collection API without requiring an API key.

## 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/metropolitan-museum-of-art-object-detail-lookup-eb759bc0/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)
