Skip to content
Eden Engine

Real Estate Agent Profile Lookup

omnial/get-agent-profile

Given an agent_id and name_slug (from a prior agent search), returns that real estate agent's public profile: name, phone number, brokerage, bio, specialties, neighborhoods served, languages, and awards. Returns an empty result when the id/slug pair doesn't match a real agent.

activeper callv1
Provider
Web & Business Data Network
Category
real-estate
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "agent_id",
    "name_slug"
  ],
  "properties": {
    "agent_id": {
      "type": "string",
      "description": "Agent ID from a prior agent search (e.g. 'ycqgq7s')."
    },
    "name_slug": {
      "type": "string",
      "description": "Agent name slug from the profile URL path (e.g. 'bret-butler')."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "bio": {
          "type": [
            "string",
            "null"
          ],
          "description": "Free-text agent biography. Observed as `null` on the one real fixture captured -- not every agent has one on file, so this field is not guaranteed to be a string."
        },
        "name": {
          "type": "string",
          "description": "The agent's own name, e.g. 'Bret Butler'."
        },
        "phone": {
          "type": "string",
          "description": "The agent's published business phone number, e.g. '(206) 309-4924'."
        },
        "awards": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Award/credential names self-reported on the agent's profile."
        },
        "agent_id": {
          "type": "string"
        },
        "brokerage": {
          "type": "string",
          "description": "e.g. 'COMPASS'."
        },
        "languages": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Observed as an empty array on the one real fixture -- not every agent lists one."
        },
        "specialties": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "e.g. 'First Time Homebuyers', 'Investments', 'Luxury Homes'."
        },
        "neighborhoods_served": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Neighborhood names; may repeat an entry, as observed on the one real fixture."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one real fixture observed."
    }
  },
  "description": "The agent profile, as returned at routing.responseResultPath ($.output). A genuinely not-found id/name_slug pair shapes to `{}` (examples/nonexistent-agent.json's own census recorded zero leaf paths) -- no field below is guaranteed present.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026