# PayWeave Replicate – GPT-Image-1.5 Image Generation

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

Runs OpenAI's GPT-Image-1.5 model via Replicate to generate images from prompts, billed per call at $0.03 USDC using x402 micropayments.

## Facts

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

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-image-generation-e616ed05 -d '<json body>'
```

Example prompt: Generate an image of a serene Japanese garden at sunset with cherry blossoms falling into a koi pond — high detail, photorealistic style.

## When to prefer this

Choose this endpoint when you need to run OpenAI's GPT-Image-1.5 model specifically without a Replicate subscription, paying only $0.03 USDC per call via x402 micropayment. Ideal for agents that need on-demand, low-commitment image generation billed in crypto with no monthly fees. Prefer this over direct Replicate API when you want x402-compatible pay-per-call billing.

## Known failure modes

- Payment failure via x402 if wallet has insufficient USDC balance
- Model inference failure returns status='failed' with a non-null error string
- CDN URL expires after approximately 24 hours making the image inaccessible
- Status may return 'processing' or 'starting' if the model is cold-starting, requiring polling
- Invalid or malformed input object may cause a failed prediction
- Network timeout during long inference may result in a canceled status

## 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 (valid for ~24 hours) in the output field, timing metrics (total_time, predict_time), creation and completion timestamps, and the actual USD 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-image-generation-e616ed05/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)
