Create Your First Listing
A listing represents a business for sale on Venturu. Let’s get one live!Quick Start
Every listing created through the API needs a broker. You can either reference an existing broker or create one inline with the listing. Both approaches work great!
PUT /partner/v1/listings/{externalListingId}
1
Choose an External ID
Pick a unique ID from your system:
- MLS number:
MLS-123456 - Database ID:
LISTING-789 - Custom format:
biz-miami-restaurant-001
2
Link to a Broker
You have two options:
- Reference Existing Broker (Easier)
- Create Broker Inline (Faster)
Use the broker’s external ID:
3
Add Business Details
Minimum Required Fields
4
Send the Request
5
Success!
Listing is live! Buyers can now find it on Venturu.
Complete Example
Here’s a full listing with all the important fields:Essential Fields
Broker (Required)
Broker (Required)
Option 1: Reference existing brokerOption 2: Create broker inline
Status (Required)
Status (Required)
Controls visibility:
FOR_SALE- Live and searchable (use this!)DRAFT- Not yet publishedARCHIVED- Temporarily hiddenUNDER_CONTRACT- Deal in progressSOLD- Business sold
Business Type (Required)
Business Type (Required)
The type of business:
RestaurantRetailService BusinessE-commerceManufacturing- And more…
Location (Required)
Location (Required)
SHOW_FULL_ADDRESS- Show complete addressSHOW_CITY_STATE- Show only city and stateSHOW_STATE_ONLY- Show only state
Recommended Fields
- Financials
- Property
- Photos
- Description
SDE = Seller’s Discretionary Earnings. This is what most buyers care about!
Common Questions
What if listing already exists?
What if listing already exists?
No worries! If you use the same
externalListingId, it will update instead of creating a duplicate. See Updating a Listing.Can I create listing and broker together?
Can I create listing and broker together?
Yes! Use the inline
broker object. Both will be created/updated in one API call.How long until it appears on Venturu?
How long until it appears on Venturu?
Instantly for
FOR_SALE listings. We generate SEO-optimized URLs and descriptions in the background (takes ~1 minute).What about draft listings?
What about draft listings?
Use
"status": "DRAFT" to create without publishing. Change to FOR_SALE when ready. See Managing Listing Status.