Bild- und Videogenerierung über eine API.

Integrieren Sie KI-Bild- und Videogenerierung in Ihr Produkt — mit einer einfachen asynchronen API, nutzungsbasierter Abrechnung in US-Dollar und ohne Modell-Infrastruktur, die Sie pflegen müssen.

Vier Arten zu generieren

Jede ist ein einzelnes POST, das einen Task zurückgibt, den Sie abfragen. Gleiche Authentifizierung, gleiches Task-Modell, gleiches Ergebnisformat.

Text zu Bild

Beschreiben Sie ein Bild und erhalten Sie es zurück. Drei Ausgabestufen von 1K bis 4K.

POST /v1/images/generations

Bild zu Bild

Verändern Sie ein hochgeladenes Bild per Prompt — Hintergrund tauschen, Objekt entfernen, Szene umgestalten.

POST /v1/images/transformations

Text zu Video

Erzeugen Sie einen Clip aus einem Prompt. Vier Auflösungen, vier bis fünfzehn Sekunden.

POST /v1/videos/generations

Bild zu Video

Animieren Sie ein hochgeladenes Bild. Gleiche Auflösungen und Längen wie Text zu Video.

POST /v1/videos/transformations

Four steps to your first image

No SDK required. Any HTTP client will do.

  1. 1

    Create an API key

    One key per account, from your dashboard. It is shown once.

  2. 2

    Send a request

    One POST. It returns immediately with a task, not a finished file.

  3. 3

    Poll the task

    Check the task until it is done. Polling is never billed.

  4. 4

    Download the result

    A signed link, valid for an hour. Re-poll for a fresh one.

Generate an image

curl -X POST https://app.piernode.com/api/v1/images/generations \
  -H "Authorization: Bearer $PIERNODE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "a red ceramic mug on a wooden table, studio lighting",
    "resolution": "1k",
    "aspectRatio": "16:9"
  }'
{
  "id": "01JD8Z9K2M4N6P8Q0R2S4T6V8W",
  "status": "QUEUED",
  "createdAt": "2026-01-01T12:00:00.000Z"
}
Zum Schnellstart

Built to be integrated

The parts of an AI pipeline you would otherwise build yourself.

Asynchronous by design

Generation takes seconds to minutes. Requests return a stable task id straight away, so nothing in your stack has to hold a connection open.

Direct, verified uploads

Your images are uploaded to storage we control and checked before use. PierNode never fetches a URL you supply, which keeps a whole class of attack out of your integration.

Prepaid balance in USD

Top up, then spend. Every generation reserves its cost up front and is refunded in full if it fails. No credits, no tokens, no conversion to work out.

No model plumbing

You send a prompt and get a result. Which model runs it is ours to manage, so your integration keeps working as the machinery behind it changes.

Pay for what you generate

Prices in US dollars, charged per image or per second of video. Nothing is charged for a generation that fails.

Images

Text to image/ image
1K0,01 $2K0,02 $4K0,03 $
Image to image/ image
HD0,02 $FHD0,03 $

Videos

Text to video/ second
480p0,084 $512p0,112 $720p0,14 $1080p0,20 $
Image to video/ second
480p0,084 $512p0,112 $720p0,14 $1080p0,20 $

A video costs its resolution rate multiplied by its length — five seconds at 720p is $0.70.

Questions