Skip to content
Eden Engine

Industry Category & Filter Value Lookup

omnial/search-industries

Given a keyword, returns matching industry labels (e.g. 'software', 'computer software', 'software as a service') along with each industry's slug-style filter value and how many companies are classified under it -- built to find the exact industry value to pass into a company search or enrichment lookup. A keyword that matches nothing returns an empty result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
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": [
    "search"
  ],
  "properties": {
    "page": {
      "type": "integer",
      "description": "Page number for pagination."
    },
    "size": {
      "type": "integer",
      "description": "Requested results per page. The API may return a different perPage value."
    },
    "search": {
      "type": "string",
      "description": "Search keyword to filter industries."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "status",
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "meta",
        "suggestions"
      ],
      "properties": {
        "meta": {
          "type": "object",
          "required": [
            "currentPage",
            "firstPage",
            "lastPage",
            "perPage",
            "total"
          ],
          "properties": {
            "total": {
              "type": "integer",
              "description": "Total number of industries matching the search keyword, across all pages."
            },
            "perPage": {
              "type": "integer",
              "description": "Results per page actually returned."
            },
            "lastPage": {
              "type": "integer",
              "description": "The last available page number for this search (e.g. 24 for a 232-match search at 10 per page; 1 when there are no matches)."
            },
            "firstPage": {
              "type": "integer",
              "description": "Always 1 on both real calls observed."
            },
            "currentPage": {
              "type": "integer",
              "description": "The page number returned."
            }
          },
          "description": "Pagination and result-count metadata for this search.",
          "additionalProperties": true
        },
        "suggestions": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "value",
              "companiesCount"
            ],
            "properties": {
              "label": {
                "type": "string",
                "description": "Human-readable industry name, e.g. 'computer software'."
              },
              "value": {
                "type": "string",
                "description": "The slug-style filter value to pass into a company search or enrichment lookup, e.g. 'computer-software'."
              },
              "companiesCount": {
                "type": "integer",
                "description": "Number of companies the vendor classifies under this industry."
              }
            },
            "additionalProperties": true
          },
          "description": "Matching industries for this page of results. Empty when the keyword matches nothing (see examples/zzzznonexistent-empty.json), never absent."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The industry search result, as returned at the endpoint's result path.",
  "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