Skill flagged — review recommended

ClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.

coze-web-fetch

v0.1.0

Fetch and extract content from URLs using coze-coding-dev-sdk. Supports web pages, PDF, Office documents (doc/docx/ppt/pptx/xls/xlsx/csv), text files, e-book...

0· 404· 2 versions· 4 current· 5 all-time· Updated 18h ago· MIT-0

Install

openclaw skills install coze-web-fetch

Coze Web Fetch

Fetch and extract structured content from any URL using coze-coding-dev-sdk. Returns text, images, and links in various output formats.

Quick Start

Basic Fetch

npx ts-node {baseDir}/scripts/fetch.ts -u "https://example.com/article"

Multiple URLs

npx ts-node {baseDir}/scripts/fetch.ts \
  -u "https://example.com/page1" \
  -u "https://example.com/page2"

Output as Markdown

npx ts-node {baseDir}/scripts/fetch.ts \
  -u "https://docs.python.org/3/tutorial/" \
  --format markdown

Output as JSON

npx ts-node {baseDir}/scripts/fetch.ts \
  -u "https://example.com/document.pdf" \
  --format json

Text Only (No Images/Links)

npx ts-node {baseDir}/scripts/fetch.ts \
  -u "https://example.com/article" \
  --text-only

Script Options

OptionDescription
-u, --url <url>URL to fetch (required, can be repeated)
--format <fmt>json, text, markdown (default: text)
--text-onlyExtract text content only
--helpShow help message

Supported Document Formats

FormatExtensions
PDF.pdf
Office Documents.doc, .docx, .ppt, .pptx, .xls, .xlsx, .csv
Text Files.txt, .text
E-books.epub, .mobi
XML.xml
Images.jpg, .png, .gif, .webp, etc.
Web Pages.html, .htm, or any URL

Output Formats

Text (default)

============================================================
FETCHED CONTENT
============================================================
Title: Example Article
URL: https://example.com/article

------------------------------------------------------------
CONTENT
------------------------------------------------------------
[TEXT] This is the main article content...

[IMAGE] https://example.com/image.jpg

[LINK] Related Article -> https://example.com/related

Markdown

# Example Article

**URL**: https://example.com/article

---

## Content

This is the main article content...

![Image](https://example.com/image.jpg)

- [Related Article](https://example.com/related)

JSON

Raw API response with full content structure.

Content Types

The fetcher extracts three types of content:

TypeDescription
textExtracted text content from the page
imageImage URLs with display information
linkHyperlinks found in the content

Notes

  • Use --text-only for cleaner output when you only need text
  • PDF and Office documents are automatically parsed
  • Images are re-signed for secure access
  • Multiple URLs can be fetched in a single command

Version tags

latestvk97e8qfvefajvvnzvg6r99cmh584624e

Runtime requirements

🦞 Clawdis
Binsnpx