Skip to content
Eden Engine

Real Estate Agents by Location

omnial/search-agents

Given a city and state, returns a page of real estate agents serving that area -- each agent's name, published phone number, brokerage, listing photo, and profile page -- plus the total number of agents serving the area. Supports pagination for areas with more agents than fit on one page.

activeper callv1
Provider
Web & Business Data Network
Category
homes-com
Provider price
$0.0273 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": [
    "location"
  ],
  "properties": {
    "page": {
      "type": "integer",
      "description": "Page number for pagination (1-based)"
    },
    "location": {
      "type": "string",
      "description": "City and state to search (e.g. 'Seattle, WA', 'Austin, TX')"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "page": {
          "type": "integer",
          "description": "The page number returned. 1 on two of three real calls, 2 on the third (seattle-page2.json) -- confirmed as the same requested page, not always 1."
        },
        "agents": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "The agent's own publicly listed name."
              },
              "phone": {
                "type": "string",
                "description": "The agent's published business phone number, e.g. '(206) 466-3453' -- the primary contact information this search returns."
              },
              "agent_id": {
                "type": "string",
                "description": "The provider's own internal id for this agent."
              },
              "brokerage": {
                "type": "string",
                "description": "The name of the brokerage this agent is listed under."
              },
              "name_slug": {
                "type": "string",
                "description": "URL-safe slug derived from the agent's name, used as part of profile_url."
              },
              "photo_url": {
                "type": "string",
                "description": "URL to the agent's listing photo, hosted on homes.com's own image CDN."
              },
              "profile_url": {
                "type": "string",
                "description": "URL to the agent's full homes.com profile page."
              }
            },
            "additionalProperties": true
          },
          "description": "47 entries on every one of the three real calls observed, regardless of area size or page number -- likely this endpoint's fixed page size, not confirmed as a hard cap by the vendor's own docs."
        },
        "location": {
          "type": "string",
          "description": "Echoes the input location query verbatim, e.g. 'Seattle, WA'."
        },
        "total_count": {
          "type": "integer",
          "description": "Total agents serving the area, independent of how many are on this page -- e.g. 12398 for Seattle, WA vs. 215 for North Pole, AK on real calls."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on all three real calls observed."
    }
  },
  "description": "The agent-search record, as returned at routing.responseResultPath ($.output).",
  "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.0273
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