API Reference
Hanzo CRM API
Per-org CRM for Hanzo Cloud — the `/v1/crm/*` surface served by the cloud
Per-org CRM for Hanzo Cloud — the /v1/crm/* surface served by the cloud
Hanzo CRM API · All API references →
| Base URL | https://api.hanzo.ai |
| Version | 1.0.0 |
| Operations | 16 |
Authentication
bearerAuth— HTTP bearer
All Hanzo APIs share one bearer credential and common error and pagination conventions. See API conventions.
curl -H "Authorization: Bearer $HANZO_API_KEY" https://api.hanzo.aiEndpoints
Companies
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/crm/companies | List companies |
POST | /v1/crm/companies | Create a company |
GET | /v1/crm/companies/{id} | Company detail |
PUT | /v1/crm/companies/{id} | Update a company |
DELETE | /v1/crm/companies/{id} | Delete a company (clears dangling contact/opportunity refs) |
Contacts
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/crm/contacts | List contacts |
POST | /v1/crm/contacts | Create a contact |
GET | /v1/crm/contacts/{id} | Contact detail |
PUT | /v1/crm/contacts/{id} | Update a contact |
DELETE | /v1/crm/contacts/{id} | Delete a contact (clears opportunity point-of-contact refs) |
Opportunities
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/crm/opportunities | List opportunities |
POST | /v1/crm/opportunities | Create an opportunity |
GET | /v1/crm/opportunities/{id} | Opportunity detail |
PUT | /v1/crm/opportunities/{id} | Update an opportunity |
DELETE | /v1/crm/opportunities/{id} | Delete an opportunity |
Summary
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/crm/summary | Per-org row counts (companies / contacts / opportunities) |
How is this guide?