Skip to main content

get_business

Retrieve comprehensive details for a specific business listing on Venturu. Use this after search_businesses to get the full picture on a listing the user is interested in.
This is a read-only tool. No authentication required.

Parameters

ParameterTypeRequiredDescription
slugstringYesThe business listing’s URL slug (from search_businesses results)

Response

The tool returns detailed listing information including:
  • Business name, description, and highlights
  • Asking price, revenue, profit, and SDE
  • Financial multiples (SDE multiple, revenue multiple)
  • Location (city, state, country — exact address may be censored)
  • Business type and industry category
  • Establishment year and employee count
  • Financing details (down payment, SBA qualification)
  • Facility information (if applicable)
  • Listing status and seller type
Some listing fields may be censored based on the seller’s visibility settings. Titles and addresses may be partially hidden for confidential listings.

Response Format

  • Text content — Formatted summary with all available details
  • Structured content — Machine-readable JSON:
{
  "listing": {
    "id": 1234,
    "slug": "profitable-restaurant-miami",
    "title": "Profitable Restaurant in Miami",
    "description": "Well-established restaurant with loyal customer base...",
    "askingPrice": 450000,
    "revenue": 1200000,
    "cashFlow": 250000,
    "sde": 280000,
    "location": "Miami, FL",
    "businessType": "Restaurant",
    "yearEstablished": 2015,
    "employees": 12,
    "status": "ACTIVE"
  }
}

Examples

Step 1: Search for businesses → results include slug: "profitable-restaurant-miami"Step 2: Call get_business with slug: "profitable-restaurant-miami"Result: Full listing details including financials, description, and facility info.
If the slug doesn’t match any listing, the tool returns:
No business found with slug "invalid-slug". Use search_businesses to find listings.