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

> Get full details for a single broker by their profile slug.

## get\_broker

Retrieve the full profile for a specific broker (agent) on Venturu. Use this after `search_brokers` to get detailed information about a broker 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 broker's profile slug (from `search_brokers` results) |

## Response

The tool returns detailed broker information including:

* Name, title, and company
* Bio and professional background
* Service areas and specializations
* Languages spoken
* Number of active listings
* Ratings and reviews
* Years of experience
* Professional licenses

<Warning>
  Email and phone are **redacted** for privacy. Use `contact_broker` to send a message.
</Warning>

## Response Format

* **Text content** — Formatted summary of the broker's profile
* **Structured content** — Machine-readable JSON:

```json theme={null}
{
  "broker": {
    "slug": "jane-smith",
    "name": "Jane Smith",
    "title": "Senior Business Broker",
    "company": "Smith & Associates",
    "bio": "15+ years of experience in business brokerage...",
    "serviceAreas": ["Miami, FL", "Fort Lauderdale, FL"],
    "languages": ["English", "Spanish"],
    "activeListings": 12,
    "rating": 4.8,
    "reviewCount": 23
  }
}
```

## Examples

<AccordionGroup>
  <Accordion title="Get details from search results">
    **Step 1:** Search for brokers → results include `slug: "jane-smith"`

    **Step 2:** Call `get_broker` with `slug: "jane-smith"`

    **Result:** Full broker profile with bio, service areas, and experience.
  </Accordion>

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

    ```
    No verified broker found with slug "invalid-slug". Use search_brokers to find brokers.
    ```
  </Accordion>
</AccordionGroup>
