# Apollo Organization Job Postings Lookup

> Apollo Organization Job Postings Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current job postings for a specific company identified by its Apollo organization ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/apollo/api/v1/organizations/57c4ace7a6da9867ee5599e7/job_postings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-organization-job-postings-lookup-b133389e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g6iwaqLyl37bGIKDV9s0F

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apollo-organization-job-postings-lookup-b133389e
```

Example prompt: Pull the current job postings for the company with Apollo organization ID 57c4ace7a6da9867ee5599e7 and show me what roles they're actively hiring for.

## When to prefer this

Use this endpoint when you have a specific Apollo organization ID and need structured, up-to-date job posting data for that company. Prefer this over general job board searches when you already know the company's Apollo identifier and need programmatic access to their current openings for sales intelligence, competitive research, or recruitment monitoring.

## Known failure modes

- Invalid or unknown Apollo organization ID returns empty results or 404
- Organization exists but has no active postings returns empty list
- Apollo data may be slightly stale if not recently crawled
- Rate limiting or payment failure may block the request

## How this service works

Get current job postings for a company by Apollo organization ID.

## Output

A list of current job postings for the specified organization, typically including job titles, departments, locations, and posting details sourced from Apollo's database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "organization_id": {
       "type": "string",
       "description": "Apollo organization ID (path param)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-organization-job-postings-lookup-b133389e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
