# PayWeave Replicate – Ideogram v3 Turbo Image Generation

> PayWeave Replicate – Ideogram v3 Turbo Image Generation is a paid API for AI agents from replicate.payweave.services, paid per call via x402, $0.06/call, status healthy (last checked 2026-09-15, last successful call 2026-08-18).

Generates images from text prompts using Ideogram AI's v3 Turbo model, billed per call via x402 micropayment.

## Facts

- Endpoint: POST https://replicate.payweave.services/models/ideogram-ai/ideogram-v3-turbo/predictions
- Price: $0.06/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-08-18
- Success rate: 100% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 6
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-replicate-ideogram-v3-turbo-image-generation-53becda9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YCyYqFL_FxY-nKdPpYV1w

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-ideogram-v3-turbo-image-generation-53becda9 -d '<json body>'
```

Example prompt: Generate an image of a futuristic cyberpunk city at night with neon reflections on wet streets using the Ideogram v3 Turbo model — I want a wide cinematic composition with vivid colors.

## When to prefer this

Choose this endpoint when you need fast Ideogram v3 Turbo image generation on a pay-per-call basis without maintaining a Replicate subscription or API key — ideal for agents that need to generate images infrequently or want cost-per-call pricing via x402 micropayments. Prefer this over generic Replicate access when specifically targeting the Ideogram v3 Turbo model for its speed-quality tradeoff.

## Known failure modes

- Payment failure or insufficient USDC balance causes x402 rejection before inference runs
- Invalid or malformed input schema returns an error with status 'failed'
- Model cold-start may result in a 'starting' or 'processing' status requiring polling
- Generated image CDN URL expires after ~24 hours making it unavailable
- Replicate upstream errors propagate as non-null error field with status 'failed'
- Network timeout during inference returns a 'canceled' status

## How this service works

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

## Output

Returns a Replicate prediction object containing a unique prediction ID, the model name, a status field (succeeded/failed/canceled/processing/starting), a CDN-hosted image URL with ~24-hour TTL in the output field, timing metrics (total_time, predict_time), 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-ideogram-v3-turbo-image-generation-53becda9/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)
