Skip to content
Eden Engine

Salary & Compensation Data (by Company and Job Family)

omnial/get-salary-data

Given a company and job family (and optionally a location), returns pay broken down by level: per-level average base salary, bonus, stock, and total compensation, plus p10/p25/p50/p75/p90 percentile breakdowns aggregated across all levels combined, the individual anonymized reported offers backing each level's averages, and company profile context (HQ, headcount, funding stage, equity vesting terms). Returns no data, not an error, when the company isn't in the underlying dataset.

activeper callv1
Provider
Web & Business Data Network
Category
compensation
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": [
    "company_slug"
  ],
  "properties": {
    "location": {
      "type": "string",
      "description": "Location slug to filter salary data by geographic area. Accepts country slugs (e.g. 'germany', 'united-kingdom', 'india') or metro area slugs (e.g. 'london-metro-area', 'san-francisco-bay-area', 'greater-seattle-area'). When provided, results are filtered to that location and location_meta is populated. Omitting returns the default country data (United States)."
    },
    "company_slug": {
      "type": "string",
      "description": "Company slug identifier (e.g. 'google', 'meta', 'amazon'). Obtain from get_popular_companies or get_company_overview."
    },
    "job_family_slug": {
      "type": "string",
      "description": "Job family slug (e.g. 'software-engineer', 'product-manager', 'data-scientist'). Obtain from get_job_families."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "levels": {
      "type": "object",
      "properties": {
        "color": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "levels": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "order": {
                "type": "number"
              },
              "titles": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "titleSlugs": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "description": {
                "description": "String or `null`, observed both ways across levels of the same fixture."
              },
              "public_notes": {
                "description": "Observed `null` on every level."
              },
              "percent_workforce": {
                "type": "number"
              },
              "target_bonus_percentage": {
                "description": "Observed `null` on every level."
              }
            },
            "additionalProperties": true
          }
        },
        "company": {
          "type": "string"
        },
        "generic": {
          "type": "boolean"
        },
        "job_family": {
          "type": "string"
        },
        "company_slug": {
          "type": "string"
        },
        "job_family_slug": {
          "type": "string"
        },
        "hasSalaryLevelData": {
          "type": "boolean"
        },
        "job_family_public_notes": {
          "description": "Observed `null`."
        }
      },
      "description": "The company's level ladder for this job family.",
      "additionalProperties": true
    },
    "median": {
      "type": "object",
      "properties": {
        "uuid": {
          "type": "string"
        },
        "count": {
          "type": "number",
          "description": "Sample size the median was computed over."
        },
        "level": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "focusTag": {
          "type": "string"
        },
        "location": {
          "type": "string"
        },
        "education": {
          "description": "Observed `null`."
        },
        "jobFamily": {
          "type": "string"
        },
        "offerDate": {
          "type": "string"
        },
        "salesComp": {
          "description": "Observed `null`."
        },
        "stockType": {
          "type": "string"
        },
        "baseSalary": {
          "type": "number"
        },
        "companyInfo": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "registered": {
              "type": "boolean"
            }
          },
          "additionalProperties": true
        },
        "exchangeRate": {
          "type": "number"
        },
        "salaryFormat": {
          "type": "string"
        },
        "yearsAtLevel": {
          "description": "Observed `null`."
        },
        "bonusCurrency": {
          "type": "string"
        },
        "employmentType": {
          "type": "string"
        },
        "yearsAtCompany": {
          "type": "number"
        },
        "compPerspective": {
          "type": "string",
          "description": "e.g. 'offer'."
        },
        "workArrangement": {
          "type": "string"
        },
        "totalCompensation": {
          "type": "number"
        },
        "yearsOfExperience": {
          "type": "number"
        },
        "baseSalaryCurrency": {
          "type": "string"
        },
        "stockGrantCurrency": {
          "type": "string"
        },
        "avgAnnualBonusValue": {
          "type": "number"
        },
        "firstYearBonusValue": {
          "type": "number"
        },
        "avgAnnualStockGrantValue": {
          "type": "number"
        },
        "firstYearStockGrantValue": {
          "type": "number"
        },
        "firstYearTotalCompensation": {
          "type": "number"
        }
      },
      "description": "The single median-compensation reported offer for this company/job family.",
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one populated fixture observed."
    },
    "company": {
      "type": "object",
      "properties": {
        "ein": {
          "type": "string",
          "description": "The company's own public tax identifier, not a person's."
        },
        "name": {
          "type": "string"
        },
        "slug": {
          "type": "string"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "color": {
          "type": "array",
          "items": {
            "type": "number"
          },
          "description": "RGB triplet."
        },
        "ticker": {
          "type": "string"
        },
        "aliases": {
          "type": "string",
          "description": "Comma-separated alternate names, as one string."
        },
        "country": {
          "description": "Observed `null` on the one fixture with data; shape when populated is unconfirmed."
        },
        "culture": {
          "type": "object",
          "properties": {
            "coreValues": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "rank": {
                    "type": "number"
                  },
                  "emoji": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "description": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              }
            },
            "testimonials": {
              "type": "array",
              "description": "Empty on the one fixture observed; item shape unconfirmed."
            }
          },
          "additionalProperties": true
        },
        "domains": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "hq_city": {
          "type": "string"
        },
        "hq_state": {
          "type": "string"
        },
        "industry": {
          "type": "string"
        },
        "insights": {
          "description": "Observed `null` on the one fixture with data; populated shape is unconfirmed."
        },
        "linkedin": {
          "type": "string",
          "description": "LinkedIn company-page slug, not a URL."
        },
        "emp_count": {
          "type": "number"
        },
        "crunchbase": {
          "type": "string",
          "description": "Crunchbase org slug, not a URL."
        },
        "hq_address": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "hq_latitude": {
          "type": "number"
        },
        "company_type": {
          "type": "string"
        },
        "hq_longitude": {
          "type": "number"
        },
        "jobBoardSlug": {
          "description": "Observed `null`."
        },
        "last_updated": {
          "type": "string"
        },
        "pay_schedule": {
          "type": "string"
        },
        "public_notes": {
          "description": "Observed `null`."
        },
        "vesting_type": {
          "type": "string"
        },
        "year_founded": {
          "type": "number"
        },
        "funding_stage": {
          "type": "string"
        },
        "hq_state_code": {
          "type": "string"
        },
        "general_levels": {
          "type": "string",
          "description": "Comma-separated level codes, e.g. 'L3,L4,L5'."
        },
        "perks_verified": {
          "description": "Observed `null`."
        },
        "previous_slugs": {
          "description": "Observed `null`."
        },
        "vesting_detail": {
          "type": "string"
        },
        "vesting_schedule": {
          "type": "string"
        },
        "short_description": {
          "type": "string"
        },
        "estimated_valuation": {
          "type": "string"
        },
        "employee_count_range": {
          "type": "string"
        },
        "clearbit_not_supported": {
          "type": "boolean"
        },
        "related_companies_slugs": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "rank": {
                "type": "number"
              },
              "slug": {
                "type": "string"
              },
              "source": {
                "type": "string",
                "description": "e.g. 'llm' -- how the relation was determined."
              },
              "rationale": {
                "type": "string"
              },
              "confidence": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        },
        "estimated_annual_revenue": {
          "type": "string"
        },
        "related_companies_generated_at": {
          "type": "string"
        }
      },
      "description": "Profile of the company the data is scoped to.",
      "additionalProperties": true
    },
    "averages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "base": {
            "type": "number"
          },
          "bonus": {
            "type": "number"
          },
          "count": {
            "type": "number"
          },
          "level": {
            "type": "string"
          },
          "stock": {
            "type": "number"
          },
          "total": {
            "type": "number"
          },
          "titles": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "yoeAvg": {
            "type": "string",
            "description": "Decimal average years of experience, as a string."
          },
          "samples": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "uuid": {
                  "type": "string",
                  "description": "Random id for the anonymized submission."
                },
                "level": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "company": {
                  "type": "string"
                },
                "focusTag": {
                  "description": "String, or `null` when unspecified."
                },
                "location": {
                  "type": "string",
                  "description": "e.g. 'Miami, FL'."
                },
                "offerDate": {
                  "type": "string"
                },
                "baseSalary": {
                  "type": "number"
                },
                "yearsAtCompany": {
                  "type": "number"
                },
                "totalCompensation": {
                  "type": "number"
                },
                "yearsOfExperience": {
                  "type": "number"
                },
                "avgAnnualBonusValue": {
                  "type": "number"
                },
                "avgAnnualStockGrantValue": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "Individual anonymized reported offers backing this level's averages -- no name, email, or contact detail on any sample observed."
          },
          "rawValues": {
            "type": "object",
            "properties": {
              "base": {
                "type": "number"
              },
              "bonus": {
                "type": "number"
              },
              "stock": {
                "type": "number"
              },
              "total": {
                "type": "number"
              },
              "commission": {
                "type": "number"
              }
            },
            "additionalProperties": true
          },
          "yoeMedian": {
            "type": "number"
          },
          "commission": {
            "type": "number"
          },
          "levelIndex": {
            "type": "number"
          },
          "levelPageUrl": {
            "type": "string",
            "description": "A relative path, not an absolute URL."
          },
          "formattedValues": {
            "type": "object",
            "properties": {
              "base": {
                "type": "string"
              },
              "bonus": {
                "type": "string"
              },
              "stock": {
                "type": "string"
              },
              "total": {
                "type": "string"
              }
            },
            "additionalProperties": true
          },
          "primaryLevelName": {
            "type": "string"
          },
          "shortestLevelName": {
            "type": "string"
          },
          "secondaryLevelName": {
            "type": "string"
          },
          "count_last_12_months": {
            "type": "number"
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per level, ordered by levelIndex."
    },
    "job_family": {
      "type": "string"
    },
    "percentiles": {
      "type": "object",
      "properties": {
        "tc": {
          "type": "object",
          "properties": {
            "p10": {
              "type": "number"
            },
            "p25": {
              "type": "number"
            },
            "p50": {
              "type": "number"
            },
            "p75": {
              "type": "number"
            },
            "p90": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "bonus": {
          "type": "object",
          "properties": {
            "p10": {
              "type": "number"
            },
            "p25": {
              "type": "number"
            },
            "p50": {
              "type": "number"
            },
            "p75": {
              "type": "number"
            },
            "p90": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "base_salary": {
          "type": "object",
          "properties": {
            "p10": {
              "type": "number"
            },
            "p25": {
              "type": "number"
            },
            "p50": {
              "type": "number"
            },
            "p75": {
              "type": "number"
            },
            "p90": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "stock_grant": {
          "type": "object",
          "properties": {
            "p10": {
              "type": "number"
            },
            "p25": {
              "type": "number"
            },
            "p50": {
              "type": "number"
            },
            "p75": {
              "type": "number"
            },
            "p90": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "locationName": {
          "type": "string"
        }
      },
      "description": "p10/p25/p50/p75/p90 breakdowns across all levels combined.",
      "additionalProperties": true
    },
    "location_meta": {
      "description": "Observed as `null` on every fixture, both of which omitted the optional `location` input. Per the endpoint's own documented behavior it is populated when a location filter is supplied -- that populated shape was never observed in a real call and is UNCONFIRMED; treat this field as null-or-unknown-object, not as always null."
    },
    "location_currency": {
      "type": "string",
      "description": "e.g. 'USD'."
    }
  },
  "description": "The salary-data result, as returned at routing.responseResultPath ($.output). Observed as a literal `null` when company_slug isn't recognized by the underlying dataset (a settled, non-error run billed $0 -- see the a-totally-nonexistent-company-xyz123 fixture), never an error status. When data is found, it is the object described below.",
  "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 8, 2026