Resources
Organization
Identify which organisation your API key is operating under and read its currency, GST rate, and plan tier.
Get current organisation
GET
/api/v1/meReturns the org profile the authenticated key belongs to. Useful as a health-check during integration setup.
terminal
curl https://www.zengbook.com/api/v1/me \
-H "Authorization: Bearer zb_live_..."200 OK
{
"org": {
"id": "org_01HX...",
"name": "Acme Builders Pte Ltd",
"slug": "acme-builders",
"currency": "SGD",
"gstRate": 0.09,
"planTier": "growth"
}
}Fields
| Field | Type | Notes |
|---|---|---|
| org.id | string | Stable org identifier. |
| org.name | string | Legal/display name. |
| org.slug | string | URL slug, used in in-app links. |
| org.currency | string | ISO 4217, e.g. SGD. |
| org.gstRate | number | Active GST rate, e.g. 0.09. |
| org.planTier | string | One of free, starter, growth, business, enterprise. |
Try it
Use the interactive explorer to run this and every other endpoint without leaving your browser.