List Customers
curl --request GET \
--url https://crm.homele.com/api/v2/crm/customers \
--header 'Authorization: Bearer <token>'import requests
url = "https://crm.homele.com/api/v2/crm/customers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://crm.homele.com/api/v2/crm/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://crm.homele.com/api/v2/crm/customers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://crm.homele.com/api/v2/crm/customers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://crm.homele.com/api/v2/crm/customers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://crm.homele.com/api/v2/crm/customers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": 42,
"sequential_number": 1025,
"name": "Ahmed Ali",
"first_name": "Ahmed",
"last_name": "Ali",
"phone1": "+9647501234567",
"phone2": "<string>",
"phone3": "<string>",
"email1": "ahmed@example.com",
"address": "Erbil, 60m Street",
"budget": "150000.00",
"budget_currency": "USD",
"expected_sale_date": "2026-06-15",
"lead_status": {
"id": 1,
"name": "New"
},
"lead_source": {
"id": 1,
"name": "New"
},
"owner": {
"id": 1,
"name": "New"
},
"priority": {
"id": 1,
"name": "New"
},
"country": {
"id": 1,
"name": "New"
},
"city": {
"id": 1,
"name": "New"
},
"created_at": "2025-11-20T14:30:00+00:00",
"updated_at": "2026-02-15T09:45:00+00:00",
"last_activity_at": "2026-02-14T16:20:00+00:00"
}
],
"meta": {
"per_page": 25,
"next_cursor": "eyJsYXN0X2FjdGl2aXR5X2F0IjoiMjAyNi0wMi0yMCIsImlkIjo0NDB9",
"prev_cursor": null,
"has_more": true
}
}{
"success": false,
"message": "Unauthenticated."
}{
"success": false,
"message": "Insufficient permissions."
}{
"success": false,
"message": "Too Many Attempts.",
"retry_after": 42
}Customers
List Customers
Returns a paginated list of customers with basic information and related data.
Permission required: customer:read
GET
/
customers
List Customers
curl --request GET \
--url https://crm.homele.com/api/v2/crm/customers \
--header 'Authorization: Bearer <token>'import requests
url = "https://crm.homele.com/api/v2/crm/customers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://crm.homele.com/api/v2/crm/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://crm.homele.com/api/v2/crm/customers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://crm.homele.com/api/v2/crm/customers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://crm.homele.com/api/v2/crm/customers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://crm.homele.com/api/v2/crm/customers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": 42,
"sequential_number": 1025,
"name": "Ahmed Ali",
"first_name": "Ahmed",
"last_name": "Ali",
"phone1": "+9647501234567",
"phone2": "<string>",
"phone3": "<string>",
"email1": "ahmed@example.com",
"address": "Erbil, 60m Street",
"budget": "150000.00",
"budget_currency": "USD",
"expected_sale_date": "2026-06-15",
"lead_status": {
"id": 1,
"name": "New"
},
"lead_source": {
"id": 1,
"name": "New"
},
"owner": {
"id": 1,
"name": "New"
},
"priority": {
"id": 1,
"name": "New"
},
"country": {
"id": 1,
"name": "New"
},
"city": {
"id": 1,
"name": "New"
},
"created_at": "2025-11-20T14:30:00+00:00",
"updated_at": "2026-02-15T09:45:00+00:00",
"last_activity_at": "2026-02-14T16:20:00+00:00"
}
],
"meta": {
"per_page": 25,
"next_cursor": "eyJsYXN0X2FjdGl2aXR5X2F0IjoiMjAyNi0wMi0yMCIsImlkIjo0NDB9",
"prev_cursor": null,
"has_more": true
}
}{
"success": false,
"message": "Unauthenticated."
}{
"success": false,
"message": "Insufficient permissions."
}{
"success": false,
"message": "Too Many Attempts.",
"retry_after": 42
}Authorizations
API token generated from Settings > API Integration. Format: Bearer
Query Parameters
Cursor for the next or previous page, taken from meta.next_cursor or meta.prev_cursor
Results per page (max 100)
Required range:
x <= 100Search by customer name
Filter by lead status ID
Filter by owner ID
Filter by lead source ID
Filter by priority ID
Created after date (YYYY-MM-DD)
Created before date (YYYY-MM-DD)