Documentation Index
Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt
Use this file to discover all available pages before exploring further.
v1.0.0
Public API v1 launch
Vendaze API v1 is now available to all developers. This is the initial release with full OAuth 2.1 support and the core CRM resources.OAuth 2.1 with mandatory PKCE
GET /oauth/authorize: starts the authorization flowPOST /oauth/token: authorization code exchange for tokens and refresh token renewalPOST /oauth/revoke: revocation of access token or refresh tokenPOST /v1/auth/register-app: new integrator app registration (public)
code_challenge_method=S256 is required on all flows. Plain PKCE is not accepted.Resources available in v1
| Resource | Scopes | Operations |
|---|---|---|
| People | people:read, people:write | Full CRUD |
| Companies | companies:read, companies:write | Full CRUD |
| Deals | deals:read, deals:write | Full CRUD |
| Tasks | tasks:read, tasks:write | Full CRUD |
| Activities | scopes of the linked entity | Create, Read, Delete |
| Products | deals:write for writes | Full CRUD |
| Tags | any write scope | Full CRUD |
| Lists | people:read/write or companies:read/write | Full CRUD |
| Custom Fields | corresponding scopes | Full CRUD |
Pagination and filters
All listing endpoints support pagination withpage, per_page (maximum 100), order_by, and order. Text, date, tag, and custom field filters available across all resources.Rate limiting
- GET: 1,000 req/min per
client_id - POST/PATCH: 200 req/min per
client_id - DELETE: 100 req/min per
client_id - OAuth endpoints: 20 req/min per IP
X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers included in all responses.MCP Server
The Vendaze MCP server is available athttps://api.vendaze.com/mcp for integration with AI tools such as Claude, Cursor, and GitHub Copilot. See the AI and Automations documentation for details.