Getting started
Go from zero to your first API call in under five minutes. The MyTabulon API gives you programmatic access to the workspace behind your business — CRM, invoices, inventory, projects, cloud storage, webhooks, and Maximo AI.
1. Create an API key
Sign in to the developer dashboard with your MyTabulon account, open API keys, and create a key with the scopes you need. The key is shown exactly once — store it like a password. Only workspace owners and administrators can manage keys.
2. Make your first request
Every request is authenticated with a Bearer key. /v1/me verifies the key and tells you which workspace and scopes it carries.
curl https://api.mytabulon.com/v1/me \
-H "Authorization: Bearer mtb_live_..."3. Explore the resources
All endpoints live under one base URL and speak JSON. List endpoints paginate with limit and offset; writes accept an Idempotency-Key header for safe retries.
https://api.mytabulon.com/v1What you can build
Sync clients from your product into MyTabulon, auto-create invoices when orders land, store files in bucket storage, get webhooks when invoices are paid, and put Maximo AI answers inside your own tools.