Utility Patent Image Search

SkillSearch

Perform visual similarity search for utility model patents using an image URL, with filtering by country, legal status, date ranges, and assignee. Supports utility model patents only (type U) with shape-only or shape+pattern+color matching models. Triggered when users mention utility patent image search, utility model patent search, utility patent infringement check, product structure patent search, or utility model visual search. Even if the user does not explicitly mention \"utility patent,\" this skill should be triggered whenever the need involves searching for similar utility model patents through an image. For design patents, use ecommerce-zhihuiya-patent-image-search instead.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Utility Patent Image Search skill

What this skill tells your AI

The instructions your AI receives, as published by nexscope-ai/nexscope-ecommerce-skills in ecommerce-zhihuiya-utility-patent-image-search/SKILL.md and read by ahel’s review.

This skill guides you on how to perform patent image similarity search via the patent database for utility model patents only (type U). Given a single image URL, it finds visually similar patents in the utility model patent database, supporting multiple search models and extensive filtering options.

This skill supports utility model patents only. For design patents, use ecommerce-zhihuiya-patent-image-search.

Core Concepts

Patent Image Search uses visual AI models to compare a given product or design image against a global patent image database. It returns a ranked list of similar patents, enabling users to evaluate infringement risks or conduct prior-art research.

Patent type for this skill:

TypeCodeDescription
Utility Model PatentUProtects the functional shape/structure of a product

Search models for utility model patents:

Model IDStrategyRecommendation
3Match ShapeShape-only comparison
4Match Shape/Pattern/ColorRecommended for utility model patents (default)

Scoring logic: A higher score value means greater visual similarity. When presenting results, sort by score in descending order (highest similarity first) so users can prioritize the most relevant patents for review.

Parameter Guide

Required Parameters

ParameterDescriptionExample
urlThe image URL to search againsthttps://example.com/product.jpg
patentTypePatent type, fixed to U (utility model) by this skillU
modelSearch model ID: 3 (shape only) or 4 (recommended)4

Common Optional Parameters

ParameterDescriptionDefault
countryPatent authority country codes, comma-separated (e.g., CN,US,JP)All countries
legalStatusLegal status codes, comma-separatedNone
simpleLegalStatusSimple legal status: 0 (expired), 1 (active), 2 (pending)None
assigneesApplicant / patent holder nameNone
applyStartTimeApplication start date (yyyyMMdd)None
applyEndTimeApplication end date (yyyyMMdd)None
publicStartTimePublication start date (yyyyMMdd)None
publicEndTimePublication end date (yyyyMMdd)None
limitNumber of results to return (1-100)10
offsetPagination offset (0-1000)0
fieldSort field: SCORE, APD, PBD, ISDSCORE
orderSort order: desc or asc (for APD/PBD/ISD)desc
langTitle language preference: original, cn, enoriginal
preFilterEnable country pre-filtering: 1 (on) / 0 (off)1
stemmingEnable stemming: 1 (on) / 0 (off)0
mainFieldSearch within title, abstract, claims, description, publication number, application number, applicant, inventor, IPC/UPC/LOCNone
includeMachineTranslationInclude machine-translated content in searchNone
scoreExpansionEnable score expansionNone
isHttpsReturn HTTPS image URLs: 1 (yes) / 0 (no)0
returnImgIdReturn image IDs in resultsfalse

Note: The loc (Locarno classification) parameter applies to design patents only and is not relevant for utility model searches.

Commonly Used Country Codes

CodeCountry/Region
CNChina
USUnited States
JPJapan
KRSouth Korea
EPEuropean Patent Office
WOWIPO
DEGermany
GBUnited Kingdom
FRFrance
AUAustralia

Usage

  • API Endpoint: POST /zhihuiya/patentImageSearch (see references/api.md for full parameters, responses, and error codes)
  • Python Script: python scripts/zhihuiya_utility_patent_image_search.py '<JSON parameters>'

Output strategy (script default behavior):

  • Prints the full JSON response to stdout

Data reading tip: Use jq or ConvertFrom-Json to extract specific fields from the response as needed.

Usage Examples

1. Basic utility model patent search (recommended starting point) Search for utility model patents similar to a product image, matching shape/pattern/color across all countries:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "limit": 20
}

2. Utility model patent search limited to specific countries Search only in China and the United States:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "country": "CN,US",
  "limit": 20
}

3. Shape-only utility model patent search Compare by shape only (ignore pattern/color):

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 3,
  "country": "CN",
  "limit": 20
}

4. Search only active patents within a date range Find active utility model patents filed after 2020:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "simpleLegalStatus": "1",
  "applyStartTime": "20200101",
  "limit": 30
}

5. Search by specific assignee Find patents held by a particular company:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "assignees": "Apple Inc.",
  "limit": 20
}

6. Get results with Chinese-translated titles

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "lang": "cn",
  "limit": 20
}

Display Rules

  1. Sort by score: Always sort results by score in descending order (highest similarity first) to help users quickly identify the most relevant infringement risks.

  2. Show complete details: When summarizing results or generating reports, include ALL of the following for each patent -- do NOT omit or abbreviate:

    • Application number (apno)
    • Patent title in Chinese (use lang: cn or provide translation)
    • Inventor (inventor)
    • Patent drawing (the matched url image)
    • Every patent image in the image list
    • Patent abstract
    • Patent description
    • IPC/UPC classification information
    • Radar result (radarResult) if available
    • Patent specification
  3. Legal disclaimer: Always append: "This search result was generated by Nexscope. It is recommended to consult a professional patent attorney for legal advice."

  4. Score explanation: Remind users that the score represents visual similarity -- a higher score indicates a closer match, but does not constitute a legal determination of infringement.

  5. Pagination guidance: When the total count exceeds the returned results, inform users about the total number of matching patents and guide them to use offset and limit for additional pages.

  6. Error handling: When a query fails, explain the reason and suggest adjustments (e.g., verify the image URL is publicly accessible, check country codes, adjust date formats).

User Expression & Scenario Quick Reference

Applicable -- Image-based utility model patent similarity searches:

User SaysScenario
"Check if my product structure infringes any utility patents"Utility model patent infringement check
"Search for similar utility model patents"Utility model patent similarity search
"Find utility patents that look like this image"Visual utility model patent lookup
"Are there any utility patents similar to my product structure"Utility model risk assessment
"Utility model patent search by image"Utility model search
"Check utility patent risks for this product in China and US"Multi-country utility patent check
"Find active utility model patents"Filtered utility patent search
"Who holds utility patents similar to this design"Competitor patent discovery

Not applicable -- Needs beyond utility model patent image search:

  • Text-based patent search (keyword/abstract/claim search)
  • Design patent image search (use ecommerce-zhihuiya-patent-image-search)
  • Patent legal status monitoring or annuity management
  • Patent valuation or licensing negotiation
  • Freedom-to-operate (FTO) legal opinions
  • Patent family or citation analysis

Authentication

Set NEXSCOPE_API_KEY. Visit https://www.nexscope.ai/help/skills-external-access?co-from=skillNS to manage credits.

Signals

GitHub stars
67
Forks
9
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
ecommerce-zhihuiya-utility-patent-image-search
Source
github.com/nexscope-ai/nexscope-ecommerce-skills