> ## Documentation Index
> Fetch the complete documentation index at: https://developers.venturu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# get_business

> Get full details for a single business listing by its slug.

## 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.

<Info>
  This is a **read-only** tool. No authentication required.
</Info>

## Parameters

| Parameter | Type     | Required | Description                                                        |
| --------- | -------- | -------- | ------------------------------------------------------------------ |
| `slug`    | `string` | **Yes**  | The 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

<Note>
  Some listing fields may be **censored** based on the seller's visibility settings. Titles and addresses may be partially hidden for confidential listings.
</Note>

## Response Format

* **Text content** — Formatted summary with all available details
* **Structured content** — Machine-readable JSON:

```json theme={null}
{
  "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

<AccordionGroup>
  <Accordion title="Get details from search results">
    **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.
  </Accordion>

  <Accordion title="Handle not found">
    If the slug doesn't match any listing, the tool returns:

    ```
    No business found with slug "invalid-slug". Use search_businesses to find listings.
    ```
  </Accordion>
</AccordionGroup>
