ClaudeCloudflare Developer Platform2026/07/07 0:00

Browser Run - New Browser Run endpoint for accessibility trees

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Browser Run - New Browser Run endpoint for accessibility trees の要約

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts New Browser Run endpoint for accessibility trees Jul 07, 2026 Browser Run Browser Run now supports a standalone /accessibilityTr
  • ポイント3: An accessibility tree is the browser's structured view of a rendered page: roles, names, states, values, and hierarchy.

Summary

この記事は 2026-07-07 に公開された「Browser Run - New Browser Run endpoint for accessibility trees」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts New Browser Run endpoint for accessibility trees Jul 07, 2026 Browser Run Browser Run now supports a standalone /accessibilityTr
  • ポイント3: An accessibility tree is the browser's structured view of a rendered page: roles, names, states, values, and hierarchy.

Full Translation

翻訳

原文の流れを保ったまま読める翻訳セクションです。

claudeja

Browser Run - New Browser Run endpoint for accessibility trees(原文タイトル)

概要

公開日: 2026-07-07 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts New Browser Run endpoint for accessibility trees Jul 07, 2026 Browser Run Browser Run now supports a standalone /accessibilityTree endpoint, giving agent and automation workflows direct access to the browser's accessibility tree for a rendered webpage. An accessibility tree is the browser's structured view of a rendered page: roles, names, states, values, and hierarchy. It is useful for accessibility tooling, but also for AI agents and automation workflows that need page structure without the noise of raw HTML or the cost of screenshots. For AI agents, this means less inference from pixels and less parsing HTML. You can provide the page structure directly, helping agents identify available elements and determine which actions they can take. With the new /accessibilityTree endpoint, you can request the accessibility tree directly when you only need the semantic structure of a page. If you need multiple page formats in a single API call, you can use the /snapshot endpoint, which also returns Markdown, HTML, and screenshots. Terminal window curl -X POST 'https://api.cloudflare.com/client/v4/accounts/&#x3C;accountId>/browser-run/accessibilityTree' \ -H 'Authorization: Bearer <apiToken>' \ -H 'Content-Type: application/json' \ -d '{ "url": "https://example.com/" }' /browser-run/accessibilityTree' \ -H 'Authorization: Bearer ' \ -H 'Content-Type: application/json' \ -d '{ "url": "https://example.com/&#x22;}&#x27;"> { " success " : true , " result " : { " accessibilityTree " : { " role " : "RootWebArea" , " name " : "Example Domain" , " children " : [ { " role " : "heading" , " name " : "Example Domain" , " level " : 1 }, { " role " : "link" , " name " : "Learn more" } ] } } } Use interestingOnly to return only semantically meaningful nodes, or root to capture the accessibility tree for a specific subtree. Refer to the /accessibilityTree documentation for usage examples and supported parameters. Resources API New to Cloudflare? Directory Sponsorships Open Source Cloudflare Research Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Cloudflare Labs Speed Test Is BGP Safe Yet? Certificate Transparency Community Community forum X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No