# CoinOpAI Image Style Catalog

> CoinOpAI Image Style Catalog is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the list of available style keywords (e.g. anime, watercolor, cyberpunk) that can be passed to the /api/image/generate endpoint

## Facts

- Endpoint: GET https://x402.coinopai.com/api/image/styles
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinopai-image-style-catalog-99ca4631
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3NwTmASl7XtOXA5E0GZRe

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 coinopai-image-style-catalog-99ca4631
```

Example prompt: What image styles can I use with CoinOpAI's image generator? I want to know if they support anime or cyberpunk before I generate something.

## When to prefer this

Use this endpoint before calling /api/image/generate to discover valid style enum values, especially when the desired style keyword is unknown or needs to be validated against the supported list.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Network timeout — no response returned
- Unexpected server error — returns 5xx with no style list

## How this service works

Returns the list of available style keywords (anime, watercolor, cyberpunk, 3d_render, etc.) for /api/image/generate — check it before submitting a paid generation request.

## Output

Returns an array of style keyword strings (e.g. anime, watercolor, oil_painting, cyberpunk, 3d_render) that are valid inputs to the /api/image/generate endpoint's style parameter.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "styles": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinopai-image-style-catalog-99ca4631/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
