For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Hauptnavigation

API-Plattform

Schnellstart für Entwickelnde

Stelle deine erste API-Anfrage in wenigen Minuten. Lerne die Grundlagen der OpenAI-Plattform kennen.

import OpenAI from "openai";
const client = new OpenAI();

const response = await client.responses.create({
  model: "gpt-6-astra",
  input: "Write a short bedtime story about a unicorn.",
});

console.log(response.output_text);

Wege zur Entwicklung

Mit der Entwicklung beginnen