linkfox-zhihuiya-fulltext-image
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseZhihuiya 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 or ). At least one of these must be provided.
US20230012345A1CN115000000A专利全文附图是嵌入在专利文件中的图形、图纸和图表,对于理解发明的技术细节至关重要。本工具查询Zhihuiya专利数据库,针对指定专利返回包含下载路径和图片类型的图片元数据。
查询方式:您可以通过专利ID(内部标识符)或公开号(公开可见的专利编号,例如或)来查询图片。必须至少提供其中一项。
US20230012345A1CN115000000AParameter Guide
参数指南
| Parameter | API Name | Required | Description | Example |
|---|---|---|---|---|
| Patent ID | patentId | No* | Internal patent identifier | 8a7b6c5d-... |
| Publication Number | patentNumber | No* | Public patent publication/grant number | US20230012345A1 |
| Limit | limit | No | Maximum number of images to return (max 100, default 100) | 50 |
| Offset | offset | No | Pagination offset for image results | 0 |
*At least one oforpatentIdmust be provided.patentNumber
| 参数 | API名称 | 是否必填 | 描述 | 示例 |
|---|---|---|---|---|
| 专利ID | patentId | 否* | 专利内部标识符 | 8a7b6c5d-... |
| 公开号 | patentNumber | 否* | 专利公开/授权编号 | US20230012345A1 |
| 数量限制 | limit | 否 | 返回的最大图片数量(上限100,默认100) | 50 |
| 偏移量 | offset | 否 | 图片结果的分页偏移量 | 0 |
*必须提供或patentId中的至少一项。patentNumber
Response Fields
响应字段
| Field | Description |
|---|---|
| total | Total number of image records available |
| data | Array of image entries |
| data[].patentId | Patent identifier |
| data[].pn | Publication/grant number |
| data[].fulltextImagePath | URL path to download the image |
| data[].imageType | Type/category of the image |
| columns | Column rendering metadata |
| costToken | Token cost of the request |
| type | Rendering 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 for calling conventions, request parameters, and response structure. You can also execute directly to run queries.
references/api.mdscripts/zhihuiya_fulltext_image.py本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构请参考。您也可以直接执行来运行查询。
references/api.mdscripts/zhihuiya_fulltext_image.pyUsage 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
展示规则
- Present data clearly: Show image results in a structured table with image type, download path, and patent number
- Image links: Always present values as clickable links so users can view or download images directly
fulltextImagePath - Pagination notice: When exceeds the number of returned results, inform the user that more images are available and offer to fetch the next page
total - Error handling: When a query fails, explain the reason and suggest verifying the patent ID or publication number
- No fabrication: Never invent patent IDs, publication numbers, or image URLs -- only display data returned by the API
- Total count: Always mention the total number of images available for the patent
- 清晰呈现数据:以结构化表格展示图片结果,包含图片类型、下载路径和专利编号
- 图片链接:始终将的值设置为可点击链接,方便用户直接查看或下载图片
fulltextImagePath - 分页提示:当超过返回结果数量时,告知用户还有更多图片可用,并提供获取下一页的选项
total - 错误处理:查询失败时,说明原因并建议验证专利ID或公开号
- 禁止编造:切勿编造专利ID、公开号或图片URL,仅展示API返回的数据
- 总数提示:始终提及该专利可用的图片总数
Important Limitations
重要限制
- Image limit: Each request returns a maximum of 100 images
- Identifier required: At least one of or
patentIdmust be suppliedpatentNumber - All parameters are strings: Even numeric values like and
limitmust be passed as stringsoffset
- 图片数量限制:每个请求最多返回100张图片
- 标识符必填:必须提供或
patentId中的至少一项patentNumber - 所有参数均为字符串:即使是和
limit这类数值型参数,也必须以字符串形式传递offset
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable -- Requests involving patent visual content:
| User Says | Scenario |
|---|---|
| "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:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
适用场景 -- 涉及专利视觉内容的请求:
| 用户表述 | 场景 |
|---|---|
| "展示专利XX的图纸" | 全文附图检索 |
| "获取该专利的示意图" | 全文附图检索 |
| "下载专利XX的图片" | 全文附图检索 |
| "专利XX包含哪些图表" | 全文附图列表查询 |
| "专利XX有多少张示意图" | 图片数量查询 |
| "展示技术图纸" | 全文附图检索 |
不适用场景 -- 超出专利全文附图范围的需求:
- 专利文本/摘要/权利要求检索
- 专利家族或引用分析
- 专利法律状态查询
- 专利申请人或发明人检索
- 与专利无关的通用图片搜索
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能结果与用户意图不符
- 用户表达了对本技能的不满或赞扬
- 任何您认为可以改进的内容
按照中的说明调用反馈API,请勿中断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。