🖼️Search by Image

Learn how to search for assets across your collections via image.

Get similar 3D models and images based on a search image

GET https://api.echo3D.com/imageSearch?key=<API_KEY>&keys=<API_KEYS>&file=<IMAGE_BINARY>

This query allows you to retrieve similar 3D models and image assets that match the associated search image file across a list of collections.

Query Parameters

Name
Type
Description

key*

string

Your API key.

secKey*

string

Your Secret key. Only if enabled through the Security page.

email*

string

Your email address

userKey*

string

Your authentication key

keys*

string

A comma separated string of API keys.

The collection associated with each API key will be searched through to find assets that match the input search image.

file*

binary

The search image file. Must be of type .jpg, .jpeg, or .png.

Request:

Name
Value

key

late-sea-5767

secKey

N/A

keys

broad-butterfly-4544,patient-term-4545,late-sea-5767

file

binary

Response body:

{
  "broad-butterfly-4544": [
    "entry-id-1",
    "entry-id-2"
  ],
  "patient-term-4545": [],
  "late-sea-5767": [
    "entry-id-3"
  ]
}

Last updated

Was this helpful?