API Documentation

Accessing Customized Spreadsheets via Google Sheets API

Introduction

You can access data from our customized spreadsheets through a simple and efficient API endpoint. This allows for seamless integration with your systems, enabling automatic data retrieval for your database, application, or custom dashboard.


Authentication

Authentication Method:
Authentication is fully managed by our system

No API keys or tokens required. You can start using the API right away.


API Endpoint

Retrieve data using the following endpoint:

This endpoint returns a JSON-formatted response with the data from the specified spreadsheet.


JSON Response

The endpoint automatically returns data in JSON format, ready for use in your application.


Example: JavaScript Fetch Request

<script>
var requestOptions = {
method: ‘GET',
redirect: ‘follow'
};

fetch(“https://www.emergingtextiles.com/api_get_data.php?    id=sample”, requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log(‘error', error));
</script>


Example: cURL Request

curl “https://www.emergingtextiles.com/api_get_data.php?id=sample”

Try It Now

You can immediately test the API using our sample spreadsheet at the endpoint above. Full documentation and integration guidelines are available below