Documentation Index
Fetch the complete documentation index at: https://sentralbee.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The Sentralbee API lets you work with your workspace’s data from your own code — read and
create products, orders, and customers today, with more to come.
It’s a plain REST API. You send an HTTPS request with your API key, and you get JSON back.
If you’ve used an API before, none of this will surprise you.
The Developer API is part of our top plan. If your workspace isn’t on that plan, requests
come back with a 403 and a plan_required message.
Where to send requests
Everything lives under one base URL:
https://api.sentralbee.app/v1
A few things worth knowing
Your API key belongs to a single workspace, so you never put a workspace in the URL — the
key already knows which workspace it’s for.
A key only does what you allow. You choose its permissions when you create it, and a key
that tries something it isn’t allowed to do gets turned away. We cover that in
Scopes & permissions.
Responses are always JSON, errors always look the same, and long lists come back one page
at a time — so once you’ve handled one endpoint, the rest feel familiar.
Start here
The quickest way to get a feel for it is the Quickstart: create a key and
make your first request in a couple of minutes.