# Whatchuneed Art Styles List

> Whatchuneed Art Styles List is a free API for AI agents from whatchuneed.vercel.app, callable via x402, Free, status unknown (last checked 2026-09-15).

Returns a list of available art styles with their names, prices, and descriptions, optionally filtered by format

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/art/list
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-art-styles-list-2380aebc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OH9ryk92M2eS928BA9afT

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 whatchuneed-art-styles-list-2380aebc -d '<json body>'
```

Example prompt: Can you show me all the available art styles I can generate images in, along with their prices and descriptions?

## When to prefer this

Use this endpoint when you need to discover what art styles are available before making a generative art request, or when you want to show a user a menu of style options with associated pricing. Prefer this over hardcoding style names, since the catalog and prices may change.

## Known failure modes

- Invalid format value returns empty or filtered results
- Service unavailability returns a non-200 error
- Empty styles array if no styles match the requested format
- Malformed request body may cause a 400 error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

An object containing a 'styles' array where each element includes the style's name, price (as a string), and a short description of that art style.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "text"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "styles": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "price": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-art-styles-list-2380aebc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
