πŸ“©Fetching Data

Learn how to integrate our system with JavaScript without the SDK.

You can easily use echo3D with your JavaScript project by using our RESTful API instead of using our SDK.

You can use the fetch interface to query your project data set using the query API call:

...
 
var echoDB;

// Query echo3D
fetch('https://api.echo3D.com/query?key=' + API_KEY)
.then((response) => response.json())
.then((json) => {
  // Store database
  echoDB = json; // The JSON response
})
.catch((error) => {
  console.error(error);
});
  
...

You will be able to validate your API key and retrieve the database entries as follows:

var apiKey = echoDB.apiKey;
var db = Object.values(echoDB.db);

Last updated