Claude Developer Platform Docs
Reads platform.claude.com's own developer documentation — one /docs page by URL, or the full page index — as clean markdown, the site's own…
Reads platform.claude.com's own developer documentation — one /docs page by URL, or the full page index — as clean markdown, the site's own machine-readable source rather than a scrape.
Domain: platform.claude.com
Also known as: platform.claude.com, Claude Developer Platform, Claude Developer Platform Docs, Anthropic developer docs, Claude API docs
Call it directly
bowmark.providers.platform_claude_com.getDocPage(url: string): Promise<platform_claude_comDoc>
bowmark.providers.platform_claude_com.listDocPages(): Promise<platform_claude_comDocLink[]>Functions
| Function | What it does |
|---|---|
getDocPage | Reads one /docs page of platform.claude.com's own documentation by URL or path (e.g. "/docs/en/about-claude/pricing" or the full https:// url) and returns its title, description and body as… |
listDocPages | Lists every English /docs page platform.claude.com publishes — title, its own .md source url, and a one-line description where the site gives one — parsed from the site's own /llms.txt… |
Types
interface platform_claude_comDoc {
url: string;
title: string | null;
description: string | null;
body: string;
}
interface platform_claude_comDocLink {
title: string;
url: string;
description: string | null;
}Examples
// what does the pricing page say about Sonnet 5?
const doc = await bowmark.providers.platform_claude_com.getDocPage("https://platform.claude.com/docs/en/about-claude/pricing");
log(doc.title, doc.body.slice(0, 500));// find every doc page about the Agent SDK
const pages = await bowmark.providers.platform_claude_com.listDocPages();
const sdkPages = pages.filter((p) => /agent sdk/i.test(p.title) || /agent-sdk/.test(p.url));
log(sdkPages);