# Delx Pro Image (FLUX 1.1 Pro) for Agents

> Delx Pro Image (FLUX 1.1 Pro) for Agents is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Generates high-quality FLUX 1.1 Pro images via x402 micropayment at $0.06 USDC, returning a public WebP URL and SHA-256 hash — optimized for hero shots, campaign creatives, and brand-facing assets.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/image-hq
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-pro-image-flux-1-1-pro-for-agents-61548d93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QI61f6zfYjkOJciCFIXxa

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 delx-pro-image-flux-1-1-pro-for-agents-61548d93 -d '<json body>'
```

Example prompt: Generate a high-quality FLUX 1.1 Pro hero image of a minimalist coffee shop interior with warm lighting and wooden furniture, in 16:9 landscape format using the balanced quality profile — I need something polished enough to ship on a landing page.

## When to prefer this

Choose this endpoint when you need production-ready, brand-safe images with strong prompt adherence and fine detail — hero stills, campaign creatives, or product shots where the $0.01 draft quality is insufficient. Prefer this over the draft tier when the output will be customer-facing or shipped in a campaign. Ideal for agent workflows that require no API key, no subscription, and verifiable image integrity via SHA-256.

## Known failure modes

- Invalid or empty prompt returns a 400 validation error
- Unsupported model alias returns an enum validation error
- Aspect ratio not in allowed list returns a 400 error
- x402 payment failure or insufficient USDC balance blocks the request
- Prompt exceeds 2000 character limit returns a validation error
- Upstream Replicate model timeout or outage returns a 5xx error

## How this service works

Pro-grade FLUX 1.1 Pro images for agents at $0.06 USDC. Call when the $0.01 draft is not good enough to ship—hero stills, campaign creatives, product shots, and brand-facing assets with sharper detail and stronger prompt adherence. Public WebP URL + SHA-256 via x402 on Base; no API key, no subscription.

## Output

Returns a public WebP image URL (hosted, immediately accessible), a SHA-256 hash of the image for integrity verification, upstream model cost, and gross margin markup fields. Payment is processed via x402 on Base at $0.06 USDC per call with no API key or subscription required.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "enum": [
    "black-forest-labs/flux-schnell",
    "black-forest-labs/flux-dev",
    "flux-schnell",
    "flux-dev",
    "schnell",
    "flux",
    "dev"
   ],
   "type": "string",
   "description": "Optional commercial Replicate model in the same SKU price band. Defaults to black-forest-labs/flux-schnell. Aliases: flux-schnell, flux-dev. Never mediagen/SuperGrok. Response includes upstream_cost and gross_margin markup fields."
  },
  "prompt": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1,
   "description": "Text description of the image to generate."
  },
  "aspect_ratio": {
   "enum": [
    "1:1",
    "16:9",
    "21:9",
    "3:2",
    "2:3",
    "4:5",
    "5:4",
    "3:4",
    "4:3",
    "9:16",
    "9:21"
   ],
   "type": "string",
   "default": "1:1"
  },
  "quality_profile": {
   "enum": [
    "balanced",
    "raw"
   ],
   "type": "string",
   "default": "balanced",
   "description": "balanced applies versioned anti-artifact quality guidance; raw forwards the prompt unchanged."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "hq",
  "bytes": 120000,
  "model": "black-forest-labs/flux-1.1-pro",
  "width": 1024,
  "height": 1024,
  "sha256": "b1fee3065c234364feb056ee4ad06f135c0d30039eaff0e92e52e371e884cb29",
  "provider": "replicate",
  "image_url": "https://api.delx.ai/api/v1/generated-images/d61c158acd974528be6af43a3bfac50f.webp",
  "media_type": "image/webp",
  "aspect_ratio": "1:1",
  "generation_id": "hq-sample-generation-id",
  "quality_profile": "balanced",
  "sale_price_usdc": 0.06,
  "prompt_policy_version": "balanced/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-pro-image-flux-1-1-pro-for-agents-61548d93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
