--- sidebar_label: REST title: REST description: Insert data using REST API --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; In this section we will explain how to write into TDengine cloud service using REST API. ## Config Run this command in your terminal to save the TDengine cloud token and URL as variables: ```bash export TDENGINE_CLOUD_TOKEN="" export TDENGINE_CLOUD_URL="" ``` ```bash set TDENGINE_CLOUD_TOKEN="" set TDENGINE_CLOUD_URL="" ``` ```powershell $env:TDENGINE_CLOUD_TOKEN="" $env:TDENGINE_CLOUD_URL="" ``` ## Insert Following command below show how to insert data into the table `d1001` of the database `test` via the command line utility `curl`. ```bash curl -L \ -d "INSERT INTO d1001 VALUES (1538548685000, 10.3, 219, 0.31)" \ $TDENGINE_CLOUD_URL/rest/sql/test?token=$TDENGINE_CLOUD_TOKEN ``` Please refer to [REST-API](https://docs.tdengine.com/reference/rest-api/) for detailed documentation.