Trakstar Jobs API.
Trakstar Hire publishes per-tenant RSS feeds and HTML careers pages - no public JSON API. JobsPipe flattens both into the same JSON schema as Workday, Greenhouse, and 30+ other sources.
Why people are confused about the Trakstar API
Trakstar Hire (the rebrand of Recruiterbox, now owned by Mitratech) has no public JSON jobs API. The endpoints aggregators reach for - /api/jobs, /api/jobs/{id} - return 404. The authenticated Openings API at developers.recruiterbox.com is gated by a per-tenant API key minted inside that customer's Trakstar admin, so it gets you one company's data, not a cross-tenant feed.
Every Trakstar customer hosts their careers page at <company-slug>.hire.trakstar.com, with a public RSS feed at /jobfeeds/<company-name> (case-sensitive on the company-name segment). The RSS is aggregator-friendly but XML - you still have to discover every tenant's slug, handle the case-sensitive feed path, and flatten RSS into JSON. JobsPipe does that once and returns one normalized record per posting.
Possible. You need the tenant slug AND the case-sensitive company name for the /jobfeeds path, plus a parser that handles Trakstar's RSS extensions for location, department, and deadlines.
Each Trakstar customer mints a key inside their admin. Reads only that customer's openings - no path to aggregator-tier credentials.
Every public Trakstar tenant, one endpoint, flat JSON. Free tier covers 5,000 requests/month.
Trakstar Hire API documentation
Trakstar Hire's developer docs live at developers.recruiterbox.com (the URL still reflects the legacy product name) and cover the Openings API, Candidates API, and integration widgets. Every endpoint is scoped to one customer's API key - there is no aggregator-tier credential and no documented public JSON endpoint for cross-tenant reads. The closest aggregator-friendly surface is the per-tenant RSS feed described in Trakstar's support docs. JobsPipe normalizes that RSS plus the HTML careers page into the same flat JSON shape as 30+ other ATSs at /docs.
Trakstar Hire RSS feed
The public RSS feed pattern is https://<company-slug>.hire.trakstar.com/jobfeeds/<company-name>, with no authentication required. Two gotchas: the company-name segment is case-sensitive (a mismatch returns an empty feed, not a 404), and the RSS XML extends the standard spec with Trakstar-specific elements for location, department, employment type, and application deadlines. JobsPipe handles both quirks and emits a clean JSON record per posting.
Recruiterbox to Trakstar migration
Older integrations pointing at apiv1.recruiterbox.com or <slug>.recruiterbox.com need to migrate to <slug>.hire.trakstar.com. The schemas changed slightly during the rebrand - JobsPipe abstracts both the old and the new hosts behind one source identifier so you never have to chase rename events.
Sample request
curl "https://api.jobspipe.dev/v1/jobs?source=trakstar" \
-H "Authorization: Bearer $JOBSPIPE_KEY" \
-H "Accept: application/json"Sample response
{
"id": "tk_NDk3MjE4MDQ0",
"source": "trakstar",
"tenant": "luminate",
"title": "Senior Account Executive",
"company": "Luminate",
"location": {
"city": "Austin",
"region": "TX",
"country": "US",
"remote": false
},
"salary": {
"min": 110000,
"max": 145000,
"currency": "USD",
"period": "year",
"source": "inferred"
},
"employment_type": "full_time",
"department": "Sales",
"posted_at": "2026-05-10T15:42:00Z",
"expires_at": null,
"apply_url": "https://luminate.hire.trakstar.com/jobs/fk0xab7",
"description": "Luminate is hiring a Senior Account Executive to own enterprise expansion across the central US territory ..."
}Every Trakstar 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 Trakstar job record
FAQ
Does Trakstar Hire have a public JSON jobs API?+
No. The /api/jobs endpoints return 404. Trakstar's only aggregator-friendly public surface is the per-tenant RSS feed at <company-slug>.hire.trakstar.com/jobfeeds/<company-name>.
Wasn't this product called Recruiterbox?+
Yes - Recruiterbox was rebranded as Trakstar Hire in 2022 and is now part of Mitratech. Old API code that hit *.recruiterbox.com domains needs to be updated to *.hire.trakstar.com. JobsPipe handles both legacy and current hosts.
How fresh is Trakstar data on JobsPipe?+
Public Trakstar career sites are re-crawled at least every 24 hours; large tenants more often.
Do I need a Trakstar API key to use JobsPipe?+
No. JobsPipe reads only public RSS feeds and careers pages. You only need a JobsPipe key.
Try Trakstar data free - 5,000 requests/month, no credit card.
Get a free API key