🗨️Queries
Learn how to query for information on the entries of the project.
Get entries
GET
https://api.echo3D.com/query?key=<API_KEY>
This query allows you to retrieve a data set of entries associated with your API key.
Query Parameters
key*
string
Your API key.
Get a specific entry
GET
https://api.echo3D.com/query?key=<API_KEY>&entry=<ENTRY_ID>
This query allows you to retrieve a specific entry.
Query Parameters
key*
string
Your API key.
entry*
string
A specific entry ID.
Get specific entries
GET
https://api.echo3D.com/query?key=<API_KEY>&entries=<ENTRY_ID1>,<ENTRY_ID2>,..
This query allows you to retrieve specific entries.
Query Parameters
key*
string
Your API key.
entires*
string
Comma-separated list of entry IDs without spaces
Get entries based on file
GET
https://api.echo3D.com/query?key=<API_KEY>&filename=<FILENAME>
This query allows you to retrieve entries that contain a specific file.
Query Parameters
key*
string
Your API key.
filename*
string
A file name, e.g. myfile.obj
.
Get entries based on data
GET
https://api.echo3D.com/query?key=<API_KEY>&data=<DATA>&value=<VALUE>
This query allows you to retrieve entries that contain a specific data key and value.
Query Parameters
key*
string
Your API key.
data*
string
A data key, e.g. scale
.
value
string
A data value, e.g. 2
.
Get entries based on tags
GET
https://api.echo3D.com/query?key=<API_KEY>&tags=<TAG1>,<TAG2>,..
This query allows you to retrieve entries based on the default ‘tags’ metadata. This query will return any asset whose 'tags' metadata matches any of the query parameter filters.
Query Parameters
key*
string
Your API key.
tags*
string
Comma-separated list of tags without spaces
Get entries based on filters
GET
https://api.echo3D.com/query?key=<key>&filters=<filter1>,<filter2>,<filter3>,...
This query allows you to retrieve entries based on the default ‘tags’ metadata. This query will return any asset whose 'tags' metadata matches all of the query parameter filters.
Query Parameters
key*
String
Your API key.
filters*
String
Comma-separated list of filters without spaces
Get entries based on type
GET
https://api.echo3D.com/query?key=<API_KEY>&type=<TYPE>
This query allows you to retrieve entries that contain a specific type of hologram or target.
Query Parameters
key*
string
Your API key.
type*
string
A type of hologram or target. Options: MODEL_HOLOGRAM
, VIDEO_HOLOGRAM
, IMAGE_HOLOGRAM
,BRICK_TARGET
, GEOLOCATION_TARGET
, or IMAGE_TARGET
Get entries based on location
GET
https://api.echo3D.com/query?key=<API_KEY>&location=<LAT>,<LONG>&radius=<RADIUS>
Query Parameters
key*
string
Your API key.
location*
string
A pair of GPS coordinates in the form of LAT,LONG or a location name that will be converted to GPS coordinates.
radius
string
The acceptable distance in miles between the location and the the entry's location. If radius isn't specified, a default 1 mile radius is used.
Last updated