curl --request GET \
--url https://api.investorlift.com/v1/wholesale-listings/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/wholesale-listings/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/wholesale-listings/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "wl_9a400cf479a21c309a0526e1fd25f1d5",
"market": "phx",
"source_listing_id": 29121,
"property": {
"id": "prop_39bff26662a6bb02899027c254a407f1",
"address_short": "121 S 92nd Ave",
"city": "TOLLESON",
"state": "AZ",
"zip": "85353",
"latitude": 33.44487,
"longitude": -112.257329,
"segment": "SFR",
"bedrooms": 3,
"sqft": 1280
},
"distance_miles": null,
"wholesaler": {
"id": "wsr_4b8d1df516b9",
"name": "Pulse Capital LLC",
"brands": [
"Pulse Capital"
]
},
"listing": {
"listed_on": "2022-06-15",
"accepted_offer_on": null,
"contract_verified_on": null,
"asking_price": 360000,
"arv_estimate": null,
"condition": null
},
"outcome": "DOUBLE_CLOSED",
"verification": "CONFIRMED",
"outcome_text": "Closed 2022-07-01 by double close (the listing company took title first); bought per the recorded deed.",
"time_fit": true,
"closed_before_publish": false,
"confidence": "HIGH",
"buyer": {
"id": "inv_e7c486427687",
"name": "RIVERA DANA",
"display_name": "DANA RIVERA",
"kind": "PERSON",
"tier": "REGISTRY_STRONG",
"market": "phx"
},
"intermediate": {
"id": "inv_bd8f38fd855b",
"name": "CHENNY PROPERTIES LLC",
"display_name": "CHENNY PROPERTIES LLC",
"is_lister": true
},
"deed": {
"closed_on": "2022-07-01",
"pattern": "DOUBLE_CLOSE",
"chain_certain": true,
"price": 360000,
"price_basis": "RECORDED",
"price_ratio": 1
},
"registry_deal_id": "deal_6caa4fc2180e7a3feb572d8c95cc2b15",
"lenders_active": [
{
"id": "len_9f4e246dcf57",
"name": "FIRST FIDELITY BANK",
"lender_class": "BANK",
"is_hard_money": false,
"n": 21,
"n_investor": 21,
"n_purchase_money": 0,
"share": 0.006495515,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_5e4ef5c48d63",
"name": "GERMAN AMERICAN CAP CORP",
"lender_class": "NONBANK",
"is_hard_money": false,
"n": 17,
"n_investor": 17,
"n_purchase_money": 0,
"share": 0.005258274,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_c5c2e7961690",
"name": "DESERT FINANCIAL CREDIT UNION",
"lender_class": "BANK",
"is_hard_money": false,
"n": 197,
"n_investor": 12,
"n_purchase_money": 5,
"share": 0.060934117,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_aeda9b5f9e0c",
"name": "WELLS FARGO BANK NA",
"lender_class": "BANK",
"is_hard_money": false,
"n": 26,
"n_investor": 11,
"n_purchase_money": 2,
"share": 0.008042066,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_b3729c2447dd",
"name": "GERMAN AMERICAN CAPITAL CORP",
"lender_class": "NONBANK",
"is_hard_money": false,
"n": 12,
"n_investor": 11,
"n_purchase_money": 0,
"share": 0.003711723,
"as_of": "2026-06-25",
"dated": true
}
],
"lister_attribution": "PRIMARY",
"lister_on_title": "INTERMEDIATE",
"lister_on_title_role": "OWN",
"buyer_fate": "HELD",
"offer_buyer_match": "UNNAMED",
"retail_signals": [],
"n_other_listings": 0,
"n_listings_on_parcel": 1,
"superseded_by_id": null,
"data_end": "2026-08-12",
"as_of": "2026-09-09"
},
"meta": {
"generated_at": "2026-09-10T00:34:00.000Z",
"coverage": [
{
"market": "phx",
"state": "AZ",
"counties": [
{
"fips": "04013",
"name": "Maricopa",
"data_end": "2026-08-12"
},
{
"fips": "04021",
"name": "Pinal",
"data_end": "2026-08-06"
}
],
"bbox": [
-113.332773,
32.46915,
-110.455491,
33.999503
],
"data_end": "2026-08-12",
"build_run_id": 1,
"registry_run": 8,
"registry_version": "v4-metro-review-fixes",
"dataset_version": 1788999683,
"loaded_at": "2026-09-10T00:21:23.302Z",
"metro_buy_to_resale_ratio": 0.7192,
"universe_kind": "metro",
"universe_zips": null,
"point_tolerance_miles": 20,
"n_parcels": 1836307,
"listings_data_end": "2026-08-31",
"agents_data_end": "2026-08-31",
"wholesale_as_of": "2026-09-09",
"str_as_of": null,
"str": null,
"auction_counted": true,
"parcel_as_of": null,
"address_as_of": null,
"parcel": null,
"lenders": null
}
],
"terms": "Data: Investorlift Data Services. Public-record and MLS listing data licensed through BatchData; municipal short-term rental registries; Investorlift marketplace records. Attribution and data-use terms: https://developers.investorlift.com/guides/terms"
}
}Get one Investorlift listing
One listing as a wholesale transaction: what the listing said, what the deeds show, who bought it and on what deed.
curl --request GET \
--url https://api.investorlift.com/v1/wholesale-listings/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/wholesale-listings/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/wholesale-listings/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "wl_9a400cf479a21c309a0526e1fd25f1d5",
"market": "phx",
"source_listing_id": 29121,
"property": {
"id": "prop_39bff26662a6bb02899027c254a407f1",
"address_short": "121 S 92nd Ave",
"city": "TOLLESON",
"state": "AZ",
"zip": "85353",
"latitude": 33.44487,
"longitude": -112.257329,
"segment": "SFR",
"bedrooms": 3,
"sqft": 1280
},
"distance_miles": null,
"wholesaler": {
"id": "wsr_4b8d1df516b9",
"name": "Pulse Capital LLC",
"brands": [
"Pulse Capital"
]
},
"listing": {
"listed_on": "2022-06-15",
"accepted_offer_on": null,
"contract_verified_on": null,
"asking_price": 360000,
"arv_estimate": null,
"condition": null
},
"outcome": "DOUBLE_CLOSED",
"verification": "CONFIRMED",
"outcome_text": "Closed 2022-07-01 by double close (the listing company took title first); bought per the recorded deed.",
"time_fit": true,
"closed_before_publish": false,
"confidence": "HIGH",
"buyer": {
"id": "inv_e7c486427687",
"name": "RIVERA DANA",
"display_name": "DANA RIVERA",
"kind": "PERSON",
"tier": "REGISTRY_STRONG",
"market": "phx"
},
"intermediate": {
"id": "inv_bd8f38fd855b",
"name": "CHENNY PROPERTIES LLC",
"display_name": "CHENNY PROPERTIES LLC",
"is_lister": true
},
"deed": {
"closed_on": "2022-07-01",
"pattern": "DOUBLE_CLOSE",
"chain_certain": true,
"price": 360000,
"price_basis": "RECORDED",
"price_ratio": 1
},
"registry_deal_id": "deal_6caa4fc2180e7a3feb572d8c95cc2b15",
"lenders_active": [
{
"id": "len_9f4e246dcf57",
"name": "FIRST FIDELITY BANK",
"lender_class": "BANK",
"is_hard_money": false,
"n": 21,
"n_investor": 21,
"n_purchase_money": 0,
"share": 0.006495515,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_5e4ef5c48d63",
"name": "GERMAN AMERICAN CAP CORP",
"lender_class": "NONBANK",
"is_hard_money": false,
"n": 17,
"n_investor": 17,
"n_purchase_money": 0,
"share": 0.005258274,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_c5c2e7961690",
"name": "DESERT FINANCIAL CREDIT UNION",
"lender_class": "BANK",
"is_hard_money": false,
"n": 197,
"n_investor": 12,
"n_purchase_money": 5,
"share": 0.060934117,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_aeda9b5f9e0c",
"name": "WELLS FARGO BANK NA",
"lender_class": "BANK",
"is_hard_money": false,
"n": 26,
"n_investor": 11,
"n_purchase_money": 2,
"share": 0.008042066,
"as_of": "2026-06-25",
"dated": true
},
{
"id": "len_b3729c2447dd",
"name": "GERMAN AMERICAN CAPITAL CORP",
"lender_class": "NONBANK",
"is_hard_money": false,
"n": 12,
"n_investor": 11,
"n_purchase_money": 0,
"share": 0.003711723,
"as_of": "2026-06-25",
"dated": true
}
],
"lister_attribution": "PRIMARY",
"lister_on_title": "INTERMEDIATE",
"lister_on_title_role": "OWN",
"buyer_fate": "HELD",
"offer_buyer_match": "UNNAMED",
"retail_signals": [],
"n_other_listings": 0,
"n_listings_on_parcel": 1,
"superseded_by_id": null,
"data_end": "2026-08-12",
"as_of": "2026-09-09"
},
"meta": {
"generated_at": "2026-09-10T00:34:00.000Z",
"coverage": [
{
"market": "phx",
"state": "AZ",
"counties": [
{
"fips": "04013",
"name": "Maricopa",
"data_end": "2026-08-12"
},
{
"fips": "04021",
"name": "Pinal",
"data_end": "2026-08-06"
}
],
"bbox": [
-113.332773,
32.46915,
-110.455491,
33.999503
],
"data_end": "2026-08-12",
"build_run_id": 1,
"registry_run": 8,
"registry_version": "v4-metro-review-fixes",
"dataset_version": 1788999683,
"loaded_at": "2026-09-10T00:21:23.302Z",
"metro_buy_to_resale_ratio": 0.7192,
"universe_kind": "metro",
"universe_zips": null,
"point_tolerance_miles": 20,
"n_parcels": 1836307,
"listings_data_end": "2026-08-31",
"agents_data_end": "2026-08-31",
"wholesale_as_of": "2026-09-09",
"str_as_of": null,
"str": null,
"auction_counted": true,
"parcel_as_of": null,
"address_as_of": null,
"parcel": null,
"lenders": null
}
],
"terms": "Data: Investorlift Data Services. Public-record and MLS listing data licensed through BatchData; municipal short-term rental registries; Investorlift marketplace records. Attribution and data-use terms: https://developers.investorlift.com/guides/terms"
}
}distance_miles is null because the request has no
reference point.
Use it when
Use it for the listing card. The card opens from a list row, a deal row’swholesale_listing block or a parcel’s
wholesale_listings[]. It also opens from the Investorlift app, by source_listing_id through the list route.
Read the response
verificationis the verdict,outcomethe detail,outcome_textthe sentence.deed.closed_ondates the transaction andlisting.listed_onis the secondary line.intermediateis the party that held title between the homeowner and the buyer on a double close or a buy-then-sell. The API names it only through its investor id.intermediate.is_listersays if it was the listing company itself.lister_on_titleandlister_on_title_rolesay if the company, or a joint-venture partner entity, ever held title.buyer_fatesays what the buyer did next: held it, resold it, or listed it on the MLS.offer_buyer_matchcompares the accepted offer’s buyer with the deed. The row showsDIFFERENTas text, and the API never names the offer party.
Gotchas
- The id must carry the
wl_prefix. Otherwise the API answers400 invalid_id. The API answers 404 for an id that is not on file in any loaded market. - For a listing whose market has no published wholesale tables, the API answers
422 wholesale_unavailable. - The row names the buyer only as a registry investor or an unregistered company. It never names a person, on any key.
Authorizations
API key from the developer console (starts with zpka_). Create one at https://developers.investorlift.com/get-a-key.
Path Parameters
Investorlift listing id, wl_ followed by 32 hex characters, from any wholesale_listing block or list row. The prefix is part of the id (400 invalid_id otherwise).
Response
The listing, in the same shape as a /v1/wholesale-listings row, with distance_miles null.
The listing, in the same shape as a /v1/wholesale-listings row, with distance_miles null.
One Investorlift listing as a wholesale transaction: what the company listed, what the county deeds record for it, and who bought it. The verdict is verification. outcome carries the detail, and outcome_text carries the sentence.
Show child attributes
Show child attributes
Response metadata: when the API produced it, which markets it covers, and how fresh they are.
Show child attributes
Show child attributes
Was this page helpful?