linkfox-eureka-abstract-image

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Eureka Patent Abstract Image

Eureka专利摘要附图检索

This skill guides you on how to retrieve abstract images (drawings) from the Eureka patent data platform, helping users quickly obtain the illustrative figures associated with specific patents.
本技能将指导您如何从Eureka专利数据平台检索摘要附图(图纸),帮助用户快速获取特定专利对应的说明性图形。

Core Concepts

核心概念

Abstract images (abstract drawings) are the representative figures attached to a patent document's abstract section. They provide a quick visual overview of the invention. This tool queries the Eureka patent platform and returns download paths for these images.
Lookup logic: You must provide at least one of two identifiers -- a patent ID or a publication number. If both are provided, patent ID takes priority. You can query up to 100 patents in a single request by separating values with commas.
摘要附图(abstract drawings)是附在专利文件摘要部分的代表性图形,可让用户快速直观地了解发明内容。本工具可查询Eureka专利平台,并返回这些附图的下载路径。
检索逻辑:您必须提供以下两种标识符中的至少一种——专利ID(patentId)或公开号(publication number)。若同时提供两者,将优先使用专利ID。单次请求最多可查询100项专利,多个值用英文逗号分隔。

Parameter Guide

参数指南

ParameterAPI NameRequiredDescriptionExample
Patent IDpatentIdConditionally (one of the two must be provided)Internal patent identifier; multiple values separated by commas, max 1005e6f7a8b9c
Publication NumberpatentNumberConditionally (one of the two must be provided)Patent publication/announcement number; multiple values separated by commas, max 100CN115059423A, US11234567B2
  • At least one of
    patentId
    or
    patentNumber
    must be supplied.
  • If both are supplied,
    patentId
    takes precedence.
  • Multiple values are separated by commas (English commas), with an upper limit of 100.
参数API名称是否必填描述示例
专利IDpatentId条件必填(二者选其一)专利内部标识符;多个值用英文逗号分隔,最多100个5e6f7a8b9c
公开号patentNumber条件必填(二者选其一)专利公开/公告号;多个值用英文逗号分隔,最多100个CN115059423A, US11234567B2
  • 必须提供
    patentId
    patentNumber
    中的至少一个。
  • 若同时提供两者,
    patentId
    优先级更高。
  • 多个值用英文逗号分隔,上限为100个。

Response Fields

响应字段

FieldAPI NameDescription
Patent IDpatentIdThe internal patent identifier
Publication NumberpnThe publication/announcement number
Abstract Drawing PathabstractDrawingPathURL path to the abstract image file
TotaltotalTotal number of records returned
Cost TokencostTokenTokens consumed by the query
字段API名称描述
专利IDpatentId专利内部标识符
公开号pn专利公开/公告号
摘要附图路径abstractDrawingPath摘要附图文件的URL路径
总数total返回的记录总数
消耗TokencostToken查询消耗的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/eureka_abstract_image.py
directly to run queries.
本工具调用LinkFox工具网关API。调用规范、请求参数及响应结构请参阅
references/api.md
。您也可以直接执行
scripts/eureka_abstract_image.py
来运行查询。

Usage Examples

使用示例

1. Single patent lookup by publication number
Retrieve the abstract image for patent CN115059423A.
2. Multiple patents lookup by publication number
Get abstract drawings for patents US11234567B2, EP3456789A1, and CN115059423A.
3. Lookup by patent ID
Fetch the abstract image for patent ID 5e6f7a8b9c.
4. Batch lookup with mixed identifiers
I have the following patent IDs: abc123, def456. Please get their abstract images.
1. 通过公开号检索单个专利的摘要附图
Retrieve the abstract image for patent CN115059423A.
2. 通过公开号批量检索多个专利的摘要附图
Get abstract drawings for patents US11234567B2, EP3456789A1, and CN115059423A.
3. 通过专利ID检索摘要附图
Fetch the abstract image for patent ID 5e6f7a8b9c.
4. 混合标识符批量检索
I have the following patent IDs: abc123, def456. Please get their abstract images.

Display Rules

展示规则

  1. Show the image: When the response includes an
    abstractDrawingPath
    , display the image directly using Markdown image syntax so the user can see the drawing inline.
  2. Patent identification: Always show the publication number (
    pn
    ) alongside each image so the user knows which patent each drawing belongs to.
  3. Missing images: If a patent has no abstract drawing (empty
    abstractDrawingPath
    ), explicitly inform the user that no abstract image is available for that patent.
  4. Batch results: When multiple patents are queried, present results in a clear, organized list or table format.
  5. Error handling: When a query fails, explain the reason based on the response and suggest the user verify their patent IDs or publication numbers.
  1. 显示图片:当响应包含
    abstractDrawingPath
    时,使用Markdown图片语法直接展示图片,让用户可在线查看附图。
  2. 专利标识:每张图片旁需同时显示公开号(
    pn
    ),以便用户知晓附图对应的专利。
  3. 缺失图片处理:若某专利无摘要附图(
    abstractDrawingPath
    为空),需明确告知用户该专利暂无摘要附图。
  4. 批量结果展示:当查询多个专利时,需以清晰、有条理的列表或表格形式呈现结果。
  5. 错误处理:查询失败时,需根据响应信息说明原因,并建议用户核实专利ID或公开号。

Important Limitations

重要限制

  • Up to 100 patents per request: The maximum number of patent IDs or publication numbers in a single call is 100.
  • At least one identifier required: Either
    patentId
    or
    patentNumber
    must be provided; the request will fail if both are empty.
  • Patent ID priority: When both
    patentId
    and
    patentNumber
    are provided, the system uses
    patentId
    and ignores
    patentNumber
    .
  • Data coverage: Results depend on the Eureka patent platform's database coverage; some very recent filings may not yet be reflected.
  • 单次请求最多100项专利:单次调用中,专利ID或公开号的最大数量为100个。
  • 必须提供至少一个标识符
    patentId
    patentNumber
    二者必须提供其一;若两者均为空,请求将失败。
  • 专利ID优先级更高:当同时提供
    patentId
    patentNumber
    时,系统将使用
    patentId
    并忽略
    patentNumber
  • 数据覆盖范围:结果取决于Eureka专利平台的数据库覆盖情况,部分最新提交的专利可能尚未收录。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent abstract image retrieval:
User SaysScenario
"Show me the abstract image for patent XX"Single patent image lookup
"Get the drawings for these patents"Batch patent image lookup
"What does the patent figure look like"Abstract drawing retrieval
"Retrieve patent illustrations for XX"Image download path retrieval
"I need the abstract drawing for publication number XX"Lookup by publication number
Not applicable -- Needs beyond abstract image retrieval:
  • Full patent text or claims analysis
  • Patent search by keyword or classification
  • Patent legal status or family information
  • Patent citation or prior art analysis
  • Patent valuation or infringement analysis
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, visit LinkFox Skills.
适用场景——专利摘要附图检索:
用户表述场景
"请展示专利XX的摘要附图"单个专利附图检索
"获取这些专利的附图"批量专利附图检索
"专利附图是什么样的"摘要附图检索
"检索专利XX的说明图"附图下载路径获取
"我需要公开号XX的摘要附图"通过公开号检索
不适用场景——超出摘要附图检索的需求:
  • 全文专利文本或权利要求分析
  • 通过关键词或分类进行专利检索
  • 专利法律状态或同族信息查询
  • 专利引用或现有技术分析
  • 专利估值或侵权分析

反馈:

当出现以下任一情况时,请自动检测并通过Feedback API提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不匹配
  3. 用户表达了对本技能的不满或赞扬
  4. 任何您认为可以改进的地方
请按照
references/api.md
中的指定方式调用反馈API,请勿中断用户流程。

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