Zeng Book
ProductIndustriesIntegrationsPricingResources
Sign inContact salesTry it free
Introduction
  • Overview
  • Quickstart
API reference
  • Authentication
  • Errors
  • Rate limits
  • Pagination
  • Interactive explorer
Resources
  • Organization
  • Leads
  • Clients
  • Projects
  • Quotations
  • Invoices
Integrations
  • Overview
  • Webhooks
  • Public portal
  • Zapier
  • Make / n8n recipes
  • Xero (coming soon)

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/me

Returns 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

FieldTypeNotes
org.idstringStable org identifier.
org.namestringLegal/display name.
org.slugstringURL slug, used in in-app links.
org.currencystringISO 4217, e.g. SGD.
org.gstRatenumberActive GST rate, e.g. 0.09.
org.planTierstringOne of free, starter, growth, business, enterprise.

Try it

Use the interactive explorer to run this and every other endpoint without leaving your browser.