Skip to main content

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.
This is a read-only tool. No authentication required.

Parameters

ParameterTypeRequiredDescription
slugstringYesThe 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
Email and phone are redacted for privacy. Use contact_broker to send a message.

Response Format

  • Text content — Formatted summary of the broker’s profile
  • Structured content — Machine-readable JSON:
{
  "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

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