Get Started

Generate your logging token and start collecting data

Generate Token

Click the button below to generate a new secure token for your application.

Quick Start

Once you have your token, you can start logging data. Replace YOUR_TOKEN with your token.

1. Post a log (curl)

Send a URL-encoded form with a single curl command:

curl -X POST -d "log_type=warning&log_message=Temperature%20over%20threshold&temp=82" https://logapi.org/v1/YOUR_TOKEN

2. Retrieve logs (curl)

View recent logs for the token in your terminal or browser (returns JSON):

curl -X GET https://logapi.org/v1/YOUR_TOKEN

3. Connect from your apps and tools

Integrate LogAPI from scripts or applications (Windows scripts, Python scripts), or connect from BI tools such as Power BI and Excel. Use the POST endpoint to send logs and the GET endpoint to retrieve them.

View Full Documentation →