Deelo/Developer Docs

Deelo API

Build integrations with the Deelo platform over our public REST API. Create a scoped API token, then read and write your CRM contacts, invoices, appointments, work orders, and more — or drive them through the streaming AI Assistant. Every plan, including Free, includes API access.

Token Auth

Scoped dlo_ access tokens — least-privilege, per-app permissions

Rate Limited

Per-plan limits from 30 to 3,000 req/min, plus a monthly quota

REST + Streaming

JSON over HTTP, plus a Server-Sent-Events AI assistant

Quick Start

  1. 1

    Go to Settings → API Tokens (owner or admin) and create a new token

  2. 2

    Select the apps and permission level for the token

  3. 3

    Use the token in the Authorization: Bearer header

bash
curl -X GET "https://deelo.ai/api/crm?resource=contacts&limit=10" \
  -H "Authorization: Bearer dlo_your_token_here" \
  -H "Content-Type: application/json"