SShortSingh.
Back to feed

How to Fetch Public Job Listings from Workable's API Without Authentication

0
·2 views

Workable, an applicant tracking system (ATS), exposes a public widget-style JSON endpoint that allows developers to retrieve published job listings without any API key or authentication. By using a company's Workable account slug, developers can query job titles, locations, departments, and full descriptions via a simple GET request to Workable's public API. Setting the 'details=true' parameter returns complete job descriptions, while omitting it yields only summary fields. The guide also covers how to normalize location data and detect remote roles using structured fields like 'workplace_type' and 'telecommuting'. Similar integration guides exist for other ATS platforms including Ashby, Greenhouse, and Lever.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Bootstrap 5 vs Tailwind CSS in 2026: A Practical Guide to Choosing the Right Framework

Bootstrap 5 and Tailwind CSS remain the two dominant CSS frameworks in 2026, each suited to different development needs. Bootstrap offers ready-made components like navbars, modals, and dropdowns, making it faster for admin dashboards, CRM panels, and Angular-based projects. Tailwind uses a utility-first approach that provides greater flexibility for custom design systems and integrates naturally with React and Next.js ecosystems, where libraries like shadcn/ui have grown widely popular. Bootstrap has a shallower learning curve and delivers consistent cross-browser results with minimal configuration, while Tailwind demands a stronger grasp of its philosophy but rewards teams with precise design control. In short, Bootstrap is the preferred choice for speed and consistency, whereas Tailwind excels when a highly customized or component-driven frontend is the priority.

0
ProgrammingHacker News ·

AI Data Centers Consuming Far More Water Than Tech Companies Disclose

AI data centers are using significantly more water than major technology companies publicly report, according to a Wall Street Journal investigation. The facilities require large volumes of water primarily for cooling the powerful hardware that runs artificial intelligence workloads. This hidden consumption raises concerns about environmental transparency and resource sustainability in the fast-growing AI industry. The gap between actual water usage and disclosed figures suggests that current corporate reporting practices may be inadequate for assessing the true environmental footprint of AI infrastructure.

0
ProgrammingDEV Community ·

AI Coding Debate: Why Both Traditional Devs and Vibe Coders Have a Point

The software engineering community is increasingly divided between traditional developers, who stress discipline and architectural rigor, and 'vibe coders,' who prioritize speed and AI-assisted building. Traditional developers warn that AI tools, without proper oversight, generate code optimized for quick delivery rather than long-term stability, security, or scalability. Vibe coders counter that refusing to leverage powerful AI tools is an economically losing strategy, and that these tools have democratized software creation for non-technical builders. Commentators draw a historical parallel to earlier generations of developers who resisted high-level languages and modern frameworks, only for the industry to adapt and move forward. The emerging consensus is that the future of software development lies not in choosing one camp over the other, but in combining AI-driven speed with seasoned technical judgment.

0
ProgrammingDEV Community ·

How Bitcoin Achieves Consensus: From Transactions to a Shared Blockchain

Bitcoin's core innovation is enabling thousands of uncoordinated strangers to agree on a single shared transaction history without any central authority. Each network node maintains a mempool of validated but unconfirmed transactions, while mining nodes assemble these into candidate blocks and compete to add them to the chain. Block headers are kept at just 80 bytes and use a Merkle tree structure to compactly represent all transactions, allowing lightweight clients to verify payments without downloading the full blockchain. A block is only accepted if its double-SHA256 hash falls below a network-wide difficulty target, making valid blocks hard to produce but easy to verify — a deliberate asymmetry that deters spam and manipulation. The difficulty target adjusts automatically every 2,016 blocks to maintain an average 10-minute block interval, ensuring the network self-regulates as more miners join or leave.