# Suverse Art Institute of Chicago Search

> Suverse Art Institute of Chicago Search 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).

Search the Art Institute of Chicago's collection by keyword, returning matching artworks with title, artist, and date

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-artic-search
- 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/suverse-art-institute-of-chicago-search-7591f75b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_00Wd6ENLzwuPOmD_pMFJL

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 suverse-art-institute-of-chicago-search-7591f75b -d '<json body>'
```

Example prompt: Search the Art Institute of Chicago collection for impressionist paintings and show me the titles, artists, and dates of anything that comes up.

## When to prefer this

Use this endpoint when you need to search the Art Institute of Chicago's collection by keyword without managing an API key, especially when building art discovery or educational experiences. Prefer this over direct AIC API calls when you want a pay-per-use, keyless integration point for AI agent workflows.

## Known failure modes

- No results returned for obscure or misspelled keywords
- Generic HTTP errors if the proxy service is unavailable
- Empty response body if the keyword matches no artworks in the collection
- Payment failure if x402 USDC payment is not processed correctly

## How this service works

Search the Art Institute of Chicago collection by keyword, no key. Returns matching artworks with title, artist, and date. For AI agents building art discovery experiences.

## Output

A list of matching artworks from the Art Institute of Chicago collection, each including the artwork title, artist name, and creation date, filtered by the provided keyword.

## 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/suverse-art-institute-of-chicago-search-7591f75b/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)
