Skip to main content
Structured logging made simple. Timberlogs is a modern logging service built for developers who want powerful log management without the complexity. Send logs from any application using our REST API or official SDKs, search and filter with ease, and track user flows across your system. Timberlogs Dashboard

Features

  • REST API - Send logs from any language or platform via simple HTTP POST
  • TypeScript SDK - Drop-in SDK with automatic batching and retry
  • Python SDK - Full-featured SDK with sync and async support
  • CLI - Query logs, inspect flows, and view stats from your terminal
  • Powerful Search - Full-text search with support for phrases, exclusions, and OR queries
  • Flow Tracking - Link related logs together to trace user journeys
  • Real-time Dashboard - Beautiful UI to view, search, and filter logs
  • Cloudflare-powered - Built on Cloudflare Workers for global low-latency ingestion

Quick Example

Using the REST API

Send logs from any language with a simple HTTP request:
curl -X POST https://timberlogs-ingest.enaboapps.workers.dev/v1/logs \
  -H "Authorization: Bearer tb_live_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "logs": [{
      "level": "info",
      "message": "User signed in",
      "source": "my-app",
      "environment": "production",
      "data": { "userId": "user_123" }
    }]
  }'

Using the TypeScript SDK

import { createTimberlogs } from 'timberlogs-client'

const timber = createTimberlogs({
  source: 'my-app',
  environment: 'production',
  apiKey: 'tb_live_xxxxx',
})

timber.info('User signed in', { userId: 'user_123' })
timber.error('Payment failed', new Error('Card declined'))

Using the Python SDK

from timberlogs import create_timberlogs

timber = create_timberlogs(
    source="my-app",
    environment="production",
    api_key="tb_live_xxxxx",
)

timber.info("User signed in", {"userId": "user_123"})
timber.error("Payment failed", Exception("Card declined"))

Using the CLI

npm install -g timberlogs-cli
timberlogs login
timberlogs logs --level error --from 1h

Get Started

Ready to add structured logging to your app?
  1. Getting Started guide - Get up and running in 5 minutes
  2. TypeScript SDK - For Node.js/TypeScript projects
  3. Python SDK - For Python projects
  4. CLI - Query and search logs from your terminal
  5. REST API Reference - Send logs from any language
Ready to start logging? Sign up free — send your first log in under 5 minutes.