USPTO 工具

配置文件uspto_tools.json 工具类型:本地 工具数量:6

此页面包含 uspto_tools.json 配置文件中定义的所有工具。

可用工具

**get_associated_documents_metadata**(类型:USPTOOpenDataPortalTool)

获取与应用程序相关的文档元数据,例如出版物和资助项目。

get_associated_documents_metadata 工具规范

工具信息:

  • 名称get_associated_documents_metadata

  • 类型USPTOOpenDataPortalTool

  • 描述:获取与应用程序相关的文档元数据,例如出版物和资助信息。

参数:

  • applicationNumberText (string) (required) The application number of the patent.

示例用法:

query = {
    "name": "get_associated_documents_metadata",
    "arguments": {
        "applicationNumberText": "example_value"
    }
}
result = tu.run(query)

**get_patent_application_metadata**(类型:USPTOOpenDataPortalTool)

根据申请号仅检索特定专利申请的元数据。

get_patent_application_metadata 工具规范

工具信息:

  • 名称: get_patent_application_metadata

  • 类型USPTOOpenDataPortalTool

  • 描述:根据申请号仅检索特定专利申请的元数据。

参数:

  • applicationNumberText (string) (required) The application number of the patent.

示例用法:

query = {
    "name": "get_patent_application_metadata",
    "arguments": {
        "applicationNumberText": "example_value"
    }
}
result = tu.run(query)

**get_patent_continuity_data**(类型:USPTOOpenDataPortalTool)

获取专利申请的父项和子项连续性数据,以显示其与其他专利申请的关系。

get_patent_continuity_data 工具规范

工具信息:

  • 名称: get_patent_continuity_data

  • 类型USPTOOpenDataPortalTool

  • 描述:获取专利申请的父项和子项连续性数据,显示其与其他申请的关系。

参数:

  • applicationNumberText (string) (required) The application number of the patent.

示例用法:

query = {
    "name": "get_patent_continuity_data",
    "arguments": {
        "applicationNumberText": "example_value"
    }
}
result = tu.run(query)

**get_patent_foreign_priority_data**(类型:USPTOOpenDataPortalTool)

获取与申请相关的任何外国优先权声明信息。

get_patent_foreign_priority_data 工具规范

工具信息:

  • 名称: get_patent_foreign_priority_data

  • 类型USPTOOpenDataPortalTool

  • 描述:访问与申请相关的任何外国优先权声明信息。

参数:

  • applicationNumberText (string) (required) The application number of the patent.

示例用法:

query = {
    "name": "get_patent_foreign_priority_data",
    "arguments": {
        "applicationNumberText": "example_value"
    }
}
result = tu.run(query)

**get_patent_overview_by_text_query**(类型:USPTOOpenDataPortalTool)

Search for patent application overviews using a query string of the format ‘field:value’, where v…

get_patent_overview_by_text_query 工具规格说明

工具信息:

  • 名称get_patent_overview_by_text_query

  • 类型USPTOOpenDataPortalTool

  • Description: Search for patent application overviews using a query string of the format ‘field:value’, where value is the case-insensitive term you are searching for. Common fields: ‘applicationMetaData.inventionTitle:your_search_term’ to search by title, and ‘applicationMetaData.patentNumber:9022434’ to look up a granted patent by its patent number (use the plain number, e.g. 9022434 not US9022434B2; do not prefix with ‘patentCaseMetadata’ or ‘patentGrantIdentification’). A 404 ‘no matching records’ response means that specific patent is absent from the Patent File Wrapper dataset (coverage has gaps), not that the query is malformed. If your_search_term is a multi-word phrase, it must be encased in escaped double quotation marks for exact matching. This tool allows for sorting, offsetting, and filtering of results. Returns a list of important metadata fields for each application, including application number, filing date, grant date, invention title, and CPC classifications. Requires a valid USPTO_API_KEY; a 403 Forbidden response means the key was rejected (invalid/expired/not-yet-activated), not a query problem.

参数:

  • query (string) (required) Keyword or keyphrase to search for in the patent application title. This field is required.

  • ``exact_match``(布尔值)(可选)如果为 true,搜索将仅返回与提供的查询完全匹配的结果。默认值为 false。

  • ``sort``(字符串)(可选) 按以下字段之一对结果进行排序:filingDate 或 grantDate。字段名称后跟一个空格及“asc”或“desc”,分别表示按日期升序或降序。例如:’filingDate desc’

  • ``offset``(整数)(可选)结果集的起始位置(从零开始计数)。默认值为0。

  • ``limit``(整数)(可选) 返回的最大结果数量。默认值为25。

  • ``rangeFilters``(字符串)(可选)限制结果在以下字段之一指定的日期范围内:filingDate 或 grantDate。请提供字段名称、一个空格,以及用冒号分隔的起始和结束日期,格式为 YYYY-MM-DD。例如:’grantDate 2010-01-01:2011-01-01’

示例用法:

query = {
    "name": "get_patent_overview_by_text_query",
    "arguments": {
        "query": "example_value"
    }
}
result = tu.run(query)

**get_patent_term_adjustment_data**(类型:USPTOOpenDataPortalTool)

获取指定申请号的专利期限调整详情。

get_patent_term_adjustment_data 工具规范

工具信息:

  • 名称get_patent_term_adjustment_data

  • 类型USPTOOpenDataPortalTool

  • 描述:获取指定申请号的专利期限调整详情。

参数:

  • applicationNumberText (string) (required) The application number of the patent.

示例用法:

query = {
    "name": "get_patent_term_adjustment_data",
    "arguments": {
        "applicationNumberText": "example_value"
    }
}
result = tu.run(query)