Integrations with locco
Connect your accounting, HR, ERP, or vehicle tracking system to locco via API and webhooks.
What this is
locco’s API gives partner products in accounting, HR, ERP, and vehicle tracking programmatic access to the locco tenants they integrate with. Read and write travel entries, payouts, and employees, and subscribe to webhooks for every change. JSON over HTTPS, authenticated with bearer API keys.
Quick start
Issue an API key under Settings → Integrations → API Keys in the locco web app, then make your first request.
curl -H "Authorization: Bearer locco_live_..." \ https://api.locco.hr/api/v1/travel-entriesimport requests
r = requests.get( "https://api.locco.hr/api/v1/travel-entries", headers={"Authorization": "Bearer locco_live_..."},)r.raise_for_status()print(r.json())Next steps
- Authentication: bearer tokens, the
X-Company-Idheader, key rotation. - Rate limits: per-second, per-hour, and per-day windows, plus back-off guidance.
- Webhooks: event catalog, signature verification, retry schedule.
- API reference: browseable reference for every endpoint in v1.