Already have a logging setup you love? Keep it. Send logs to Loggy via our REST API from any language, framework, or platform.
If it can make HTTP requests, it can use Loggy. Here are some examples.
import requests requests.post( "https://api.loggy.dev/logs", headers={ "Authorization": f"Bearer {token}" }, json={ "level": "info", "message": "User signed up", "metadata": {"userId": 42} } )
body := []byte(`{"level":"info","message":"Hello"}`) req, _ := http.NewRequest("POST", "https://api.loggy.dev/logs", bytes.NewBuffer(body)) req.Header.Set("Authorization", "Bearer "+token) client.Do(req)
require 'net/http' require 'json' uri = URI('https://api.loggy.dev/logs') http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true req = Net::HTTP::Post.new(uri) req['Authorization'] = "Bearer #{token}" req.body = { level: 'info' }.to_json http.request(req)
$ch = curl_init('https://api.loggy.dev/logs'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Authorization: Bearer ' . $token, 'Content-Type: application/json' ]); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(['level' => 'info'])); curl_exec($ch);
Everything you need to integrate Loggy into your existing stack
One endpoint, one POST request. Send logs with level, message, and optional metadata.
Send custom metrics alongside logs. Track response times, memory usage, and more.
Encrypt logs client-side before sending. We can't read your data even if we wanted to.
Attach custom tags and structured metadata. Filter and search by any field.
Send multiple logs in a single request. Reduce overhead and improve performance.
Logs appear in your dashboard instantly. No polling, no delays.
One endpoint. One schema. That's all you need to start sending logs.
{
"level": "info" | "warn" | "error" | "debug",
"message": "Your log message",
"metadata": {
"userId": 123,
"action": "signup",
"duration": 45.2
},
"tags": ["auth", "user-flow"],
"timestamp": "2026-01-20T12:00:00Z"
} Subscribe for tutorials on integrating Loggy with your favorite languages and frameworks.
No spam, unsubscribe anytime. We respect your privacy.
Get your API key and start sending logs in minutes. No SDK required.