Skip to main content
GET
/
customers
/
{id}
Show Customer
curl --request GET \
  --url https://crm.homele.com/api/v2/crm/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "occupation": {
      "id": 1,
      "name": "New"
    },
    "nationality": {
      "id": 1,
      "name": "New"
    },
    "real_estate_types": [
      {
        "id": 1,
        "name": "Apartment"
      },
      {
        "id": 3,
        "name": "Villa"
      }
    ],
    "lead_status_history": [
      {
        "status": "Qualified",
        "changed_at": "2026-01-10T11:30:00+00:00"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API token generated from Settings > API Integration. Format: Bearer

Path Parameters

id
integer
required

Customer ID

Example:

1

Response

Customer details with lead status history

success
boolean
Example:

true

data
object