DEV Community

aadarshworkk11-max
aadarshworkk11-max

Posted on

Stop building audit logging from scratch — I made a free hosted API for it

Every SaaS project needs audit logs.

Who did what. When. Why. Forever.

Most developers build it from scratch every single time.
It takes days. It is boring. And it breaks.

I built a hosted solution so nobody has to do that again.

One API call. Done.

POST: https://auditlog-api.onrender.com/log
Header: X-Api-Key: free_demo123

Body:
{
"event": "user.login",
"actor": "user_123",
"resource": "dashboard",
"metadata": {"ip": "1.2.3.4"}
}

Your event is stored permanently. Retrievable anytime.

What you get

  • Permanent event storage
  • API key authentication
  • Your logs separated from everyone else
  • Free tier: 10,000 events/month
  • No setup. No server. No database to manage.

Live now

Docs: https://auditlog-api.onrender.com/docs

Try it free. Feedback welcome.
Contact: Aadarshworkk11@gmail.com

Top comments (0)