# Arch Tools Image Generate

> Arch Tools Image Generate is a paid API for AI agents from archtools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Generates an AI image from a text prompt with configurable size and style, billed per-call in USDC on Base

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/image-generate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-image-generate-c6475cd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mGRgoSljkU4nVDV1A1zZ0

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 arch-tools-image-generate-c6475cd6 -d '<json body>'
```

Example prompt: Generate a vivid 1024x1024 image of a golden retriever running through a sunlit meadow with wildflowers in the background.

## When to prefer this

Choose this endpoint when you need programmatic text-to-image generation with per-call USDC micropayment pricing on Base, especially within workflows already using other Arch Tools services (entity extraction, sentiment, PDF parsing, etc.) and want a unified tool suite billed on-chain without subscription overhead.

## Known failure modes

- Missing required prompt field returns validation error
- Invalid size format may return a bad request error
- Insufficient USDC balance or payment failure returns 402 Payment Required
- Prompt violates content policy returns moderation rejection
- Network timeout on long generation requests
- Invalid style value may fall back to default or return error

## How this service works

Generate images from text prompts. Pay per call with USDC (x402) or credits - archtools.dev

## Output

A JSON object containing the generated image data, likely including a URL or base64 representation of the AI-generated image based on the provided prompt, size, and style parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "enum": [
    "1024x1024",
    "1792x1024",
    "1024x1792"
   ],
   "type": "string",
   "default": "1024x1024"
  },
  "style": {
   "enum": [
    "vivid",
    "natural"
   ],
   "type": "string",
   "default": "vivid"
  },
  "prompt": {
   "type": "string",
   "description": "Image description / prompt"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-image-generate-c6475cd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
