Factsheet
Company type Private
Industry Artificial intelligence
Founded December 11, 2015; 9 years ago (2015-12-11)
Company type Private
Industry Artificial intelligence
Founded December 11, 2015; 9 years ago (2015-12-11)
OpenAI
platform.openai.com › overview
OpenAI API overview
Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform.
OpenAI
platform.openai.com › docs › api-reference › introduction
API Reference - OpenAI API
This API reference describes the RESTful, streaming, and realtime APIs you can use to interact with the OpenAI platform. REST APIs are usable via HTTP in any environment that supports HTTP requests.
Videos
29:52
OpenAI Just Changed Everything (Responses API Walkthrough) - YouTube
30:02
OpenAI API Masterclass: Platform, Models & API Explained (Part ...
23:46
The OpenAI (Python) API | Introduction & Example Code - YouTube
06:52
Lecture 7 : Introduction to OpenAI API[OpenAI For Beginners] - YouTube
01:58:39
AI and Python - OpenAI API with Python Introduction - YouTube
07:44
Here's what you can build using OpenAI's API (documentation ...
OpenAI
platform.openai.com › docs › overview
Overview | OpenAI Platform
1 2 3 4 5 6 7 curl https://api.openai.com/v1/responses \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -d '{ "model": "gpt-5.2", "input": "Write a short bedtime story about a unicorn." }'
OpenAI
platform.openai.com
OpenAI Platform: Overview
Explore resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's developer platform.
OpenAI
openai.com › index › openai-api
OpenAI API | OpenAI
You can “program” it by showing it just a few examples of what you’d like it to do; its success generally varies depending on how complex the task is. The API also allows you to hone performance on specific tasks by training on a dataset (small or large) of examples you provide, or by learning from human feedback provided by users or labelers.
Web Reference
webreference.com › ai › api
Introduction to the OpenAI API
An overview of the OpenAI API, exploring its capabilities, limitations, and how developers can integrate it into various applications.
OpenAI
platform.openai.com › docs › quickstart
Developer quickstart | OpenAI API
The OpenAI API provides a simple interface to state-of-the-art AI models for text generation, natural language processing, computer vision, and more. Get started by creating an API Key and running your first API call.
DataCamp
campus.datacamp.com › courses › working-with-the-openai-api › introduction-to-the-openai-api
What is the OpenAI API? | OpenAI
One of their most famous developments ... questions, perform tasks, or generate content. The OpenAI API allows individuals or organizations to access and customize any of the models developed and released by OpenAI....
Microsoft Learn
learn.microsoft.com › en-us › azure › ai-foundry › openai › reference
Azure OpenAI in Microsoft Foundry Models REST API reference - Azure OpenAI | Microsoft Learn
Represents a completion response from the API. Note: both the streamed and nonstreamed response objects share the same shape (unlike the chat endpoint). Specifying a particular function via {"name": "my_function"} forces the model to call that function. ... A representation of configuration data for a single Azure OpenAI chat extension.
OpenAI
platform.openai.com › docs › concepts
Key concepts | OpenAI API
An embedding is a vector representation of a piece of data (e.g. some text) that is meant to preserve aspects of its content and/or its meaning. Chunks of data that are similar in some way will tend to have embeddings that are closer together than unrelated data. OpenAI offers text embedding models that take as input a text string and produce as output an embedding vector.
OpenAI
platform.openai.com › docs › models
Models | OpenAI API
Realtime API · Overview · Connect · Usage · Model optimization · Optimization cycle · Fine-tuning · Graders · Specialized models · Image generation · Video generation · Text to speech · Speech to text · Deep research · Embeddings · Moderation ·
OpenAI
platform.openai.com › docs › introduction
OpenAI Platform
Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform.
OpenAI
platform.openai.com › docs › api-reference › responses
Responses | OpenAI API Reference
Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform.
OpenAI
platform.openai.com › docs › api-reference › models › list
Models | OpenAI API Reference
List and describe the various models available in the API. You can refer to the Models documentation to understand what models are available and the differences between them. ... Lists the currently available models, and provides basic information about each one such as the owner and availability. A list of model objects. ... 1 2 3 4 5 6 7 8 9 10 11 12 import OpenAI from "openai"; const openai = new OpenAI(); async function main() { const list = await openai.models.list(); for await (const model of list) { console.log(model); } } main();