Apollo API

Apollo Organization jobs API

Get current job postings for an organization by ID with title, location, source URL, and timestamps.

POST/v1/run/apollo.organization_jobs
Uptime
94.12%
30d · 17 calls
Requests
17
30d · weekly, last 12 wks
Response
1.5s
median · 30d

Pricing

One price, in dollars

Providers
Apollo16 served94.12% uptime1425ms p50$12.00/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "jobs": [
      {
        "city": "San Francisco",
        "country": "US",
        "id": "a1b2c3d4",
        "lastSeenUtc": 12.5,
        "postedUtc": 248,
        "state": "CA",
        "title": "Example title",
        "url": "https://example.com/page"
      }
    ],
    "limit": 42,
    "page": 29,
    "total": 12500,
    "totalPages": 12500
  },
  "found": true
}
Response interface
interface ApolloOrganizationJobsResponse {
  data: {
    jobs: {
      city?: string;
      country?: string;
      id: string;
      lastSeenUtc?: number;
      postedUtc?: number;
      state?: string;
      title: string;
      url: string;
    }[];
    limit: number;
    page: number;
    total: number;
    totalPages: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/apollo.organization_jobs
curl -X POST https://api.getanyapi.com/v1/run/apollo.organization_jobs \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"organizationId":"5e66b6381e05b4008c8331b8"}'
FieldTypeExample value
Request body
organizationIdstring"5e66b6381e05b4008c8331b8"Organization identifier returned by an Apollo organization endpoint.
Response
dataobject
data.jobsobject[]Current job postings.
data.jobs[].citystringJob city.
data.jobs[].countrystringJob country.
data.jobs[].idstringStable job posting identifier.
data.jobs[].lastSeenUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.jobs[].postedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.jobs[].statestringJob state or region.
data.jobs[].titlestringJob title.
data.jobs[].urlstringCanonical job posting URL.
data.limitintegerPage size returned.
data.pageintegerOne-based page returned.
data.totalintegerTotal current job postings.
data.totalPagesintegerTotal available pages.
foundbooleanWhether any current job postings were found.
Price
Price per requestUSD$0.012
Price /1k reqUSD$12.00

FAQ

About the Apollo Organization jobs API

The AnyAPI Apollo Organization jobs API returns Apollo organization jobs data as normalized JSON from one POST call to /v1/run/apollo.organization_jobs. Get current job postings for an organization by ID with title, location, source URL, and timestamps. AnyAPI returns one normalized schema whichever source serves it. It costs from $12 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 94.1% of Apollo organization jobs calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 17 measured calls.

It costs from $12 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Get current job postings for an organization by ID with title, location, source URL, and timestamps. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 94.1% of Apollo organization jobs calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 17 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.