Apollo Organization jobs API
Get current job postings for an organization by ID with title, location, source URL, and timestamps.
Try it
Make your first request
{
"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
}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 30dcurl -X POST https://api.getanyapi.com/v1/run/apollo.organization_jobs \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"organizationId":"5e66b6381e05b4008c8331b8"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| organizationId | string | "5e66b6381e05b4008c8331b8"Organization identifier returned by an Apollo organization endpoint. |
| Response | ||
| data | object | |
| data.jobs | object[] | Current job postings. |
| data.jobs[].city | string | Job city. |
| data.jobs[].country | string | Job country. |
| data.jobs[].id | string | Stable job posting identifier. |
| data.jobs[].lastSeenUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.jobs[].postedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.jobs[].state | string | Job state or region. |
| data.jobs[].title | string | Job title. |
| data.jobs[].url | string | Canonical job posting URL. |
| data.limit | integer | Page size returned. |
| data.page | integer | One-based page returned. |
| data.total | integer | Total current job postings. |
| data.totalPages | integer | Total available pages. |
| found | boolean | Whether any current job postings were found. |
| Price | ||
| Price per request | USD | $0.012 |
| Price /1k req | USD | $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.