curl --request GET \
--url https://api.investorlift.com/v1/wholesalers/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/wholesalers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/wholesalers/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "wsr_4b8d1df516b9",
"market": "phx",
"name": "Pulse Capital LLC",
"brands": [
"Pulse Capital"
],
"entity_names": {
"own": [],
"partner": []
},
"home_state": null,
"investor_id": "inv_bd8f38fd855b",
"source_account_id": 293,
"n_listings": 15,
"n_verified": 12,
"n_to_investors": 10,
"n_double_closed": 3,
"n_took_title": 2,
"n_retail": 0,
"n_open": 0,
"n_no_transfer": 2,
"n_none": 3,
"n_shared": 0,
"first_listed_on": "2021-09-09",
"last_listed_on": "2022-07-29",
"n_listed_12m": 0,
"median_asking_price": 274500,
"median_days_to_deed": 17.5,
"top_buyers": [
{
"investor_id": "inv_06dd150a867e",
"name": "GYE UIO INVESTMENTS LLC",
"display_name": "GYE UIO INVESTMENTS LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "mid",
"n_deals": 18,
"last_bought_on": "2022-06-21",
"n": 1
},
{
"investor_id": "inv_282b7b8b0cb7",
"name": "MIRAMONTES PROPERTY LLC",
"display_name": "MIRAMONTES PROPERTY LLC",
"kind": "FLIPPER",
"confidence": "WEAK",
"scale": "small",
"n_deals": 2,
"last_bought_on": "2022-01-11",
"n": 1
},
{
"investor_id": "inv_3b874f0c6b5f",
"name": "RIVERA DANA",
"display_name": "DANA RIVERA",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "small",
"n_deals": 5,
"last_bought_on": "2021-09-15",
"n": 1
},
{
"investor_id": "inv_409a9ea3e85d",
"name": "I M IN MUD LLC",
"display_name": "I M IN MUD LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "large",
"n_deals": 416,
"last_bought_on": "2026-08-05",
"n": 1
},
{
"investor_id": "inv_66317d994276",
"name": "MEJIAS SERVICES LLC",
"display_name": "MEJIAS SERVICES LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "mid",
"n_deals": 56,
"last_bought_on": "2026-03-12",
"n": 1
}
],
"data_end": "2026-08-12"
},
"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 the profile of one Investorlift listing company
One Investorlift listing company: its names and legal entities, and how many of its listings closed on a recorded deed, to whom and how fast. Also the investors who buy from it most.
For its listings use /v1/wholesalers/{id}/listings. Every field here is a business name and goes to every key.
curl --request GET \
--url https://api.investorlift.com/v1/wholesalers/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/wholesalers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/wholesalers/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "wsr_4b8d1df516b9",
"market": "phx",
"name": "Pulse Capital LLC",
"brands": [
"Pulse Capital"
],
"entity_names": {
"own": [],
"partner": []
},
"home_state": null,
"investor_id": "inv_bd8f38fd855b",
"source_account_id": 293,
"n_listings": 15,
"n_verified": 12,
"n_to_investors": 10,
"n_double_closed": 3,
"n_took_title": 2,
"n_retail": 0,
"n_open": 0,
"n_no_transfer": 2,
"n_none": 3,
"n_shared": 0,
"first_listed_on": "2021-09-09",
"last_listed_on": "2022-07-29",
"n_listed_12m": 0,
"median_asking_price": 274500,
"median_days_to_deed": 17.5,
"top_buyers": [
{
"investor_id": "inv_06dd150a867e",
"name": "GYE UIO INVESTMENTS LLC",
"display_name": "GYE UIO INVESTMENTS LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "mid",
"n_deals": 18,
"last_bought_on": "2022-06-21",
"n": 1
},
{
"investor_id": "inv_282b7b8b0cb7",
"name": "MIRAMONTES PROPERTY LLC",
"display_name": "MIRAMONTES PROPERTY LLC",
"kind": "FLIPPER",
"confidence": "WEAK",
"scale": "small",
"n_deals": 2,
"last_bought_on": "2022-01-11",
"n": 1
},
{
"investor_id": "inv_3b874f0c6b5f",
"name": "RIVERA DANA",
"display_name": "DANA RIVERA",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "small",
"n_deals": 5,
"last_bought_on": "2021-09-15",
"n": 1
},
{
"investor_id": "inv_409a9ea3e85d",
"name": "I M IN MUD LLC",
"display_name": "I M IN MUD LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "large",
"n_deals": 416,
"last_bought_on": "2026-08-05",
"n": 1
},
{
"investor_id": "inv_66317d994276",
"name": "MEJIAS SERVICES LLC",
"display_name": "MEJIAS SERVICES LLC",
"kind": "FLIPPER",
"confidence": "STRONG",
"scale": "mid",
"n_deals": 56,
"last_bought_on": "2026-03-12",
"n": 1
}
],
"data_end": "2026-08-12"
},
"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"
}
}Authorizations
API key from the developer console (starts with zpka_). Create one at https://developers.investorlift.com/get-a-key.
Path Parameters
Wholesaler id, wsr_ followed by 12 hex characters, for example wsr_3f9a1c27b4e0, from any wholesale row's wholesaler.id or a search hit. The id is stable per company and has no alias table.
Query Parameters
Market code, for example phx. The loaded markets are in meta.coverage[]. Send it only when the id exists in more than one loaded market. 400 market_required says so, and a company that lists in two markets has a profile in each market. Otherwise the API uses the id's own market.
1 - 16Response
The company profile.
The company profile.
One Investorlift listing company in one market: names and entities, listing counts by what the deeds show, and the investors who buy from it.
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?