🗨️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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
secKey | string | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
entry* | string | A specific entry ID. |
secKey | string | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
entires* | string | Comma-separated list of entry IDs without spaces |
secKey | String | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
filename* | string | A file name, e.g. |
secKey | string | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
data* | string | A data key, e.g. |
value | string | A data value, e.g. |
secKey | string | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
tags* | string | Comma-separated list of tags without spaces |
secKey | string | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | String | Your API key. |
filters* | String | Comma-separated list of filters without spaces |
secKey | String | Your Secret key. Only if enabled through the Security page. |
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
Name | Type | Description |
---|---|---|
key* | string | Your API key. |
type* | string | A type of hologram or target. Options: |
secKey | string | Your Secret key. Only if enabled through the Security page. |
Get entries based on location
GET
https://api.echo3D.com/query?key=<API_KEY>&location=<LAT>,<LONG>&radius=<RADIUS>
Query Parameters
Name | Type | Description |
---|---|---|
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. |
secKey | string | Your Secret key. Only if enabled through the Security page. |
Last updated