# CoinopAI ImageGen Prompt Styles Guide

> CoinopAI ImageGen Prompt Styles Guide is a paid API for AI agents from imagegen.coinopai.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns a curated JSON cheat sheet of 12 proven FLUX prompt-engineering style recipes, an aspect-ratio guide, and a tier picker to optimize image generation requests before calling paid generation endpoints.

## Facts

- Endpoint: GET https://imagegen.coinopai.com/prompt-styles
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinopai-imagegen-prompt-styles-guide-f6c56cf2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ExwRGtA4-to0ni9kiRbKB

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-imagegen-prompt-styles-guide-f6c56cf2
```

Example prompt: Before I generate any images, pull up the CoinopAI prompt style cheat sheet so I can see which of the 12 FLUX style recipes and aspect ratios fit my project best.

## When to prefer this

Use this endpoint before calling any paid FLUX generation endpoint on imagegen.coinopai.com. At $0.001 per call it is orders of magnitude cheaper than a generation call ($0.25–$0.75), making it ideal for agents that need to programmatically select a style, aspect ratio, or tier before committing to a generation. Prefer this over hardcoding style names or guessing aspect ratios.

## Known failure modes

- Network timeout if the static endpoint is temporarily unavailable
- Unexpected schema change if the style list is updated — agents should not hard-code style indices
- Non-200 response if the x402 payment header is missing or malformed

## How this service works

Prompt Styles — a curated FLUX prompt-engineering cheat sheet: 12 proven style recipes, an aspect-ratio guide, and a tier picker for the paid /generate endpoints. Static JSON, answers in milliseconds. Spend $0.001 here before spending $0.25-$0.75 on a generation.

## Output

A static JSON object containing: a list of 12 named prompt style recipes (with style name, description, and example prompt fragments), an aspect ratio guide mapping common ratios to ideal use cases, and a tier guide explaining when to use each of the paid generation endpoints. Also includes a count field indicating the total number of styles returned.

## 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",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "styles": {
       "type": "array"
      },
      "tier_guide": {
       "type": "object"
      },
      "aspect_guide": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinopai-imagegen-prompt-styles-guide-f6c56cf2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from imagegen.coinopai.com](https://www.zero.xyz/host/imagegen.coinopai.com/llms.txt)
