Skip to content
Eden Engine

Company Office Locations Lookup (by Profile Slug)

omnial/get-company-locations

Given a company's profile slug (from a company search), returns the physical office locations on file for that company -- each with a location name, street address, city, state, postal code, country, phone number, and employee headcount range for that office. A slug with no offices on record returns an empty list rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
company-reviews
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": [
    "slug"
  ],
  "properties": {
    "slug": {
      "type": "string",
      "description": "Company profile slug from search_companies results."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "slug": {
          "type": "string",
          "description": "Echoes the requested `slug` input."
        },
        "locations": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "city": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed populated on the headquarters entry and `null` on every secondary office entry across the one real populated call captured -- do not assume this is always populated."
              },
              "name": {
                "type": "string",
                "description": "A label for the office, e.g. 'Headquarters' or a 'City, ST' string for a secondary office -- observed both forms on the one real populated call."
              },
              "phone": {
                "type": "string",
                "description": "Office phone number. Observed as an empty string on one office entry in the one real populated call captured, so a missing phone number is not a missing field, it is an empty string -- do not assume this is always populated."
              },
              "state": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Same pattern as `city`: populated on the headquarters entry, `null` on every secondary office entry observed."
              },
              "street": {
                "type": "string",
                "description": "Street address line."
              },
              "country": {
                "type": "string",
                "description": "Full country name, e.g. 'United States'."
              },
              "employees": {
                "type": "string",
                "description": "Employee headcount range for that specific office (e.g. '401 - 500'), not the company's total headcount."
              },
              "postal_code": {
                "type": "string",
                "description": "Postal/ZIP code."
              }
            },
            "additionalProperties": true
          },
          "description": "Office locations for the company. Empty on a slug with none on file (accenture, one real call observed); 6 entries on the one real populated call observed (webfx). Ordering and any pagination beyond that are unconfirmed."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The office-locations record, as returned at routing.responseResultPath ($.output) after shaping. `data.locations` is an empty array (not missing, not null) when the requested company profile has no offices on file (see examples/accenture-found.json) -- the call still settles COMPLETED with `data.slug` echoed back.",
  "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 15, 2026