Rippling Jobs API.
Public job postings from companies that use Rippling Recruiting, one endpoint - same schema as 30+ other sources.
Why people are confused about the Rippling API
Most developers searching "Rippling API" land on the Rippling platform API (app.rippling.com/developer) - a partner-gated, OAuth-scoped API for HRIS, payroll, devices, and app management. It is built to manage one company's workforce data, not to surface job postings across companies, and access requires going through Rippling's partner program with per-customer authorization.
Companies that use Rippling Recruiting publish open roles to public careers pages, but there is no public list endpoint that enumerates Rippling customers or their postings. JobsPipe indexes the public Rippling-hosted job postings it can identify and normalizes them into the same JSON shape as every other source.
Right for managing a single customer's HR data once you have partner access and their authorization. It is not a cross-company job feed, and onboarding is per-tenant.
Possible for a company whose careers URL you already know. Subject to rate limits, HTML drift, and no way to discover other tenants.
Public job postings from Rippling-powered careers pages under one endpoint, normalized - no partner onboarding, no slug discovery.
Rippling API documentation
Rippling's developer documentation lives at developer.rippling.com. The platform API is OAuth-scoped and partner-gated - built to read and write one customer's HRIS, payroll, IT, and app-management data after that customer authorizes your app. It is not a public, cross-company job feed: there is no unauthenticated postings endpoint and no list endpoint to enumerate Rippling Recruiting customers. JobsPipe's normalized JSON schema is documented at /docs and uses the same shape across Rippling, Workday, Greenhouse, and 30+ other sources.
Rippling API integration
A single-tenant Rippling integration - sync employees, run payroll workflows, manage devices - goes through Rippling's partner program with the customer's OAuth authorization. For cross-tenant aggregation where you want public job postings across many companies that use Rippling Recruiting, JobsPipe is the integration: one API key, public Rippling-hosted postings normalized into the same JSON schema as 30+ other ATSs. Sample request and response are below.
Sample request
curl https://api.jobspipe.dev/v1/jobs/search \
-H "Authorization: Bearer jp_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{ "source_or": ["rippling"], "limit": 25 }'Sample response
{
"id": "rp_OWQ4M2ZhYzEtMjJi",
"source": "rippling",
"tenant": "vanta",
"title": "Senior Backend Engineer",
"company": "Vanta",
"location": {
"city": "San Francisco",
"region": "CA",
"country": "US",
"remote": true
},
"salary": {
"min": 190000,
"max": 240000,
"currency": "USD",
"period": "year",
"source": "explicit"
},
"employment_type": "full_time",
"posted_at": "2026-05-19T17:30:00Z",
"expires_at": null,
"apply_url": "https://ats.rippling.com/vanta/jobs/...",
"description": "Vanta is hiring a Senior Backend Engineer to build the services behind continuous security monitoring ..."
}Every Rippling job record is returned in the same JSON shape as every other JobsPipe source. The full schema is documented in the docs.
Fields in every Rippling job record
FAQ
Is the Rippling API a public job board API?+
No. The Rippling platform API is a partner-gated HRIS/payroll/IT API scoped to a single customer. It is not designed to return job postings across companies. JobsPipe is useful when you want public Rippling-hosted job postings without partner onboarding.
How fresh is Rippling data?+
Public Rippling-hosted postings are re-crawled at least every 24 hours.
Can I get jobs from one company that uses Rippling?+
Yes. "company_name_partial_match_or": ["vanta"] in the JSON body of POST /v1/jobs/search filters to that company's postings (substitute any company name).
Does JobsPipe expose Rippling employee or payroll data?+
No. JobsPipe reads only public job postings - never employee, payroll, or device data.
Try Rippling data free - 5,000 requests/month, no credit card.
Get a free API key