v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBLeads
Get Lead
Returns a single lead by ID. The response is wrapped under the 'lead' key.
Notes:
- By default, trashed leads are not returned. Pass withTrash=true to include them.
- Caller must have access to the lead; otherwise 404 LEAD_NOT_EXIST.
get/v1.0/leads/{leadId}
Path parameters
leadIdinteger required
ID of the lead to retrieve.
Query parameters
withTrashboolean
When true, include trashed leads in the lookup.
Headers
Authorizationstring required
Bearer [access_token]
Response
Lead retrieved successfully.
Example response
{
"emails": [
"jane.doe@example.com",
"jdoe-work@company.com"
],
"phones": [
"+14155551234",
"+12125559876"
],
"leadInquiry": {
"priceMin": 1,
"priceMax": 10000000,
"propertyType": [
"Single Family Home",
"Condo"
],
"bedroomsMin": 1,
"bathroomsMin": "1",
"locations": [
{
"city": "Austin",
"stateCode": "TX"
}
]
},
"leadPropertyList": [
{
"price": 100000,
"state": "California",
"city": "New York",
"streetAddress": "22348 Regnart RD",
"zipCode": "25401",
"propertyType": "Single Family Home",
"bedrooms": 3,
"bathrooms": 2,
"squareFeet": 100,
"lotSize": 26.33,
"parkingSpace": 1,
"floors": 1,
"priceMax": 10000000,
"priceMin": 100000
}
],
"customAttributes": [
{
"attributeType": "number, text, date, anniversary_date, single_select, multi_select, percentage, currency"
}
],
"groups": [
"VIP Clients",
"Open House Feb"
],
"segments": [
"First-Time Buyers",
"Downtown Area"
],
"leadTypes": [
2,
5
],
"phoneStatuses": [
2,
3
],
"buyingTimeFrame": "6-12",
"preQual": "Yes",
"houseToSell": "Yes",
"fthb": "Yes",
"withBuyerAgent": "Yes",
"sellingTimeFrame": "1-3",
"mortgage": "Yes",
"buyHouse": "Yes",
"withListingAgent": "Yes",
"opportunity": "High Interest",
"leadFamilyMemberList": [
{
"phones": [
"+14155551234"
],
"emails": [
"spouse@example.com"
]
}
]
}