linkfox-zhihuiya-pdf

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent PDF Downloader

智慧芽(Zhihuiya)专利PDF下载工具

This skill guides you on how to retrieve patent PDF full-text download links from the Zhihuiya patent database, supporting lookup by patent ID or publication number.
本技能将指导您如何从智慧芽专利数据库获取专利PDF全文下载链接,支持通过patent ID(专利ID)或publication number(公开号)进行查询。

Core Concepts

核心概念

The Zhihuiya Patent PDF service provides direct download links to the full-text PDF documents of patents worldwide. You can query by patent ID or publication number (also called public announcement number), and retrieve up to 100 patents in a single request.
Lookup priority: When both
patentId
and
patentNumber
are supplied, the service uses
patentId
first. This is important to remember when both identifiers are available.
Family substitution: If a patent's own PDF is unavailable, the service can optionally return the PDF of a related family patent instead.
智慧芽专利PDF服务可提供全球专利的全文PDF文档直接下载链接。您可通过patent ID(专利ID)publication number(公开号,又称公告号)进行查询,单次请求最多可获取100项专利
查询优先级:当同时提供
patentId
patentNumber
时,服务将优先使用
patentId
。当两种标识符都存在时,请务必牢记此规则。
家族专利替代:若某专利自身的PDF不可用,服务可选择返回其关联家族专利的PDF作为替代。

Parameter Guide

参数指南

ParameterTypeRequiredDescription
patentIdstringConditionallyPatent ID(s). At least one of
patentId
or
patentNumber
must be provided. Separate multiple values with commas. Max 100 entries.
patentNumberstringConditionallyPublication/announcement number(s). At least one of
patentId
or
patentNumber
must be provided. Separate multiple values with commas. Max 100 entries.
replaceByRelatedstringNoWhether to substitute with a family patent PDF when the original is unavailable.
1
= yes,
0
= no. Defaults to no substitution.
参数类型是否必填描述
patentId字符串可选(需满足条件)专利ID。必须提供
patentId
patentNumber
中的至少一个。多个值用逗号分隔,最多支持100条。
patentNumber字符串可选(需满足条件)公开/公告号。必须提供
patentId
patentNumber
中的至少一个。多个值用逗号分隔,最多支持100条。
replaceByRelated字符串当原专利PDF不可用时,是否使用家族专利PDF替代。
1
=是,
0
=否。默认不启用替代。

How to Choose the Right Identifier

如何选择合适的标识符

  • Patent ID (
    patentId
    ): An internal numeric identifier within the Zhihuiya system. Use this when the user provides Zhihuiya-specific IDs.
  • Publication Number (
    patentNumber
    ): The public-facing patent number (e.g.,
    US20230012345A1
    ,
    CN115000000A
    ). Use this when the user provides standard patent numbers.
  • Patent ID(专利ID) (
    patentId
    ):智慧芽系统内的内部数字标识符。当用户提供智慧芽专属ID时使用此参数。
  • Publication Number(公开号) (
    patentNumber
    ):面向公众的专利编号(例如:
    US20230012345A1
    CN115000000A
    )。当用户提供标准专利编号时使用此参数。

Response Fields

响应字段

FieldDescription
totalNumber of records returned
dataArray of patent objects, each containing download information
data[].patentIdThe patent ID
data[].pnThe publication/announcement number
data[].pdfPathThe PDF full-text download URL
data[].pnRelatedPublication number of the substitute family patent (only present when family substitution is used)
costTokenTokens consumed by the request
字段描述
total返回的记录数量
data专利对象数组,每个对象包含下载信息
data[].patentId专利ID
data[].pn公开/公告号
data[].pdfPathPDF全文下载链接
data[].pnRelated替代家族专利的公开号(仅在启用家族专利替代时显示)
costToken请求消耗的Token数量

API Usage

API 使用说明

This tool calls the LinkFox tool gateway API. See
references/api.md
for calling conventions, request parameters, and response structure. You can also execute
scripts/zhihuiya_pdf_data.py
directly to run queries.
本工具调用LinkFox工具网关API。调用规范、请求参数及响应结构请参考
references/api.md
。您也可直接执行
scripts/zhihuiya_pdf_data.py
来运行查询。

Usage Examples

使用示例

1. Single Patent by Publication Number
Retrieve the PDF for patent publication number US20230012345A1.
Parameters:
{"patentNumber": "US20230012345A1"}
2. Multiple Patents by Publication Number
Download PDFs for CN115000000A, CN115000001A, and CN115000002A.
Parameters:
{"patentNumber": "CN115000000A,CN115000001A,CN115000002A"}
3. Single Patent by Patent ID
Get the full-text PDF for patent ID 12345678.
Parameters:
{"patentId": "12345678"}
4. With Family Substitution Enabled
Download the PDF for EP4000000A1. If it is unavailable, use a family patent PDF instead.
Parameters:
{"patentNumber": "EP4000000A1", "replaceByRelated": "1"}
5. Batch Download by Patent IDs
Retrieve PDFs for patent IDs 11111111, 22222222, 33333333.
Parameters:
{"patentId": "11111111,22222222,33333333"}
1. 通过公开号获取单个专利
Retrieve the PDF for patent publication number US20230012345A1.
参数:
{"patentNumber": "US20230012345A1"}
2. 通过公开号获取多个专利
Download PDFs for CN115000000A, CN115000001A, and CN115000002A.
参数:
{"patentNumber": "CN115000000A,CN115000001A,CN115000002A"}
3. 通过专利ID获取单个专利
Get the full-text PDF for patent ID 12345678.
参数:
{"patentId": "12345678"}
4. 启用家族专利替代
Download the PDF for EP4000000A1. If it is unavailable, use a family patent PDF instead.
参数:
{"patentNumber": "EP4000000A1", "replaceByRelated": "1"}
5. 通过专利ID批量下载
Retrieve PDFs for patent IDs 11111111, 22222222, 33333333.
参数:
{"patentId": "11111111,22222222,33333333"}

Display Rules

展示规则

  1. Present download links clearly: For each patent, show the publication number and its PDF download link in a clean table or list format.
  2. Highlight substitutions: If a PDF was provided via family patent substitution, explicitly note this and show the
    pnRelated
    value so the user knows which family patent was used.
  3. Batch results: When multiple patents are returned, present them in a table with columns: Publication Number, Patent ID, PDF Link, and Substitution Note (if applicable).
  4. Error handling: When a query fails or returns no results, explain the reason and suggest the user verify the patent ID or publication number. If
    replaceByRelated
    was not enabled, suggest enabling it as an alternative.
  5. No PDF available: If a patent entry is returned without a
    pdfPath
    , inform the user that the PDF is not available and suggest enabling family substitution.
  1. 清晰展示下载链接:针对每个专利,以简洁的表格或列表格式展示公开号及其PDF下载链接。
  2. 突出显示替代情况:若PDF是通过家族专利替代获取的,需明确标注这一点并显示
    pnRelated
    值,让用户了解使用的是哪个家族专利。
  3. 批量结果展示:当返回多个专利时,以表格形式展示,列包括:公开号、专利ID、PDF链接、替代说明(如有)。
  4. 错误处理:当查询失败或无结果返回时,说明原因并建议用户核实专利ID或公开号。若未启用
    replaceByRelated
    ,可建议启用该选项作为替代方案。
  5. 无可用PDF:若返回的专利条目不含
    pdfPath
    ,需告知用户该专利PDF不可用,并建议启用家族专利替代。

Important Limitations

重要限制

  • Batch limit: A maximum of 100 patents per request.
  • Identifier requirement: At least one of
    patentId
    or
    patentNumber
    must be provided; the request will fail if both are empty.
  • Priority rule: When both identifiers are provided,
    patentId
    takes precedence over
    patentNumber
    .
  • PDF availability: Not all patents have PDFs available. Use the
    replaceByRelated
    option to fall back to family patents.
  • 批量限制:单次请求最多支持100项专利。
  • 标识符要求:必须提供
    patentId
    patentNumber
    中的至少一个;若两者均为空,请求将失败。
  • 优先级规则:当同时提供两种标识符时,
    patentId
    优先级高于
    patentNumber
  • PDF可用性:并非所有专利都有可用的PDF。可使用
    replaceByRelated
    选项切换至家族专利。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent PDF document retrieval tasks:
User SaysScenario
"Download the PDF for patent XX"Single patent PDF retrieval
"Get full-text documents for these patents"Batch patent PDF download
"I need the PDF for publication number XX"Lookup by publication number
"Can I get the patent document even if it's not directly available"Family substitution scenario
"Batch export patent PDFs"Multi-patent batch download
Not applicable -- Needs beyond patent PDF retrieval:
  • Patent search or discovery (finding patents by keyword, assignee, etc.)
  • Patent citation or legal status analysis
  • Patent claim interpretation or translation
  • Patent portfolio analytics or landscape mapping
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
适用场景 -- 专利PDF文档检索任务:
用户表述场景
"下载专利XX的PDF"单个专利PDF检索
"获取这些专利的全文文档"批量专利PDF下载
"我需要公开号为XX的专利PDF"通过公开号查询
"如果专利文档无法直接获取,我还能拿到吗?"家族专利替代场景
"批量导出专利PDF"多专利批量下载
不适用场景 -- 超出专利PDF检索的需求:
  • 专利搜索或发现(通过关键词、申请人等查找专利)
  • 专利引用或法律状态分析
  • 专利权利要求解读或翻译
  • 专利组合分析或态势绘制
反馈机制:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 本技能的结果不符合用户意图
  3. 用户对本技能表达不满或赞赏
  4. 任何您认为可以改进的内容
请按照
references/api.md
中的指定方式调用反馈API,请勿打断用户的操作流程。

如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills