Database Initialization
Set up the SQLite database to start capturing HTTP requests
Success!
Database is already initialized.
Setup Instructions
1
Click Initialize
Press the button below to create the SQLite database and required tables.
2
Start Logging
Send HTTP requests to /log/endpoint to begin capturing data.
3
View Requests
Access /track to view and inspect all logged requests in the dashboard.
The database will be created as logs.sqlite in the project root directory. Make sure your web server has write permissions.
Secure
All requests stored locally in a single SQLite file.
Fast
Instant initialization, zero external dependencies.
Simple
One-click setup, no configuration required.
Example Requests
Simple GET request:
curl https://www.http-logger-requests.shopindero.com/log/test
POST with JSON body:
curl -X POST https://www.http-logger-requests.shopindero.com/log/webhook \
-H "Content-Type: application/json" \
-d '{"event":"test","id":123}'
POST with custom headers:
curl -X POST https://www.http-logger-requests.shopindero.com/log/api \
-H "X-Custom-Header: value" \
-H "Authorization: Bearer token123" \
-d 'data=test'