Documentation

API and MCP use the same service layer and product rules.

Getting started

  1. Create a key in Settings → API keys. Each key belongs to one business.
  2. Create a project: POST /api/v1/projects
  3. Create a quotation with its items: POST /api/v1/projects/{id}/quotations
  4. Attach and approve suppliers before sending: POST /api/v1/quotations/{id}/invitations
  5. Send and track: POST /api/v1/quotations/{id}/send / GET /api/v1/quotations/{id}/compare
bash
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" }'
Create an API key