Mentorian Enterprise

Public API v1

Integre contatos e consulte o estado dos agendamentos do seu workspace sem acessar rotas internas da Mentorian.

Quickstart

  1. 1. O owner gera uma chave em Integrações → Desenvolvedores.
  2. 2. Guarde o segredo exibido uma única vez.
  3. 3. Envie a chave no header Authorization.
curl https://api.mentorian.com.br/v1/contacts \
  -H "Authorization: Bearer mnt_live_SEU_IDENTIFICADOR.SEU_SEGREDO"

Contatos

GET /v1/contactsPOST /v1/contactsGET /v1/contacts/{id}PATCH /v1/contacts/{id}PUT /v1/contacts/external/{external_id}

Agendamentos

GET /v1/appointmentsGET /v1/appointments/{id}

A v1 é somente leitura para agendamentos.

Escritas seguras

POST, PUT e PATCH exigem Content-Type application/json e um Idempotency-Key único. Chaves, escopos e limites são sempre vinculados ao workspace.

curl -X POST https://api.mentorian.com.br/v1/contacts \
  -H "Authorization: Bearer mnt_live_SEU_IDENTIFICADOR.SEU_SEGREDO" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: crm-lead-2026-0001" \
  -d '{"name":"Ana Silva","email":"ana@example.com","status":"talking"}'