Skip to content
Eden Engine

People Search Result Count

omnial/people-count

Given a person's name, a keyword (matched anywhere in the profile, supports boolean equations), or filters on current company, employment status, job-title recency/relatedness, or search radius around a location, returns how many profiles match and estimates how many of them have a known personal email, work email, or phone number -- as counts only, with no individual profile data returned, so it's a way to size and tune a search before paying to reveal any of the matching people.

activeper callv1
Provider
Web & Business Data Network
Category
people-enrichment
Provider price
$0.00 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",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Name of the person."
    },
    "keyword": {
      "type": "string",
      "minLength": 1,
      "description": "Keyword matched anywhere in the profile. Supports boolean equations."
    },
    "company_filter": {
      "enum": [
        "current",
        "past",
        "past_only",
        "both"
      ],
      "type": "string",
      "description": "How company names match: current employer (default), any past employer, past only, or both."
    },
    "location_radius": {
      "type": "integer",
      "maximum": 500,
      "minimum": 1,
      "description": "Search radius in miles around the given location (city/area only)."
    },
    "match_experience": {
      "enum": [
        "current",
        "past",
        "both"
      ],
      "type": "string",
      "description": "Require job_title and company to match within the SAME experience entry. Cannot be combined with current_titles_only or company_filter."
    },
    "current_titles_only": {
      "type": "boolean",
      "default": true,
      "description": "Default true — match current job titles only; false also matches past titles."
    },
    "current_company_only": {
      "type": "boolean",
      "default": true,
      "description": "Default true — match the current company only."
    },
    "is_currently_working": {
      "type": "boolean",
      "description": "true → only profiles with an active current role; false → only profiles without one; omit for both."
    },
    "recently_changed_jobs": {
      "type": "boolean",
      "description": "true → only profiles whose current job started within the last 3 months. Cannot be combined with years_in_current_role."
    },
    "include_related_job_titles": {
      "type": "boolean",
      "default": false,
      "description": "Include profiles with related job titles. Default false."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "status_code",
    "total_results",
    "estimated_personal_emails",
    "estimated_work_emails",
    "estimated_phones"
  ],
  "properties": {
    "status_code": {
      "type": "integer",
      "description": "The provider's own HTTP-style status code for the search, e.g. 200 on success."
    },
    "total_results": {
      "type": "integer",
      "description": "Total number of profiles matching the given filters. 0 on both a genuinely-empty search and a filter combination too narrow to match anyone."
    },
    "estimated_phones": {
      "type": "integer",
      "description": "Estimated number of matching profiles with a known phone number on file."
    },
    "estimated_work_emails": {
      "type": "integer",
      "description": "Estimated number of matching profiles with a known work email on file."
    },
    "estimated_personal_emails": {
      "type": "integer",
      "description": "Estimated number of matching profiles with a known personal email on file."
    }
  },
  "description": "The people-count result, 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.00
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 15, 2026