English
主导航

旧版 API

API 平台

开发者快速入门

在几分钟内发起你的第一次 API 请求。了解 OpenAI 平台的基础知识。

1
2
3
4
5
6
7
8
9
import OpenAI from "openai";
const client = new OpenAI();

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

console.log(response.output_text);

构建路径

开始构建