The Zero API allows you to programmatically access and manage your workspaces, companies, contacts, and deals. The Zero API is currently operating in beta.
Base URL
All API requests should be made to:
https://api.zero.inc
Authentication
All API requests require a Bearer token in the Authorization header:
Authorization: Bearer <your-api-token>
You can generate an API key in your account settings.
Quick Start
A typical workflow to get started with the API:
1
Get your workspace ID
Retrieve your workspaces to find the workspace ID you'll use in subsequent requests:
# Get contacts with their company information
curl "https://api.zero.inc/api/contacts?fields=id,name,email,company.name,company.domain"
# Get deals with company and contacts
curl "https://api.zero.inc/api/deals?fields=id,name,value,company.name,contacts.name"