Skip to main content

DealMeld API docs

DealMeld exposes tenant-scoped CRM, room, communication, delivery, webhook, signing, billing, support, and automation APIs. These docs are the public entry point for API consumers, integration builders, and agent developers.

Use the guides when you need implementation context. Use the source-backed Complete API surface when you need to know what is mounted in the platform today. Use the interactive API Reference when you need request and response schemas for the currently published OpenAPI slice.

Base URLs​

EnvironmentBase URL
Productionhttps://api.dealmeld.io/api
Local developmenthttp://localhost:3005/api

Start here​

  1. Read Authentication to choose user JWT auth or tenant API access keys.
  2. Read Tenant context before making tenant-scoped requests.
  3. Review API access keys for service-account token behavior.
  4. Read the Agent platform guide for the platform capability map and safe automation rules.
  5. Read the CRM data model before creating clients, linking companies, using global search, or merging duplicate CRM records.
  6. Use the Complete API surface to find every mounted route by capability area.
  7. Use the API Reference for schema-backed endpoint details.

Coverage model​

The docs intentionally split API coverage into two layers:

LayerUse it for
Complete API surfaceSource-backed route inventory generated from the API server mounts. This is the broadest map of what the platform exposes.
API ReferenceOpenAPI-backed schemas, parameters, examples, and response bodies for routes that have been promoted into the published schema.
GuidesAuthentication, tenant context, CRM relationship rules, rate limits, errors, webhooks, and agent automation patterns.

For agentic integrations, start with the complete surface and then prefer OpenAPI-backed routes whenever schemas are available.

Response envelope​

Successful responses use a shared JSON envelope:

{
"success": true,
"data": {}
}

Errors use a stable error envelope:

{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Request body is invalid"
}
}