Skip to content
Eden Engine

Company Job Postings (by Organization Id)

omnial/organizations-organization-id-job-postings

Given an organization id, returns that company's currently active job postings: title, city/state/country, and when each posting was first and most recently seen. Returns an empty list when the company has no active postings.

activeper callv1
Provider
Web & Business Data Network
Category
jobs
Provider price
$0.06825 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": [
    "organization_id"
  ],
  "properties": {
    "page": {
      "type": "integer",
      "maximum": 500,
      "description": "The page number of Apollo data to retrieve (1-based, max 500). Use with per_page.",
      "exclusiveMinimum": 0
    },
    "per_page": {
      "type": "integer",
      "maximum": 100,
      "description": "The number of results per page (max 100).",
      "exclusiveMinimum": 0
    },
    "organization_id": {
      "type": "string",
      "minLength": 1,
      "description": "The Apollo organization id (from Organization Search)."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "organization_job_postings",
    "pagination"
  ],
  "properties": {
    "pagination": {
      "type": "object",
      "properties": {
        "page": {
          "type": "number"
        },
        "per_page": {
          "type": "number"
        },
        "total_pages": {
          "type": "number"
        },
        "total_entries": {
          "type": "number",
          "description": "Total active postings for this company."
        }
      },
      "additionalProperties": false
    },
    "organization_job_postings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The provider's internal posting id."
          },
          "url": {
            "type": "null",
            "description": "Always null: the listing URL is a census urlLeaves entry, stripped by responseShaping below."
          },
          "city": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed null on several postings that name only a country/region."
          },
          "state": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed null on several postings, e.g. non-US roles with no state/province."
          },
          "title": {
            "type": "string"
          },
          "country": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed null on at least one posting with no country recorded."
          },
          "posted_at": {
            "type": "string",
            "description": "ISO 8601 timestamp of when this posting was first seen/posted."
          },
          "last_seen_at": {
            "type": "string",
            "description": "ISO 8601 timestamp of the most recent time this posting was seen active."
          }
        },
        "additionalProperties": false
      },
      "description": "Empty when the company has no active job postings (observed on examples/early-stage-no-postings.json), otherwise one entry per active posting (58 entries observed on examples/stripe-job-postings.json)."
    }
  },
  "description": "The job-postings record, as returned at routing.responseResultPath ($.output).",
  "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.06825
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