Skip to content
Eden Engine

Web3 Company Job Listings (by Company Slug)

omnial/get-company-jobs

Given a company's URL slug, returns that company's current web3/crypto job listings: title, location, posted-date, salary (when the poster provided one), and any tags for each open role. Returns an empty list, not an error, when the company has no current postings.

activeper callv1
Provider
Web & Business Data Network
Category
jobs
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": {
    "page": {
      "type": "integer",
      "description": "Page number for pagination."
    },
    "company_slug": {
      "type": "string",
      "description": "The URL slug of the company (e.g., binance, crypto-com, coinbase). Available from get_web3_companies results."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "status",
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "company_slug",
        "page",
        "jobs"
      ],
      "properties": {
        "jobs": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "job_id",
              "title",
              "company",
              "location",
              "salary",
              "posted_date",
              "tags"
            ],
            "properties": {
              "tags": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Observed as an empty array on every listing in the one populated fixture captured; a populated tag's shape is unconfirmed."
              },
              "title": {
                "type": "string"
              },
              "job_id": {
                "type": "string",
                "description": "The listing's id, observed as a numeric string."
              },
              "salary": {
                "type": "string",
                "description": "Observed as an empty string on every listing in the one populated fixture captured -- the poster did not supply a salary on any of those 15 roles; a populated value's shape is unconfirmed."
              },
              "company": {
                "type": "string"
              },
              "location": {
                "type": "string",
                "description": "Observed as an empty string on some listings (e.g. remote-only postings with no city given), not always populated."
              },
              "posted_date": {
                "type": "string",
                "description": "A relative age string, e.g. '14h', '4d', '6d', '11d' -- not an absolute date."
              }
            },
            "additionalProperties": false
          },
          "description": "Empty array when the company has no current postings (confirmed against a real call with an invalid/unmatched slug) -- not an error and not a missing field."
        },
        "page": {
          "type": "string",
          "description": "The page number, as a STRING (e.g. '1'), not an integer -- observed on both real calls."
        },
        "company_slug": {
          "type": "string",
          "description": "Echoes the input company_slug back, unchanged, on both real calls observed."
        }
      },
      "additionalProperties": false
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed (a populated result and a genuinely empty one)."
    }
  },
  "description": "The job-listings record, narrowed to routing.responseResultPath.",
  "additionalProperties": false
}

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