linkfox-zhihuiya-simple-bibliography

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent Simple Bibliography

智慧芽(PatSnap)专利简要著录数据

This skill guides you on how to query simple bibliographic data for patents using the Zhihuiya patent database, helping users retrieve structured patent metadata efficiently.
本技能将指导您如何使用智慧芽专利数据库查询专利简要著录数据,帮助用户高效检索结构化专利元数据。

Core Concepts

核心概念

The Zhihuiya Simple Bibliography tool retrieves basic bibliographic (front-page) information for patents. Given one or more patent IDs or publication numbers, it returns structured metadata including title, abstract, applicants, inventors, assignees, classification codes, filing dates, priority claims, and citation references.
Lookup modes: You can look up patents by either
patentId
(Zhihuiya internal patent ID) or
patentNumber
(public publication/grant number). If both are supplied,
patentId
takes priority. Multiple values are separated by commas, with a maximum of 100 per request.
智慧芽简要著录工具用于检索专利的基础著录(首页)信息。提供一个或多个专利ID或公开号,即可返回包含标题、摘要、申请人、发明人、专利权人、分类号、申请日、优先权声明、引用文献等在内的结构化元数据。
检索模式:您可以通过
patentId
(智慧芽内部专利ID)或
patentNumber
(公开/授权号)检索专利。若同时提供两个参数,
patentId
优先生效。多个值用逗号分隔,单次请求最多支持100个。

Parameter Guide

参数指南

ParameterTypeRequiredDescription
patentIdstringConditionallyZhihuiya internal patent ID. Comma-separated for multiple values, max 100. At least one of
patentId
or
patentNumber
must be provided.
patentNumberstringConditionallyPublic publication/grant number (e.g.,
US11234567B2
,
CN115000000A
). Comma-separated for multiple values, max 100. At least one of
patentId
or
patentNumber
must be provided.
Priority rule: When both
patentId
and
patentNumber
are present, the API uses
patentId
and ignores
patentNumber
.
参数类型是否必填描述
patentIdstring条件必填智慧芽内部专利ID,多个值用逗号分隔,最多100个。必须提供
patentId
patentNumber
中的至少一个。
patentNumberstring条件必填公开/授权号(例如:
US11234567B2
CN115000000A
),多个值用逗号分隔,最多100个。必须提供
patentId
patentNumber
中的至少一个。
优先级规则:当同时提供
patentId
patentNumber
时,API将使用
patentId
并忽略
patentNumber

Response Data Fields

响应数据字段

FieldAPI NameDescription
Patent IDpatentIdZhihuiya internal patent identifier
TitletitlePatent title
AbstractabstractContentPatent abstract text
Publication NumberpublicationNumberPublication number
Publication/Grant NumberpnFull publication/grant number
Country CodecountryCountry code of the patent
Publication CountrypublicationCountryCountry where the patent was published
Publication DatepublicationDatePublication date
Publication KindpublicationKindKind code of the publication
Patent TypepatentTypeType of patent (e.g., invention, utility model, design)
Kind CodekindPatent kind code
Application NumberapplicationNoApplication number
Application DateapplicationDateApplication filing date
ApplicantsapplicantsList of applicants
InventorsinventorsList of inventors
AssigneesassigneesList of patent assignees/owners
Assignee AddressesassigneeAddressesList of assignee addresses
IPC MainipcMainMain IPC classification code
IPC FurtheripcFurtherAdditional IPC classification codes
CPC MaincpcMainMain CPC classification code
CPC FurthercpcFurtherAdditional CPC classification codes
LOClocLocarno classification codes (design patents)
GBCgbcGBC classification codes
Priority ClaimspriorityClaimsList of priority claim entries
PCT Application NopctApplicationNoPCT international application number
PCT Filing DatepctFilingDatePCT international filing date
PCT Entry DatepctEntryDatePCT national phase entry date
Cited PatentscitedPatentsList of cited patent references
Cited Non-PatentscitedNonPatentsList of cited non-patent literature
字段API名称描述
专利IDpatentId智慧芽内部专利标识符
专利标题title专利标题
专利摘要abstractContent专利摘要文本
公开号publicationNumber公开号
完整公开/授权号pn完整公开/授权号
国家代码country专利所属国家代码
公开国家publicationCountry专利公开国家
公开日期publicationDate公开日期
公开类型代码publicationKind公开类型代码
专利类型patentType专利类型(例如:发明、实用新型、外观设计)
类型代码kind专利类型代码
申请号applicationNo申请号
申请日期applicationDate专利申请日
申请人applicants申请人列表
发明人inventors发明人列表
专利权人assignees专利权人/所有者列表
专利权人地址assigneeAddresses专利权人地址列表
主IPC分类号ipcMain主IPC分类号
附加IPC分类号ipcFurther附加IPC分类号
主CPC分类号cpcMain主CPC分类号
附加CPC分类号cpcFurther附加CPC分类号
洛迦诺分类号loc洛迦诺分类号(外观设计专利)
GBC分类号gbcGBC分类号
优先权声明priorityClaims优先权声明条目列表
PCT申请号pctApplicationNoPCT国际申请号
PCT申请日pctFilingDatePCT国际申请日
PCT进入国家阶段日期pctEntryDatePCT进入国家阶段日期
引用专利citedPatents引用专利文献列表
引用非专利文献citedNonPatents引用非专利文献列表

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

Usage Examples

使用示例

1. Look up a single patent by publication number
User: "Show me the bibliographic info for patent US11234567B2."
Action: Call with patentNumber = "US11234567B2"
2. Look up multiple patents by publication number
User: "Get the basic info for CN115000000A, EP4000000A1, and JP2023100000A."
Action: Call with patentNumber = "CN115000000A,EP4000000A1,JP2023100000A"
3. Look up patents by Zhihuiya patent ID
User: "Retrieve bibliography for patent IDs abc123 and def456."
Action: Call with patentId = "abc123,def456"
4. Retrieve inventor and applicant information
User: "Who are the inventors and applicants for patent US20230001234A1?"
Action: Call with patentNumber = "US20230001234A1", then extract the inventors and applicants fields from the response.
5. Check patent classification codes
User: "What IPC and CPC codes does patent EP3999999B1 have?"
Action: Call with patentNumber = "EP3999999B1", then present ipcMain, ipcFurther, cpcMain, and cpcFurther from the response.
6. Get patent abstract and citation references
User: "Show me the abstract and cited patents for CN114000000B."
Action: Call with patentNumber = "CN114000000B", then display abstractContent and citedPatents.
1. 通过公开号检索单个专利
User: "Show me the bibliographic info for patent US11234567B2."
Action: Call with patentNumber = "US11234567B2"
2. 通过公开号检索多个专利
User: "Get the basic info for CN115000000A, EP4000000A1, and JP2023100000A."
Action: Call with patentNumber = "CN115000000A,EP4000000A1,JP2023100000A"
3. 通过智慧芽专利ID检索专利
User: "Retrieve bibliography for patent IDs abc123 and def456."
Action: Call with patentId = "abc123,def456"
4. 获取发明人及申请人信息
User: "Who are the inventors and applicants for patent US20230001234A1?"
Action: Call with patentNumber = "US20230001234A1", then extract the inventors and applicants fields from the response.
5. 查询专利分类号
User: "What IPC and CPC codes does patent EP3999999B1 have?"
Action: Call with patentNumber = "EP3999999B1", then present ipcMain, ipcFurther, cpcMain, and cpcFurther from the response.
6. 获取专利摘要及引用文献
User: "Show me the abstract and cited patents for CN114000000B."
Action: Call with patentNumber = "CN114000000B", then display abstractContent and citedPatents.

Display Rules

展示规则

  1. Present data clearly: Show bibliographic results in well-structured tables or grouped sections. For a single patent, use a key-value layout. For multiple patents, use a table with the most relevant columns.
  2. Selective display: When results contain many fields, prioritize showing title, publication number, applicants, inventors, application date, publication date, IPC/CPC main codes, and abstract. Show additional fields only when the user specifically asks.
  3. List fields: For array fields (inventors, applicants, assignees, classification codes, citations), present them as comma-separated values or bulleted lists depending on length.
  4. Empty fields: Omit fields that are null or empty from the display rather than showing blank entries.
  5. Error handling: When a query fails, explain the reason based on the error message and suggest the user verify the patent number or ID format.
  6. Batch result notice: When querying many patents at once, remind the user that the maximum is 100 per request.
  1. 清晰呈现数据:将著录结果以结构清晰的表格或分组章节展示。单个专利采用键值对布局,多个专利则使用包含核心列的表格。
  2. 选择性展示:当结果包含多个字段时,优先展示标题、公开号、申请人、发明人、申请日、公开日、主IPC/CPC分类号及摘要。仅当用户明确要求时,才展示额外字段。
  3. 列表式展示字段:对于数组类型字段(发明人、申请人、专利权人、分类号、引用文献),根据长度以逗号分隔值或项目符号列表呈现。
  4. 空字段处理:省略为空或null的字段,不显示空白条目。
  5. 错误处理:查询失败时,根据错误信息说明原因,并建议用户核实专利号或ID格式。
  6. 批量结果提示:当批量查询多个专利时,提醒用户单次请求最多支持100个。

Important Limitations

重要限制

  • Maximum batch size: Up to 100 patent IDs or publication numbers per request.
  • At least one identifier required: Either
    patentId
    or
    patentNumber
    must be provided; omitting both will cause an error.
  • patentId takes priority: If both parameters are supplied, only
    patentId
    is used.
  • Data scope: This tool returns simple bibliographic data only. It does not return full-text claims, detailed descriptions, legal status, or patent family information.
  • 批量查询上限:单次请求最多支持100个专利ID或公开号。
  • 必须提供至少一个标识符:必须提供
    patentId
    patentNumber
    中的一个,否则会触发错误。
  • patentId优先:若同时提供两个参数,仅
    patentId
    会被使用。
  • 数据范围:本工具仅返回简要著录数据,不返回完整权利要求书、详细说明书、法律状态或专利家族信息。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent bibliographic data retrieval:
User SaysScenario
"Look up patent XX" / "Get info for patent XX"Single patent bibliography lookup
"Who invented patent XX" / "Who is the applicant"Inventor / applicant retrieval
"What's the IPC code for XX" / "Classification of XX"Classification code lookup
"Show me the abstract of XX"Abstract retrieval
"When was patent XX filed" / "Publication date of XX"Date information lookup
"What patents does XX cite"Citation reference lookup
"Get bibliographic data for these patents: A, B, C"Batch bibliography query
"Patent basic info" / "Patent front page data"General bibliography retrieval
Not applicable -- Needs beyond simple bibliographic data:
  • Full-text patent claims or detailed description
  • Patent legal status or prosecution history
  • Patent family / equivalents analysis
  • Patent valuation or landscaping
  • Freedom-to-operate or infringement analysis
  • Patent search by keyword or semantic query (this tool requires specific patent identifiers)
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的申请人是谁"发明人/申请人信息检索
"专利XX的IPC分类号是什么" / "专利XX的分类信息"分类号查询
"展示专利XX的摘要"摘要信息检索
"专利XX的申请日期是什么时候" / "专利XX的公开日期"日期信息查询
"专利XX引用了哪些专利"引用文献查询
"获取这些专利的著录数据:A、B、C"批量著录信息查询
"专利基本信息" / "专利首页数据"通用著录信息检索
不适用场景 -- 超出简要著录数据的需求:
  • 专利完整权利要求书或详细说明书
  • 专利法律状态或审查历史
  • 专利家族/等同专利分析
  • 专利估值或布局分析
  • 自由实施或侵权分析
  • 通过关键词或语义检索专利(本工具需要特定专利标识符)
反馈机制
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不匹配
  3. 用户表达了对本技能的不满或赞赏
  4. 任何您认为可以改进的内容
请按照
references/api.md
中的说明调用反馈API,请勿中断用户流程。

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