Skip to content
Eden Engine

Company Profile Lookup by Domain

omnial/companies-find

Given a company's domain, returns its business profile: industry classification, employee count and revenue estimates, headquarters address, founding year, detected technology stack, and the company's own published contact details (phone number, contact email addresses) and social media handles. A domain with no indexed profile returns an empty result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.00653016 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": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "minLength": 1,
      "description": "Domain name, e.g. 'stripe.com'. Preferred over company — it skips the name-to-domain conversion."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The data source's own internal record id."
        },
        "geo": {
          "type": "object",
          "properties": {
            "lat": {
              "type": [
                "number",
                "null"
              ]
            },
            "lng": {
              "type": [
                "number",
                "null"
              ]
            },
            "city": {
              "type": [
                "string",
                "null"
              ]
            },
            "state": {
              "type": [
                "string",
                "null"
              ]
            },
            "country": {
              "type": [
                "string",
                "null"
              ]
            },
            "stateCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "postalCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "streetName": {
              "type": [
                "string",
                "null"
              ]
            },
            "subPremise": {
              "type": [
                "string",
                "null"
              ]
            },
            "countryCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "streetNumber": {
              "type": [
                "string",
                "null"
              ]
            },
            "streetAddress": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "description": "The company's headquarters address, as geocoded by the data source.",
          "additionalProperties": true
        },
        "logo": {
          "type": [
            "string",
            "null"
          ],
          "description": "Stripped -- see responseShaping. Always null in the shaped output even when the upstream record has a logo image."
        },
        "name": {
          "type": "string",
          "description": "The company's trade name."
        },
        "site": {
          "type": "object",
          "properties": {
            "phoneNumbers": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "emailAddresses": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "description": "Contact details the company itself published on its own website.",
          "additionalProperties": true
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "tech": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Detected technology stack slugs."
        },
        "type": {
          "type": [
            "string",
            "null"
          ],
          "description": "e.g. 'private'."
        },
        "phone": {
          "type": [
            "string",
            "null"
          ],
          "description": "The company's own published phone number."
        },
        "domain": {
          "type": "string"
        },
        "parent": {
          "type": "object",
          "properties": {
            "domain": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "ticker": {
          "type": [
            "string",
            "null"
          ]
        },
        "metrics": {
          "type": "object",
          "properties": {
            "raised": {
              "type": [
                "number",
                "null"
              ]
            },
            "employees": {
              "type": [
                "string",
                "null"
              ],
              "description": "A bucketed range, e.g. '10K-50K'."
            },
            "marketCap": {
              "type": [
                "number",
                "null"
              ]
            },
            "alexaUsRank": {
              "type": [
                "integer",
                "null"
              ]
            },
            "trafficRank": {
              "type": [
                "string",
                "null"
              ]
            },
            "annualRevenue": {
              "type": [
                "number",
                "null"
              ]
            },
            "fiscalYearEnd": {
              "type": [
                "string",
                "null"
              ]
            },
            "employeesCount": {
              "type": [
                "integer",
                "null"
              ]
            },
            "alexaGlobalRank": {
              "type": [
                "integer",
                "null"
              ]
            },
            "estimatedAnnualRevenue": {
              "type": [
                "number",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "twitter": {
          "type": "object",
          "properties": {
            "id": {
              "type": [
                "string",
                "number",
                "null"
              ]
            },
            "bio": {
              "type": [
                "string",
                "null"
              ]
            },
            "site": {
              "type": [
                "string",
                "null"
              ]
            },
            "avatar": {
              "type": [
                "string",
                "null"
              ],
              "description": "Stripped -- see responseShaping. Always null in the shaped output."
            },
            "handle": {
              "type": [
                "string",
                "null"
              ]
            },
            "location": {
              "type": [
                "string",
                "null"
              ]
            },
            "followers": {
              "type": [
                "number",
                "null"
              ]
            },
            "following": {
              "type": [
                "number",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "youtube": {
          "type": "object",
          "properties": {
            "handle": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "category": {
          "type": "object",
          "properties": {
            "sector": {
              "type": [
                "string",
                "null"
              ]
            },
            "sicCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "gicsCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "industry": {
              "type": [
                "string",
                "null"
              ]
            },
            "naicsCode": {
              "type": [
                "string",
                "null"
              ]
            },
            "sic4Codes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "naics6Codes": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "subIndustry": {
              "type": [
                "string",
                "null"
              ]
            },
            "industryGroup": {
              "type": [
                "string",
                "null"
              ]
            },
            "naics6Codes2022": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "additionalProperties": true
        },
        "facebook": {
          "type": "object",
          "properties": {
            "likes": {
              "type": [
                "number",
                "null"
              ]
            },
            "handle": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "linkedin": {
          "type": "object",
          "properties": {
            "handle": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "location": {
          "type": [
            "string",
            "null"
          ],
          "description": "A single-line formatted address."
        },
        "timeZone": {
          "type": [
            "string",
            "null"
          ]
        },
        "indexedAt": {
          "type": [
            "string",
            "null"
          ],
          "description": "Date the data source last indexed this record."
        },
        "instagram": {
          "type": "object",
          "properties": {
            "handle": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "legalName": {
          "type": [
            "string",
            "null"
          ]
        },
        "utcOffset": {
          "type": [
            "number",
            "null"
          ]
        },
        "crunchbase": {
          "type": "object",
          "properties": {
            "handle": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        },
        "companyType": {
          "type": [
            "string",
            "null"
          ],
          "description": "e.g. 'privately held'."
        },
        "description": {
          "type": [
            "string",
            "null"
          ],
          "description": "A short prose summary of the company. Only observed populated once."
        },
        "foundedYear": {
          "type": [
            "integer",
            "null"
          ]
        },
        "identifiers": {
          "type": "object",
          "properties": {
            "usEIN": {
              "type": [
                "string",
                "null"
              ],
              "description": "US Employer Identification Number, a public business registration id."
            }
          },
          "additionalProperties": true
        },
        "domainAliases": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "emailProvider": {
          "type": [
            "string",
            "null"
          ],
          "description": "The hostname of the company's mail provider, e.g. 'google.com' -- not a contact address."
        },
        "fundingRounds": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": true
          },
          "description": "Observed empty on the one fixture captured; the shape of a populated entry is unconfirmed."
        },
        "techCategories": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "ultimateParent": {
          "type": "object",
          "properties": {
            "domain": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "additionalProperties": true
        }
      },
      "description": "The company record. Only observed on one fixture (stripe.com).",
      "additionalProperties": true
    },
    "meta": {
      "type": "object",
      "properties": {
        "domain": {
          "type": "string"
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The company profile result, as returned at routing.responseResultPath ($.output). A domain with no indexed company profile settles as an empty object (see examples/nonexistent-domain.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.

ChargeRate
Per call
Flat, regardless of what comes back
$0.00653016
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 8, 2026