# PayWeave Replicate – ByteDance SeedDream 4 Image Generation

> PayWeave Replicate – ByteDance SeedDream 4 Image Generation is a paid API for AI agents from replicate.payweave.services, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Runs ByteDance's SeedDream 4 open-source image generation model via a pay-per-call API, returning CDN-hosted image URLs.

## Facts

- Endpoint: POST https://replicate.payweave.services/models/bytedance/seedream-4/predictions
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-replicate-bytedance-seeddream-4-image-generation-3422c519
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Str92u2QzxORMErE4X-4Z

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-bytedance-seeddream-4-image-generation-3422c519 -d '<json body>'
```

Example prompt: Use SeedDream 4 to generate an image of a futuristic cyberpunk cityscape at night with neon reflections on wet streets.

## When to prefer this

Choose this endpoint when you need to run ByteDance's SeedDream 4 image generation model specifically, without a Replicate subscription, paying only per call in USDC via the x402 protocol. Prefer this over generic Replicate API access when operating in a crypto-native or AI-agent payment context where micropayments are preferred over monthly subscriptions.

## Known failure modes

- Model inference fails — status returns 'failed' with a non-null error message
- Payment rejected or insufficient balance — 402 response before prediction starts
- Input schema malformed or missing required fields — validation error returned
- CDN URL expires after ~24h TTL — image no longer accessible
- Model is starting/processing and not yet complete — status returns 'starting' or 'processing' requiring polling
- Prediction canceled — status returns 'canceled' with null output

## How this service works

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

## Output

Returns a JSON object containing a Replicate prediction ID, the model name (bytedance/seedream-4), a status field (succeeded/failed/canceled/processing/starting), CDN-hosted image URL(s) with ~24-hour TTL, timing metrics (total_time, predict_time), creation and completion timestamps, and the USD amount charged for the call. Image output is accessible via a temporary Replicate-hosted CDN URL.

## 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-bytedance-seeddream-4-image-generation-3422c519/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)
