# PayWeave Replicate – GPT-Image-1.5 Medium Image Generation

> PayWeave Replicate – GPT-Image-1.5 Medium Image Generation is a paid API for AI agents from replicate.payweave.services, paid per call via x402, $0.11/call, status unknown (last checked 2026-09-13).

Generates images using OpenAI's GPT-Image-1.5 medium model via a pay-per-call Replicate proxy with x402 micropayment billing

## Facts

- Endpoint: POST https://replicate.payweave.services/models/openai/gpt-image-1.5-medium/predictions
- Price: $0.11/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-replicate-gpt-image-1-5-medium-image-generation-229b577a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DPU8LpJDYn8jUbwkADrLh

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 payweave-replicate-gpt-image-1-5-medium-image-generation-229b577a -d '<json body>'
```

Example prompt: Generate an image of a golden retriever sitting in a field of sunflowers at sunset, realistic photography style — use the GPT-Image-1.5 medium model and give me back the image URL.

## When to prefer this

Choose this endpoint when you need to generate images using OpenAI's GPT-Image-1.5 medium model without a Replicate subscription, paying only per call via x402 USDC micropayments. Prefer it over direct Replicate API access when you want crypto-native pay-per-use billing, or when building autonomous agents that need to self-pay for image generation on demand.

## Known failure modes

- Payment rejected or insufficient USDC balance — 402 response before prediction runs
- Model input validation failure — returns status 'failed' with error string describing the bad parameter
- Prediction canceled by timeout or user — status 'canceled' with null output
- Model cold-start delay causing processing state with no output yet — caller must poll or retry
- CDN URL expiration (~24h TTL) — image URL becomes inaccessible after expiry
- Replicate upstream outage — error field populated, status 'failed'

## How this service works

Run open-source AI models — image, video, audio.

## Output

Returns a Replicate prediction object including a unique prediction ID, the model name, a status field (succeeded/failed/canceled/processing/starting), a CDN-hosted image URL with ~24-hour TTL, timing metrics (total_time, predict_time), creation and completion timestamps, and the USD amount charged for the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "model",
  "status",
  "error",
  "predicted_price_usd"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Replicate prediction ID."
  },
  "error": {
   "type": [
    "string",
    "null"
   ]
  },
  "model": {
   "type": "string"
  },
  "output": {
   "description": "Model-specific output. Image/audio models return CDN URLs (Replicate-hosted, ~24h TTL); vision-LLM models return a string; music models return a single audio URL or array."
  },
  "status": {
   "enum": [
    "succeeded",
    "failed",
    "canceled",
    "processing",
    "starting"
   ],
   "type": "string"
  },
  "metrics": {
   "type": "object",
   "properties": {
    "total_time": {
     "type": "number"
    },
    "predict_time": {
     "type": "number"
    }
   },
   "additionalProperties": false
  },
  "created_at": {
   "type": "string"
  },
  "completed_at": {
   "type": "string"
  },
  "predicted_price_usd": {
   "type": "string",
   "description": "USD charged for this call."
  }
 },
 "description": "Replicate prediction result with metadata.",
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-replicate-gpt-image-1-5-medium-image-generation-229b577a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from replicate.payweave.services](https://www.zero.xyz/host/replicate.payweave.services/llms.txt)
