logsmall
menu_book  API reference · v0.1 · same shape as the Datadog API
tagv1 codeopenapi.json key  Get an API key

logsmall API — v1

The logsmall API mirrors the Datadog API surface so existing Datadog SDKs work after a one-line endpoint swap. Send DD-API-KEY + DD-APPLICATION-KEY headers as before, point your client at https://api.logsmall.com, and every request shape Datadog accepts is accepted here too. Use the language tabs to copy-paste a call in Curl, Python, Node, Go, Java, .NET, Ruby, or PHP.

Metrics

Submit, query, and list metrics. Same gauge / count / rate / distribution semantics as Datadog.

Submit metric

POST /api/v1/series

curl -X POST "https://api.logsmall.com/api/v1/series" \
  -H "DD-API-KEY: $LOGSMALL_API_KEY" \
  -d '{ "series": [{ "metric": "checkout.requests", "type": "count", "points": [[1714000000, 42]] }] }'