# ARTIC Artist Detail Lookup

> ARTIC Artist 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 a single artist record from the Art Institute of Chicago by numeric artist ID, returning name, birth/death dates, and alternate titles.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-artic-artist-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/artic-artist-detail-lookup-1b7169b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dlRpbsFGCMqgI4wuavK7n

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 artic-artist-detail-lookup-1b7169b8 -d '<json body>'
```

Example prompt: Can you look up artist ID 36198 in the Art Institute of Chicago and tell me their full name, birth and death dates, and any alternate titles listed?

## When to prefer this

Use this endpoint when you have a specific numeric Art Institute of Chicago artist ID and need to retrieve biographical metadata (name, dates, alternate titles) quickly without an API key. Prefer this over direct ARTIC API calls when operating in an x402 payment-gated agentic context or when you need a proxied, consistent interface. Not suitable for searching artists by name or browsing the collection.

## Known failure modes

- Invalid or non-existent artist ID returns an error or empty record
- Numeric ID provided as string vs integer may cause input validation failure
- API unavailability from upstream ARTIC open-access API causes downstream failure
- Missing body fields (type, method, bodyType) result in schema validation errors

## How this service works

Fetch one artist record from the Art Institute of Chicago by numeric agent ID. Returns name, birth_date, death_date and alt titles. Keyless open-access API. Useful for enriching art and biography datasets.

## Output

Returns a structured record for the requested artist including: full name, birth_date, death_date, and a list of alternate titles/names as recorded in the Art Institute of Chicago's open-access database.

## 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/artic-artist-detail-lookup-1b7169b8/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)
