linkfox-zhihuiya-fulltext-image

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent Fulltext Image

Zhihuiya 专利全文附图

This skill guides you on how to retrieve fulltext images (drawings, figures, diagrams) from patent documents using the Zhihuiya patent data service, helping users access and analyze visual content within patents.
本技能将指导您如何通过Zhihuiya专利数据服务检索专利文件中的全文附图(图纸、示意图、图表),帮助用户获取并分析专利中的视觉内容。

Core Concepts

核心概念

Patent fulltext images are the figures, drawings, and diagrams embedded in patent documents. They are essential for understanding the technical details of an invention. This tool queries the Zhihuiya patent database and returns image metadata including download paths and image types for a given patent.
Lookup methods: You can look up images by either patent ID (an internal identifier) or publication number (the publicly visible patent number such as
US20230012345A1
or
CN115000000A
). At least one of these must be provided.
专利全文附图是嵌入在专利文件中的图形、图纸和图表,对于理解发明的技术细节至关重要。本工具查询Zhihuiya专利数据库,针对指定专利返回包含下载路径和图片类型的图片元数据。
查询方式:您可以通过专利ID(内部标识符)或公开号(公开可见的专利编号,例如
US20230012345A1
CN115000000A
)来查询图片。必须至少提供其中一项。

Parameter Guide

参数指南

ParameterAPI NameRequiredDescriptionExample
Patent IDpatentIdNo*Internal patent identifier8a7b6c5d-...
Publication NumberpatentNumberNo*Public patent publication/grant numberUS20230012345A1
LimitlimitNoMaximum number of images to return (max 100, default 100)50
OffsetoffsetNoPagination offset for image results0
*At least one of
patentId
or
patentNumber
must be provided.
参数API名称是否必填描述示例
专利IDpatentId否*专利内部标识符8a7b6c5d-...
公开号patentNumber否*专利公开/授权编号US20230012345A1
数量限制limit返回的最大图片数量(上限100,默认100)50
偏移量offset图片结果的分页偏移量0
*必须提供
patentId
patentNumber
中的至少一项。

Response Fields

响应字段

FieldDescription
totalTotal number of image records available
dataArray of image entries
data[].patentIdPatent identifier
data[].pnPublication/grant number
data[].fulltextImagePathURL path to download the image
data[].imageTypeType/category of the image
columnsColumn rendering metadata
costTokenToken cost of the request
typeRendering style hint
字段描述
total可用的图片记录总数
data图片条目数组
data[].patentId专利标识符
data[].pn公开/授权编号
data[].fulltextImagePath图片下载URL路径
data[].imageType图片类型/类别
columns列渲染元数据
costToken请求消耗的Token数量
type渲染样式提示

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_fulltext_image.py
directly to run queries.
本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构请参考
references/api.md
。您也可以直接执行
scripts/zhihuiya_fulltext_image.py
来运行查询。

Usage Examples

使用示例

1. Get all images for a patent by publication number
Retrieve fulltext images for patent US20230012345A1.
Parameters:
{"patentNumber": "US20230012345A1"}
2. Get images for a patent by patent ID
Fetch the drawings for patent ID abc123def456.
Parameters:
{"patentId": "abc123def456"}
3. Paginated retrieval of images
Get the first 20 images for patent CN115000000A.
Parameters:
{"patentNumber": "CN115000000A", "limit": "20", "offset": "0"}
4. Get the next page of images
Get images 21-40 for patent CN115000000A.
Parameters:
{"patentNumber": "CN115000000A", "limit": "20", "offset": "20"}
1. 通过公开号获取某专利的所有图片
检索专利US20230012345A1的全文附图。
参数:
{"patentNumber": "US20230012345A1"}
2. 通过专利ID获取某专利的图片
获取专利ID为abc123def456的图纸。
参数:
{"patentId": "abc123def456"}
3. 分页检索图片
获取专利CN115000000A的前20张图片。
参数:
{"patentNumber": "CN115000000A", "limit": "20", "offset": "0"}
4. 获取下一页图片
获取专利CN115000000A的第21-40张图片。
参数:
{"patentNumber": "CN115000000A", "limit": "20", "offset": "20"}

Display Rules

展示规则

  1. Present data clearly: Show image results in a structured table with image type, download path, and patent number
  2. Image links: Always present
    fulltextImagePath
    values as clickable links so users can view or download images directly
  3. Pagination notice: When
    total
    exceeds the number of returned results, inform the user that more images are available and offer to fetch the next page
  4. Error handling: When a query fails, explain the reason and suggest verifying the patent ID or publication number
  5. No fabrication: Never invent patent IDs, publication numbers, or image URLs -- only display data returned by the API
  6. Total count: Always mention the total number of images available for the patent
  1. 清晰呈现数据:以结构化表格展示图片结果,包含图片类型、下载路径和专利编号
  2. 图片链接:始终将
    fulltextImagePath
    的值设置为可点击链接,方便用户直接查看或下载图片
  3. 分页提示:当
    total
    超过返回结果数量时,告知用户还有更多图片可用,并提供获取下一页的选项
  4. 错误处理:查询失败时,说明原因并建议验证专利ID或公开号
  5. 禁止编造:切勿编造专利ID、公开号或图片URL,仅展示API返回的数据
  6. 总数提示:始终提及该专利可用的图片总数

Important Limitations

重要限制

  • Image limit: Each request returns a maximum of 100 images
  • Identifier required: At least one of
    patentId
    or
    patentNumber
    must be supplied
  • All parameters are strings: Even numeric values like
    limit
    and
    offset
    must be passed as strings
  • 图片数量限制:每个请求最多返回100张图片
  • 标识符必填:必须提供
    patentId
    patentNumber
    中的至少一项
  • 所有参数均为字符串:即使是
    limit
    offset
    这类数值型参数,也必须以字符串形式传递

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Requests involving patent visual content:
User SaysScenario
"Show me the drawings for patent XX"Fulltext image retrieval
"Get the figures from this patent"Fulltext image retrieval
"Download patent images for XX"Fulltext image retrieval
"What diagrams does patent XX contain"Fulltext image listing
"How many figures are in patent XX"Image count query
"Show me the technical drawings"Fulltext image retrieval
Not applicable -- Needs beyond patent fulltext images:
  • Patent text/abstract/claims search
  • Patent family or citation analysis
  • Patent legal status queries
  • Patent assignee or inventor search
  • General image search unrelated to patents
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.
适用场景 -- 涉及专利视觉内容的请求:
用户表述场景
"展示专利XX的图纸"全文附图检索
"获取该专利的示意图"全文附图检索
"下载专利XX的图片"全文附图检索
"专利XX包含哪些图表"全文附图列表查询
"专利XX有多少张示意图"图片数量查询
"展示技术图纸"全文附图检索
不适用场景 -- 超出专利全文附图范围的需求:
  • 专利文本/摘要/权利要求检索
  • 专利家族或引用分析
  • 专利法律状态查询
  • 专利申请人或发明人检索
  • 与专利无关的通用图片搜索
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不符
  3. 用户表达了对本技能的不满或赞扬
  4. 任何您认为可以改进的内容
按照
references/api.md
中的说明调用反馈API,请勿中断用户流程。

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