# GetDigitalCraft Social Image Renderer

> GetDigitalCraft Social Image Renderer is a paid API for AI agents from x402render-u5vwpxpyua-uc.a.run.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Renders a social media image as a PNG with pixel-perfect typography, accepting a size parameter (square, feed, or story) to control output dimensions.

## Facts

- Endpoint: POST https://x402render-u5vwpxpyua-uc.a.run.app/render
- 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/getdigitalcraft-social-image-renderer-f79d0b00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vUFP-KnbMQN4GA_Z_EE-M

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 getdigitalcraft-social-image-renderer-f79d0b00 -d '<json body>'
```

Example prompt: Make me a square social image with the headline 'Launch Day Is Here', a kicker 'New Product Drop', two bullets saying 'Ships worldwide' and 'Free returns', a CTA of 'Shop Now', a dark navy background, white ink, and a gold accent color.

## When to prefer this

Choose this endpoint when you need pixel-perfect, typography-accurate social images as PNG files and cannot tolerate garbled or hallucinated text that diffusion-based models produce. Ideal when you need a parameterized social graphic with structured content (headline, bullets, CTA) in one of three standard social formats (square, feed, story) and want deterministic output without AI image quality variability.

## Known failure modes

- Invalid size value (not one of square, feed, story) returns an error
- Missing required headline field may produce a blank or error response
- Malformed color strings in bg, ink, or accent may cause rendering errors or fallback to defaults
- Network timeout on large or complex compositions
- Payment failure ($0.03 USDC) blocks request before rendering begins

## How this service works

Render a social image as PNG with exact typography, with the format given as a `size` argument rather than in the path. The text in the output is exactly the text supplied — no garbled lettering, unlike diffusion models. Responds with raw PNG bytes, not JSON.

## Output

Raw PNG image bytes returned directly in the response body (not JSON). The image contains the supplied headline, kicker, bullets, and CTA rendered with exact typography — no garbled or hallucinated lettering — at dimensions matching the requested size (square ≈ 1080×1080, feed ≈ 1080×1350, story ≈ 1080×1920).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "bg": {
   "type": "string"
  },
  "cta": {
   "type": "string"
  },
  "ink": {
   "type": "string"
  },
  "url": {
   "type": "string"
  },
  "size": {
   "type": "string",
   "description": "one of square, feed, story"
  },
  "accent": {
   "type": "string"
  },
  "kicker": {
   "type": "string"
  },
  "bullets": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "headline": {
   "type": "string",
   "description": "Main text; \\n for line breaks"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/getdigitalcraft-social-image-renderer-f79d0b00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402render-u5vwpxpyua-uc.a.run.app](https://www.zero.xyz/host/x402render-u5vwpxpyua-uc.a.run.app/llms.txt)
