API documentation
REST with a key per business: projects, quotations, suppliers and orders.
MCP
Connect an MCP client to use the authorized product tools.
Getting started
- Create a key in Settings → API keys. Each key belongs to one business.
- Create a project:
POST/api /v1 /projects - Create a quotation with its items:
POST/api /v1 /projects /{id} /quotations - Attach and approve suppliers before sending:
POST/api /v1 /quotations /{id} /invitations - Send and track:
POST//api /v1 /quotations /{id} /send GET/api /v1 /quotations /{id} /compare
curl -X POST https://cotacaoia-a1.netlify.app/api/v1/projects \
-H "Authorization: Bearer cot_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{ "name": "Example purchase" }'