Contract
{
"type": "object",
"anyOf": [
{
"required": [
"organization"
]
},
{
"required": [
"similar_to"
]
},
{
"required": [
"headquarters_location"
]
},
{
"required": [
"industry"
]
},
{
"required": [
"headcount"
]
},
{
"required": [
"company_type"
]
},
{
"required": [
"year_founded"
]
},
{
"required": [
"keywords"
]
},
{
"required": [
"technology"
]
},
{
"required": [
"funding"
]
}
],
"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."
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Present instead of data/meta when the search matched nothing, e.g. 'HTTP_400' on a filter combination too narrow to match any company."
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "The company's own web domain."
},
"emails_count": {
"type": "object",
"properties": {
"total": {
"type": "number"
},
"generic": {
"type": "number",
"description": "Role addresses, e.g. info@, sales@."
},
"personal": {
"type": "number"
}
},
"description": "Counts of email addresses the data source has on file for the company.",
"additionalProperties": true
},
"organization": {
"type": "string",
"description": "The company's name."
}
},
"additionalProperties": true
},
"description": "The matching companies. Only observed on the similar_to search fixture."
},
"meta": {
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"params": {
"type": "object",
"properties": {
"similar_to": {
"type": "object",
"properties": {
"domain": {
"type": "string"
}
},
"additionalProperties": true
}
},
"description": "Echoes back the raw input parameters sent, same caveat as `filters`.",
"additionalProperties": true
},
"filters": {
"type": "object",
"properties": {
"similar_to": {
"type": "object",
"properties": {
"domain": {
"type": "string"
}
},
"additionalProperties": true
}
},
"description": "Echoes back the filters the search actually applied. Only similar_to.domain is confirmed present -- the only filter exercised across this tool's two calibration fixtures; other filter kinds (industry, headcount, location, etc.) presumably echo here too when used, but that is unconfirmed.",
"additionalProperties": true
},
"results": {
"type": "number",
"description": "Total matching companies, beyond just this page."
}
},
"description": "Pagination and an echo of the filters actually applied to the search.",
"additionalProperties": true
},
"message": {
"type": "string",
"description": "A short human-readable explanation accompanying `code`."
}
},
"description": "The discover result, as returned at routing.responseResultPath ($.output). A filter combination too narrow to match any company settles as { code, message } instead of a company list (see examples/no-match-filters.json) -- 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.
| Charge | Rate |
|---|---|
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 23, 2026
