Rendra Docs / Überblick

Rendra-Dokumentation

KI-gestützte API zur OG-Bildgenerierung — erstellen Sie in Sekunden programmatisch schöne Open-Graph-Bilder.

Was ist Rendra?

Rendra is a REST API that generates Open Graph (OG) images on demand using AI. Point it at your content, provide a prompt, and get back a perfectly sized PNG or JPEG ready to embed in your <meta> tags.

Whether you're generating social cards for a blog, product announcement banners, or dynamic marketing assets, Rendra handles the heavy lifting so you don't have to wrangle image editing tools or Puppeteer instances.

Schnellstart — 60 Sekunden

Holen Sie sich Ihr erstes Bild in unter einer Minute.

Schritt 1 — Ein Konto erstellen

curl -X POST https://rendra.alphabros.eu/api/v1/users \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

The response contains your api_key. Copy it — you'll need it for every request.

Schritt 2 — Ihr erstes Bild generieren

curl -X POST https://rendra.alphabros.eu/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A modern tech blog header with a purple gradient background and bold white title text",
    "width": 1200,
    "height": 630,
    "format": "png"
  }'

You'll get back a generation ID:

{
  "id": "gen_abc123",
  "status": "processing",
  "url": null
}

Schritt 3 — Das Ergebnis abfragen

curl https://rendra.alphabros.eu/api/v1/generate/gen_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "gen_abc123",
  "status": "completed",
  "url": "https://cdn.rendra.dev/gen_abc123.png",
  "width": 1200,
  "height": 630
}

That's it — drop url into your <meta property="og:image"> tag and you're done.

Tip: Use the TypeScript SDK to skip the polling loop entirely — generateAndWait() handles it for you.

Die Dokumentation erkunden

Basis-URL

https://rendra.alphabros.eu

Ratenbegrenzungen

Rate limits depend on your plan. See Abrechnung und Nutzung for details. All API responses include X-RateLimit-Remaining and X-RateLimit-Reset headers.