Turns a text prompt into a production-ready image asset in one call: generate, sharpen, cut out the background.
Turns a text prompt into a production-ready image asset in one call: generate, sharpen, cut out the background. Composite: one call runs image-generate, then image-upscale, then remove-bg in sequence, merging into { image_url, stages }, with no separate paid calls or URL hand-offs between endpoints. Covers product image generation, ecommerce catalog creative, and one-call image workflow needs where a buyer wants a finished transparent-PNG asset, not a raw generation. Each downstream stage is optional and degrades gracefully: if upscale or background removal fails (or is disabled via input flags), the prior stage's image carries forward instead of failing the whole call.
| Method | Endpoint | Price | Description |
|---|---|---|---|
POST | /v1/marketplace/api/image-asset-pipeline | $0.092 | Invoke Image Asset Pipeline (Image) and return the upstream response. |
Requests are paid per call over the x402 protocol. Call the endpoint, receive a 402 Payment Required quote, then repeat the request with the signed payment header. The SDKs do both steps for you.
# 1. Ask for a quote
curl -i -X POST https://api.jarvisclaw.ai/v1/marketplace/api/image-asset-pipeline \
-H 'Content-Type: application/json' \
-d '{}'
# 2. Pay it (the SDK signs and retries for you)
curl -X POST https://api.jarvisclaw.ai/v1/marketplace/api/image-asset-pipeline \
-H 'Content-Type: application/json' \
-H 'X-PAYMENT: <signed-payload>' \
-d '{}'
Open in the marketplace
Docs: Getting started · x402 payments · x402 discovery · All APIs