Build custom integrations with the Kaldr Tech REST API. Manage customers, jobs, invoices, and payments programmatically.
https://api.kaldrtech.com/v1Bearer token auth100 req/min rate limitAll API requests require a Bearer token in the Authorization header. Generate your API key from the Portal under Settings > API Access.
curl -X GET "https://api.kaldrtech.com/v1/customers" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Create, read, update, and manage customer records.
/api/v1/customersList all customers with pagination and filtering
/api/v1/customersCreate a new customer record
/api/v1/customers/:idRetrieve a specific customer by ID
/api/v1/customers/:idUpdate customer details
/api/v1/customers/:idDelete a customer record
curl -X POST "https://api.kaldrtech.com/v1/customers" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "John Smith",
"email": "john@example.com",
"phone": "+15551234567",
"address": {
"street": "123 Main St",
"city": "Phoenix",
"state": "AZ",
"zip": "85001"
},
"notes": "Referred by Mike. Has two AC units."
}'Official client libraries for popular languages.
npm install @kaldr/sdkpip install kaldrgo get github.com/kaldrtech/kaldr-gocomposer require kaldr/kaldr-php200Success201Created400Bad request401Unauthorized404Not found429Rate limited500Server errorCreate your free Kaldr Tech account and generate an API key in under 5 minutes. Full access, no restrictions.