For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
メインナビゲーション

API プラットフォーム

開発者向けクイックスタート

数分で初めての API リクエストを送信できます。OpenAI プラットフォームの基本を学びましょう。

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);

開発の進め方

開発の開始