Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

instaparserinstaparser 文档

Agent Skill

instaparser 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,398

周安装

187

GitHub Stars

1

下载量

1,541
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instaparser(instaparser 文档)
来源仓库:https://github.com/donohue/instaparser
安装命令:
openclaw skills install instaparser
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install instaparser

简介

用于解析网页内容和 PDF 文档,提取结构化文本与摘要。

  • 适合信息筛选、知识库构建和文档预处理任务。
  • 支持 URL 输入,可自动生成内容概览和关键信息索引。
  • 安装命令:openclaw skills install instaparser,适用于 OpenClaw。
  • 注意网络访问权限设置,避免触发反爬机制或访问限制。

SKILL.md

name
instaparser-api
description
Use the Instaparser API to parse articles, PDFs, and generate summaries from URLs. Trigger when users want to extract content from web pages, parse PDF documents, or summarize articles using the Instaparser service.
metadata
openclaw
requires
env
primaryEnv
INSTAPARSER_API_KEY

Instaparser API Skill

Use this skill when the user wants to interact with the Instaparser API to parse articles, PDFs, or generate summaries.

Requirements

  • Network access: This skill makes HTTPS requests to https://www.instaparser.com/api/. The user must grant network access when prompted.
  • API key: All requests require an Instaparser API key set as the INSTAPARSER_API_KEY environment variable.

Getting an API key

  1. Go to https://www.instaparser.com and create an account.
  2. After signing in, navigate to the API section of your dashboard to generate an API key.
  3. Set the key in your environment:
   export INSTAPARSER_API_KEY="your_api_key_here"
  1. The free Trial plan includes a limited number of monthly credits. Paid plans are available for higher usage.

Authentication

All API requests require a Bearer token. The API key should be provided via the INSTAPARSER_API_KEY environment variable, or the user can provide it directly.

Authorization: Bearer $INSTAPARSER_API_KEY

API Endpoints

Article API

POST https://www.instaparser.com/api/1/article

Parse an article from a URL and extract its title, author, body content, images, and more. Uses 1 credit per call.

Request body (JSON):

ParameterTypeRequiredDescription
urlstringYesURL of the article to parse
contentstringNoRaw HTML content to parse instead of fetching from url
outputstringNo"html" (default) or "text"
use_cacheboolNoWhether to use cache. Defaults to true

Example:

curl -X POST https://www.instaparser.com/api/1/article \
  -H "Authorization: Bearer $INSTAPARSER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/article", "output": "text"}'

Response fields:

FieldDescription
urlCanonical URL
titleArticle title
site_nameWebsite name
authorAuthor name
datePublished date (UNIX timestamp)
descriptionArticle description
thumbnailThumbnail image URL
htmlHTML body (when output is "html")
textPlain text body (when output is "text")
wordsWord count
is_rtltrue if Arabic or Hebrew
imagesArray of image URLs
videosArray of video URLs

PDF API

Parse PDFs from a URL (GET) or by uploading a file (POST). Uses 5 credits per page.

Parse from URL

GET https://www.instaparser.com/api/1/pdf

ParameterTypeRequiredDescription
urlstringYesURL of the PDF to parse
outputstringNo"html" (default) or "text"
use_cacheboolNoWhether to use cache. Defaults to true
curl "https://www.instaparser.com/api/1/pdf?url=https://example.com/report.pdf&output=text" \
  -H "Authorization: Bearer $INSTAPARSER_API_KEY"

Upload a file

POST https://www.instaparser.com/api/1/pdf

Send as multipart form-data with a file field.

curl -X POST https://www.instaparser.com/api/1/pdf \
  -H "Authorization: Bearer $INSTAPARSER_API_KEY" \
  -F "file=@report.pdf" \
  -F "output=text"

Response fields: Same as Article API.


Summary API

POST https://www.instaparser.com/api/1/summary

Generate an AI-powered summary with key sentences. Uses 10 credits per call.

Request body (JSON):

ParameterTypeRequiredDescription
urlstringYesURL of the article to summarize
contentstringNoHTML content to parse instead of fetching from URL
use_cacheboolNoWhether to use cache. Defaults to true
streamboolNoStream the response. Defaults to false
curl -X POST https://www.instaparser.com/api/1/summary \
  -H "Authorization: Bearer $INSTAPARSER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/article"}'

Response fields:

FieldDescription
key_sentencesArray of key sentences extracted from the article
summaryConcise summary of the article

Status Codes

CodeReason
200Success
400Parameter missing or malformed
401API key is invalid
403Account suspended (payment error)
409Exceeded monthly credits (Trial plan only)
412Upstream parsing error
429Rate limit exceeded

SDK Usage

Python:

from instaparser import InstaparserClient

client = InstaparserClient(api_key="YOUR_API_KEY")

# Article
article = client.Article(url="https://example.com/article", output="text")

# PDF
pdf = client.PDF(url="https://example.com/report.pdf")

# Summary
summary = client.Summary(url="https://example.com/article")

JavaScript:

import { InstaparserClient } from 'instaparser-api';

const client = new InstaparserClient({ apiKey: 'YOUR_API_KEY' });

// Article
const article = await client.article({ url: 'https://example.com/article', output: 'text' });

// PDF
const pdf = await client.pdf({ url: 'https://example.com/report.pdf' });

// Summary
const summary = await client.summary({ url: 'https://example.com/article' });

Instructions

When the user asks to parse an article, PDF, or generate a summary:

  1. Check if INSTAPARSER_API_KEY is set in the environment. If not, ask the user for their API key.
  2. Use curl via the Bash tool to make the API request.
  3. For article parsing, default to output: "text" unless the user specifically wants HTML.
  4. For PDF parsing from a local file, use the multipart form-data POST method.
  5. For PDF parsing from a URL, use the GET method with query parameters.
  6. Present the results clearly — show title, author, word count, and the extracted content.
  7. For summaries, display both the overview/summary and the key sentences.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.06%
按下载量换算1,419

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills