OpenAI Developer Docs
OpenAI's own developer documentation site. getDocPage reads one docs page (title, canonical URL, full article text) by path — e.g. /api/docs/mcp for the…
OpenAI's own developer documentation site. getDocPage reads one docs page (title, canonical URL, full article text) by path — e.g. /api/docs/mcp for the remote MCP server / OAuth connector guide.
Domain: developers.openai.com
Also known as: OpenAI, OpenAI API, OpenAI Developer Platform, developers.openai.com
Call it directly
bowmark.providers.developersopenai.getDocPage(args?: object): Promise<DevelopersOpenaiDocPage>Functions
| Function | What it does |
|---|---|
getDocPage | Reads one page of OpenAI's developer docs and returns its title, canonical URL and full article text. |
Types
interface DevelopersOpenaiDocPage {
path: string;
title: string;
canonicalUrl: string;
body: string;
}