Back to site
Syncro

Introduction

Welcome to the Syncro API. Integrate your CRM with websites, forms, automations (n8n, Make, Zapier), ERPs and your own systems — create and update leads, move deals through the pipeline, manage tasks, send WhatsApp messages and receive real-time events via webhooks.

Base URLhttps://app.syncro.chat/api/v1AuthX-API-Key: crm_SUA_CHAVE_AQUI

Basic integration flow

  1. Generate an API Key in the Syncro panel, under Settings → API Keys (see Authentication).
  2. Make calls to the API sending the X-API-Key header with your key.
  3. Find the IDs you will use: list pipelines/stages (GET /pipelines) and custom fields (GET /custom-fields).
  4. Create or update leads (POST /leads or POST /leads/upsert), create tasks, send WhatsApp, etc.
  5. (Optional) Subscribe to webhooks (POST /webhooks) to receive real-time events in your system.

First request

After generating your key, test the connection by fetching your account data:

curl https://app.syncro.chat/api/v1/account \
  -H "X-API-Key: crm_SUA_CHAVE_AQUI" \
  -H "Content-Type: application/json"

Expected response:

{
  "success": true,
  "account": { "id": 1, "name": "Minha Empresa", "plan": "scale" }
}

Next step: Authentication.