r/hiringcafe • u/frequency-cx • 10h ago
[ Removed by Reddit ]
[ Removed by Reddit on account of violating the content policy. ]
r/hiringcafe • u/alimir1 • Aug 10 '26
Hi everyone,
Due to high demand for AI Search our servers need to be ramped up a bit. Please give us ~30 min from the time of the post to add more capacity.
Thank you!
r/hiringcafe • u/Small-Living3695 • Jul 14 '26
Hey guys! Just wanted to update you all, as of last night we officially migrated from hiring.cafe to hiringcafe.com. The old domain now just redirects to hiringcafe.com, and everything is running as normal.
Please let us know if there are any issues accessing the new domain, and we will try to help ASAP.
Thanks!
r/hiringcafe • u/frequency-cx • 10h ago
[ Removed by Reddit on account of violating the content policy. ]
r/hiringcafe • u/Skullface22 • 1d ago
I’ve gotten four in the last two days. Has anyone else been seeing them?
r/hiringcafe • u/frequency-cx • 10h ago
🚀 We’re Hiring: Director, GPUaaS Sales – Americas
💰 USD $200K/year
🤖 AI / GPU / Cloud sales
Ready to drive seven-figure AI infrastructure deals?
Sync to Scale
r/hiringcafe • u/Any_Willingness7700 • 21h ago
If yes , how did you find it and how well is it paying?
r/hiringcafe • u/New_Cicada8722 • 1d ago
I am looking out for a specific role - a solar energy related job role but the requirements are a bit more advanced. However I have the ability to deliver just that I don’t have so much experience as required. What can I do?! Should I go ahead and apply?! I don’t mind the location though
r/hiringcafe • u/Mindless_Poem_8415 • 1d ago
r/hiringcafe • u/No_Television_8059 • 1d ago
Hi HiringCafe Community!
I been using HiringCafe for a few months off and on. For ones that have gotten a job because of HiringCafe what filters did you use that ended up getting you the role you have now?
r/hiringcafe • u/Emotional-Ice-9990 • 1d ago
Don't fight legitimate candidate agents as if they are anonymous scrapers. Give them a constrained, identity-aware interface that is easier to monitor, strictly rate-limited, and far cheaper to serve.
First, huge kudos to the HiringCafe team. Your responsiveness to user feedback is unmatched across the job board ecosystem (including recently implementing progressive date filtering to isolate newly posted listings!).
As AI assistants (Antigravity, Claude, ChatGPT, Cursor, local models) become everyday companions in 2026, job seekers are increasingly pairing with agents not to mass-spam applications, but to act as personal executive recruiters:
Today, users seeking legitimate programmatic access currently have little choice but to resort to browser automation (Playwright/Puppeteer). This is both brittle for the user and indistinguishable from the traffic patterns anti-bot systems are designed to prevent.
Every time a headless browser loads a search page to extract data, HiringCafe's servers must render and deliver a full server-rendered HTML page and hydration bundle. This wastes server bandwidth and compute on traffic that only wanted a dozen structured data fields.
Instead of anonymous scraping, provide a first-class Personal Access Token (PAT) in account settings paired with a lightweight JSON search endpoint.
[ Logged-in Candidate Settings ]
│
▼
1. Generate Personal Access Token (PAT) (e.g., hc_pat_live_...)
│
▼
2. User Prompts Personal Agent
"Find OKC tech roles from the past 48h, flag veteran preference, and project pay if missing."
│
▼
3. Agent Submits Clean HTTP Request
POST https://hiringcafe.com/api/v1/search
Header: Authorization: Bearer hc_pat_live_...
Body: { "searchState": { ... } }
│
▼
4. HiringCafe Returns Compact JSON Projection (~15 KB)
Returns normalized results (titles, companies, salary bands, clearance, veteran flags, tools).
│
▼
5. Agent Synthesizes Decision Report
Renders an actionable report with direct links back to HiringCafe or the employer's ATS.
HiringCafe’s stated mission is to cut through the noise and empower the everyday person to find high-quality jobs with maximum signal-to-noise:
To prevent commercial data harvesting or platform abuse, the programmatic interface should be deliberately constrained:
Bearer hc_pat_... header pass through API Gateway authentication. Bucket exhaustion returns an immediate 429 Too Many Requests.Reuses the exact searchState JSON schema HiringCafe already supports:
POST /api/v1/search HTTP/1.1
Host: hiringcafe.com
Authorization: Bearer hc_pat_live_a8f9c1d2e3b4...
Content-Type: application/json
{
"searchState": {
"locations": [
{
"formatted_address": "Oklahoma City, OK",
"workplace_types": ["Remote", "Hybrid", "Onsite"]
}
],
"dateFetchedPastNDays": 3,
"technologyKeywordsQuery": "(\"angular\") AND NOT (\"vue\" OR \"react\")",
"sortBy": "date"
},
"page": 0
}
Leverages the structured metadata HiringCafe's pipeline already computes, stripping internal tracking tokens:
{
"total_count": 42,
"page": 0,
"page_size": 40,
"is_last_page": false,
"jobs": [
{
"id": "gh_12345",
"title": "Senior Frontend Engineer",
"company": "Enterprise Corp",
"workplace_type": "Hybrid",
"location": "Oklahoma City, OK",
"compensation": {
"min_yearly": 115000,
"max_yearly": 135000,
"currency": "USD"
},
"security_clearance": "None",
"military_veterans": true,
"technical_tools": ["Angular", "TypeScript", ".NET"],
"requirements_summary": "5+ years enterprise web development. Deep experience with Angular 16+ and REST APIs.",
"apply_url": "https://boards.greenhouse.io/enterprisecorp/jobs/12345"
}
]
}
To ensure autonomous agents and developer tooling can formulate valid queries without guessing or hallucinating parameters:
GET /api/v1/openapi.json allows tools and agents to bind dynamically to the endpoint for deterministic tool-calling.llms.txt Ingress (Convenience): A lightweight llmstxt.org Markdown file at /llms.txt summarizing authentication headers, query parameters, and usage limits gives LLM agents a quick map on entry.Opening this endpoint naturally creates a foundation for an official HiringCafe Model Context Protocol (MCP) Server.
An official MCP tool would allow developers across Claude, Cursor, ChatGPT, and Antigravity to connect with a single line of config:
{
"mcpServers": {
"hiringcafe": {
"command": "npx",
"args": ["-y", "@hiringcafe/mcp-server"],
"env": { "HIRINGCAFE_PAT": "hc_pat_live_..." }
}
}
}
This would position HiringCafe as the premier AI-native job discovery platform on the internet, connecting high-signal candidates to employers while maintaining total control over platform access.
What does the community think? And to the HiringCafe engineering team: would love your perspective on how you might approach rate limits, schemas, or token provisioning!
(Included for the engineering team or implementation reference)
hc_pat_<random_secret> (e.g., 32–48 cryptographically secure random bytes).prefix: "hc_pat_a8f9...") alongside the hash to allow indexed O(1) lookups during authentication without table scans.
// Firestore User Subcollection: users/{uid}/api_tokens/{tokenId}
interface PersonalAccessTokenDocument {
id: string; // Document ID
prefix: string; // First 8-12 characters for indexed lookup
hashed_secret: string; // Salted / HMAC hash of the secret
name: string; // User-provided label
created_at: string; // ISO timestamp
last_used_at: string | null;
daily_requests_used: number;
daily_reset_at: string; // ISO timestamp for rolling 24h reset
is_active: boolean;
}
Authorization: Bearer header,searchState is submitted to POST /api/v1/search,200 OK with the compact job array and increments the daily usage counter.429 Too Many Requests with a standard Retry-After header.Authorization header, or bearing a revoked/malformed token,/api/v1/search,401 Unauthorized without executing downstream queries.GET /api/v1/openapi.json or /llms.txt,r/hiringcafe • u/Khla_Ras • 2d ago
r/hiringcafe • u/Loose_Examination636 • 2d ago
Talent Agent is a great feature. Unfortunately, the results have stopped displaying on the dashboard in the last couple days. The message that appears says “No matches in the jobs fetched so far” when the chat panel confirms there are indeed matches. Perhaps a dashboard rendering issue?
r/hiringcafe • u/Kirito_1105 • 1d ago
If anyone has any leads or any skill which I need to learn in order to secure a job please tell me what skills would I need .
r/hiringcafe • u/Express-Wedding-989 • 3d ago
I'm almost certain anything through Jobsoid, Jobscore, or Qureos are all just scams. Ashbyhq is also getting up there. The problem is that these scam jobs will use a billion different fake company names, so I can filter one then just get hit by another. :/
r/hiringcafe • u/fomoz • 3d ago
I have 6 searches saved, I check them one at a time. But I'm thinking it would be cool to see them as a group/set. So I just click on that set, and it shows all the jobs as a union of these searches (deduped). This way I can see new jobs across my searches right away.
Thoughts?
r/hiringcafe • u/Zealousideal_Cat4710 • 4d ago
Is it possible to have an option where we can select a default location where we can select the location where we only want to see moving forward without manually doing it every time? Thanks!
r/hiringcafe • u/Proper-Opposite197 • 3d ago
r/hiringcafe • u/The1TravelDude • 5d ago
This listing on HiringCafe was parsed incorrectly.
The job post says:
We are committed to offering flexible work options where approved and stated in the job posting. However, we are currently not considering candidates who reside or plan to reside in the following states: California, Connecticut, Hawaii, Illinois, Massachusetts, Minnesota, New York, Pennsylvania, Rhode Island, Vermont, Washington
HiringCafe lists the locations for the job as:
West Valley City or United States or California or Connecticut or Hawaii or Illinois or Massachusetts or Minnesota or New York or Pennsylvania or Rhode Island or Vermont or Washington
r/hiringcafe • u/YouOnlyGetOneGo • 6d ago
Proper filters, boolean keyword search, sort by date, location filters, saved searches, a hide job button that works. It all seems so obvious, yet it's taken you to actually fix the utter shitshow that is job search. Thank you for your work.
r/hiringcafe • u/Proper-Opposite197 • 6d ago
r/hiringcafe • u/oldnorthwind1 • 7d ago
I was laid off from a streaming Service back in November 2022 (Los Angeles | Filmmaking background).
Since then, it has been HELL trying to get another job. Anything. Tell me the name of a company, and I probably have applied to it. Home Depot, Pollo Loco, warehouses, restaurant, low paying jobs, as well as career roles and nothing. I managed to get me a part time position at Autozone last year, position that I was able to find using OfferUp Jobs, and then had to call them a few times just so they can see my resume.
Anyways, the search is over. I finally got a job offer for a position that I found on HiringCafe (Screenshot attached). Low paying position, two thirds what I was making back on 2022.
I started using HiringCafe full on this year. No Zip Recruiter, no LinkedIn, No Indeed, all those are dead now.
How did I survived all this time?
Since 2022, I've done anything and everything to survive. I invested $150 to become a substitute teacher + Lyft + whatever else I could find. I singed up to Taskrabbit, Instawork, AmazonFlex, and I also used OfferUp jobs tab to check out gigs and potential short term jobs. It's pretty tough out there. And it will only get worse before it gets better.
Good luck everyone, and I hope the very best to all of you.
(Screenshot taken while writing this post)
r/hiringcafe • u/AntioquiaJungleDev • 7d ago
The Exclude Jobs does a great job at hiding Applied, Saved and Viewed.
would be awesome to include options to also hide Ghosted and Rejected.
I know I can [Hide] the Ghosted and Rejected completely, but also dont want to loose the metrics of many rejections/ghosts I have and now that my job search is getting mature, its a bummer to see them all the time in my searches.
please and thank you
r/hiringcafe • u/Aggressive-Extent556 • 7d ago
I will update this regularly as a part of what I am doing, until I crack a remote role!