# ForgeKit OG Image Generation

> ForgeKit OG Image Generation is a paid API for AI agents from useforgekit.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Generates Open Graph (OG) social preview images from a title, description, and optional template via a simple GET request

## Facts

- Endpoint: GET https://useforgekit.dev/api/v1/og
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgekit-og-image-generation-e48adbfe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kPZMW-DozqM5GQVJVPhuA

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 forgekit-og-image-generation-e48adbfe
```

Example prompt: Generate an OG preview image for my article titled 'How to Build a Startup in 30 Days' with description 'A practical guide to shipping fast and finding your first customers'.

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.001 USDC), on-demand OG image generated from just a title and description without maintaining your own image rendering infrastructure. Ideal for agents automating content publishing pipelines, blog platforms, or any workflow where social preview images need to be generated dynamically per-post. Prefer this over screenshot-based OG generation when you want a clean, template-driven card rather than a full-page render.

## Known failure modes

- Missing required 'title' query parameter returns a 400 error
- Invalid or unsupported template name may return an error or fall back to default
- Payment not included or insufficient USDC (x402) causes a 402 Payment Required response
- Very long title or description text may be truncated or cause rendering issues
- Network timeouts if image rendering takes too long server-side

## How this service works

ForgeKit OG image generation

## Output

Returns a rendered OG image file (PNG or similar image format) suitable for use as an og:image meta tag, generated from the provided title, optional description, and optional template.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "title"
     ],
     "properties": {
      "title": {
       "type": "string"
      },
      "template": {
       "type": "string"
      },
      "description": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgekit-og-image-generation-e48adbfe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from useforgekit.dev](https://www.zero.xyz/host/useforgekit.dev/llms.txt)
