Lummo

Onboarding

Lummo onboarding for agents

No contact-sales forms. Free trial, self-serve keys, and a sandbox — so agents can integrate Lummo programmatically.

1. Free product trial

Create a Lummo ERP account self-serve: https://app.lummo.ar/comenzar. Plans start with a free Base tier on https://app.lummo.ar.

2. Self-serve API key (free tier)

Public landing APIs are zero-auth. Optional free keys stabilize rate-limit identity:

curl -sS https://lummo.ar/api/v1/keys \
  -H 'Content-Type: application/json' \
  -d '{"label":"my-agent"}'

# or
lummo key create --label my-agent

# or anonymous agent auth
curl -sS https://lummo.ar/agent/auth \
  -H 'Content-Type: application/json' \
  -d '{"type":"anonymous","label":"my-agent"}'

3. Sandbox environment

Dry-run without mutating obra data:

curl -sS https://lummo.ar/api/v1/sandbox/echo \
  -H 'Content-Type: application/json' \
  -d '{"message":"ping"}'

lummo sandbox echo "ping"

Also safe for agents: GET /api/v1/health (always returns RateLimit headers).

Next steps