Skip to content
Eden Engine

Company Search with Reachable-Contact Counts

omnial/discover-people

Given company-level filters (domain or name, industry, headcount, headquarters location, company type, founding year, technology stack, funding, and more), returns the matching companies together with how many personal and generic email addresses are indexed as reachable at each one, plus totals across every match. This returns company-level counts, not individual names, emails, or contact records.

activeper callv1
Provider
Web & Business Data Network
Category
company-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": {
    "limit": {
      "type": "integer",
      "maximum": 100,
      "minimum": 1,
      "description": "Companies per page. Default and max 100."
    },
    "offset": {
      "type": "integer",
      "maximum": 10000,
      "minimum": 0,
      "description": "Companies to skip. Max 10,000."
    },
    "funding": {
      "type": "object",
      "properties": {
        "date": {
          "type": "object",
          "properties": {
            "to": {
              "type": "string",
              "description": "YYYY-MM-DD"
            },
            "from": {
              "type": "string",
              "description": "YYYY-MM-DD"
            }
          }
        },
        "amount": {
          "type": "object",
          "properties": {
            "to": {
              "type": "number"
            },
            "from": {
              "type": "number"
            }
          }
        },
        "series": {
          "type": "array",
          "items": {
            "enum": [
              "pre_seed",
              "seed",
              "pre_series_a",
              "series_a",
              "pre_series_b",
              "series_b",
              "pre_series_c",
              "series_c+",
              "other"
            ],
            "type": "string"
          }
        }
      }
    },
    "industry": {
      "type": "object",
      "properties": {
        "exclude": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "include": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "description": "Industries to include/exclude. Valid values: https://hunter.io/files/industries.json"
    },
    "keywords": {
      "type": "object",
      "properties": {
        "match": {
          "enum": [
            "any",
            "all"
          ],
          "type": "string",
          "description": "Match on any or all of the listed values. Default 'all'."
        },
        "exclude": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "include": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      }
    },
    "headcount": {
      "type": "array",
      "items": {
        "enum": [
          "1-10",
          "11-50",
          "51-200",
          "201-500",
          "501-1000",
          "1001-5000",
          "5001-10000",
          "10001+"
        ],
        "type": "string"
      },
      "description": "Company size ranges to include."
    },
    "similar_to": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "minLength": 1
        },
        "domain": {
          "type": "string",
          "minLength": 1
        }
      },
      "description": "Find companies similar to one domain or name (domain wins)."
    },
    "technology": {
      "type": "object",
      "properties": {
        "match": {
          "enum": [
            "any",
            "all"
          ],
          "type": "string",
          "description": "Match on any or all of the listed values. Default 'all'."
        },
        "exclude": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "include": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "description": "Technologies in use. Valid values: https://hunter.io/files/technologies.json"
    },
    "company_type": {
      "type": "object",
      "properties": {
        "exclude": {
          "type": "array",
          "items": {
            "enum": [
              "educational",
              "educational institution",
              "government agency",
              "non profit",
              "partnership",
              "privately held",
              "public company",
              "self employed",
              "self owned",
              "sole proprietorship"
            ],
            "type": "string"
          }
        },
        "include": {
          "type": "array",
          "items": {
            "enum": [
              "educational",
              "educational institution",
              "government agency",
              "non profit",
              "partnership",
              "privately held",
              "public company",
              "self employed",
              "self owned",
              "sole proprietorship"
            ],
            "type": "string"
          }
        }
      }
    },
    "organization": {
      "type": "object",
      "properties": {
        "name": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "domain": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "description": "Select specific companies by domain or name."
    },
    "year_founded": {
      "type": "object",
      "properties": {
        "to": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": -9007199254740991
        },
        "from": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": -9007199254740991
        },
        "exclude": {
          "type": "array",
          "items": {
            "type": "integer",
            "maximum": 9007199254740991,
            "minimum": -9007199254740991
          }
        },
        "include": {
          "type": "array",
          "items": {
            "type": "integer",
            "maximum": 9007199254740991,
            "minimum": -9007199254740991
          }
        }
      },
      "description": "Founding years: a from/to range, or explicit years to include/exclude (not both)."
    },
    "headquarters_location": {
      "type": "object",
      "properties": {
        "exclude": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "city": {
                "type": "string"
              },
              "state": {
                "type": "string",
                "description": "US state code — only valid when country is 'US'."
              },
              "country": {
                "type": "string",
                "maxLength": 2,
                "minLength": 2,
                "description": "ISO 3166-1 alpha-2 country code, e.g. 'US'."
              },
              "continent": {
                "enum": [
                  "Africa",
                  "Antarctica",
                  "Asia",
                  "Europe",
                  "North America",
                  "Oceania",
                  "South America"
                ],
                "type": "string"
              },
              "business_region": {
                "enum": [
                  "AMER",
                  "EMEA",
                  "APAC",
                  "LATAM"
                ],
                "type": "string"
              }
            },
            "description": "A location: continent, business_region, or country (+ state/city)."
          }
        },
        "include": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "city": {
                "type": "string"
              },
              "state": {
                "type": "string",
                "description": "US state code — only valid when country is 'US'."
              },
              "country": {
                "type": "string",
                "maxLength": 2,
                "minLength": 2,
                "description": "ISO 3166-1 alpha-2 country code, e.g. 'US'."
              },
              "continent": {
                "enum": [
                  "Africa",
                  "Antarctica",
                  "Asia",
                  "Europe",
                  "North America",
                  "Oceania",
                  "South America"
                ],
                "type": "string"
              },
              "business_region": {
                "enum": [
                  "AMER",
                  "EMEA",
                  "APAC",
                  "LATAM"
                ],
                "type": "string"
              }
            },
            "description": "A location: continent, business_region, or country (+ state/city)."
          }
        }
      },
      "description": "Headquarters locations to include and/or exclude."
    }
  },
  "minProperties": 1,
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "domain": {
            "type": "string",
            "description": "The matched company's primary domain."
          },
          "emails_count": {
            "type": "object",
            "properties": {
              "total": {
                "type": "number",
                "description": "generic + personal."
              },
              "generic": {
                "type": "number",
                "description": "Role-based addresses, e.g. info@, support@."
              },
              "personal": {
                "type": "number",
                "description": "Person-attributed addresses at this company (a count, not names or emails)."
              }
            },
            "description": "Counts of email addresses indexed as reachable at this company -- aggregate counts only, never the addresses themselves.",
            "additionalProperties": true
          },
          "organization": {
            "type": "string",
            "description": "The matched company's display name."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per matching company (up to `meta.limit` per call)."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Companies per page for this call."
        },
        "offset": {
          "type": "number",
          "description": "Companies skipped before this page."
        },
        "results": {
          "type": "number",
          "description": "Number of companies returned in `data`."
        },
        "total_emails": {
          "type": "object",
          "properties": {
            "total": {
              "type": "number"
            },
            "generic": {
              "type": "number"
            },
            "personal": {
              "type": "number"
            }
          },
          "description": "The same generic/personal/total counts, summed across every match.",
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    }
  },
  "description": "Companies matching the given filters, as returned at routing.responseResultPath ($.output). Every field is company-level or an aggregate count -- no individual name, email, or contact record is ever present here.",
  "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 25, 2026