🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Hacker News to Airtable, searchable job leads fast

Lisa Granqvist Partner Workflow Automation Expert

Keeping up with the monthly “Who is Hiring?” thread on Hacker News sounds simple. Then you open it and realize it’s hundreds of comments, inconsistent formatting, and great roles buried under noise.

This HN Airtable automation hits job seekers first, honestly. But recruiters tracking market movement and agency owners hiring contractors feel the same pain. You want a clean, searchable list you can filter in seconds, not another tab you promise to “review later.”

This workflow pulls the latest hiring thread, extracts each job post, uses OpenAI to turn messy text into clean fields, and saves everything into Airtable. You’ll see how it works, what you need, and what results to expect.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Hacker News to Airtable, searchable job leads fast

Why This Matters: Turning a Mega-Thread Into Real Leads

The “Who is Hiring?” thread is valuable because it’s raw and direct. It’s also a mess for the exact same reason. Companies post in their own style, sometimes with no location, sometimes with a wall of requirements, sometimes with a single sentence and an email address. If you’re trying to find “remote backend” or “Berlin product design,” you end up scrolling, skimming, copying snippets into notes, and telling yourself you’ll organize it later. Later rarely happens. And even when you do organize it, the next month starts and you repeat the whole process.

It adds up fast. Here’s where it breaks down in the real world.

  • You waste about 2 hours per thread just skimming and copy-pasting the good ones somewhere “temporary.”
  • Important details are inconsistent, so you can’t reliably filter by role, location, visa, or remote policy.
  • You miss strong leads because the best posts are not necessarily the most upvoted or the easiest to read.
  • Trend tracking is basically impossible when last month’s notes are a Google Doc, a bookmark folder, and a half-finished spreadsheet.

What You’ll Build: Hacker News Job Leads to Airtable, Clean and Searchable

This workflow turns the monthly Hacker News hiring thread into structured Airtable records you can actually use. It starts by fetching the latest “Who is Hiring?” post via HTTP requests, then pulls the comment replies where the job listings live. Each comment gets cleaned up (so the formatting quirks don’t trip you up), then OpenAI reads the text and returns a consistent JSON-style structure with the fields you care about. Finally, n8n creates a record in Airtable per listing, so you can filter, sort, and compare posts over time. You end up with a living database instead of a one-time scroll session.

The workflow begins with a manual launch in n8n, which is handy when you want to run it right after the new thread drops. From there, it filters to the most recent hiring post, splits out job replies, and enriches each one into clean fields before saving to Airtable.

What You’re Building

Expected Results

Say you review 60 job posts from the thread each month and spend maybe 2 minutes per post to copy text, label it, and paste into a spreadsheet. That’s about 2 hours of pure admin before you even start applying or shortlisting. With this workflow, you kick off the run in about 2 minutes, wait for processing, and then review everything inside Airtable with filters already available. You still do the human part (deciding what’s good), but the organizing work mostly disappears.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Airtable for storing and filtering job listings
  • OpenAI to extract fields from messy text
  • OpenAI API key (get it from your OpenAI dashboard)

Skill level: Intermediate. You’ll connect accounts, set up an Airtable table, and tweak a couple of fields, but you won’t be writing an app.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A manual run kicks things off. You start the workflow when you’re ready (for example, right after the monthly thread drops). n8n then uses HTTP Request nodes to pull the latest “Who is Hiring?” entries from Hacker News sources.

Results are divided and checked for recency. The workflow splits the response into items, maps key fields, and filters to the most recent hiring post so you’re not processing last year’s thread by accident.

Each job listing gets cleaned and structured. Replies are separated into individual job comments, the text body is isolated, and formatting is normalized. Then the OpenAI chat model (via the AI Agent / chain node) converts that cleaned text into structured JSON that matches the fields you want to store.

Airtable becomes your searchable database. For every parsed listing, n8n creates a record in Airtable, which means filters, views, and lightweight reporting are available immediately.

You can easily modify the fields you extract (like “visa,” “salary,” or “tech stack”) to match how you search and shortlist. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Manual Trigger

Start the workflow with a manual trigger so you can test the extraction process on demand.

  1. Add the Manual Launch Trigger node to the canvas.
  2. Leave default settings as-is to enable manual execution.
  3. Ensure the connection from Manual Launch Trigger goes to Retrieve Hiring Posts.

Step 2: Connect Algolia Search and Filter Recent Posts

Fetch the latest “Ask HN: Who is hiring” posts and isolate recent threads only.

  1. Open Retrieve Hiring Posts and set URL to https://uj5wyc0l7x-dsn.algolia.net/1/indexes/Item_dev_sort_date/query.
  2. Set Method to POST and ensure Send Body, Send Query, and Send Headers are enabled.
  3. Paste the provided JSON into Body Parameters (JSON) exactly as shown in the node (the query includes "Ask HN: Who is hiring").
  4. Credential Required: Connect your httpHeaderAuth credentials in Retrieve Hiring Posts.
  5. In Divide Results, set Field To Split Out to hits.
  6. In Map Key Fields, map fields with expressions: title ={{ $json.title }}, createdAt ={{ $json.created_at }}, updatedAt ={{ $json.updated_at }}, storyId ={{ $json.story_id }}.
  7. In Filter Recent Post, set the date condition to ={{ $json.createdAt }} after ={{$now.minus({days: 30})}} .

Tip: If the filter yields no results, expand the time window in Filter Recent Post by adjusting the days value.

Step 3: Fetch Thread Replies and Extract Text

Load the main thread and each job reply to isolate the text content for processing.

  1. In Fetch Main Thread, set URL to =https://hacker-news.firebaseio.com/v0/item/{{ $json.storyId }}.json?print=pretty.
  2. In Separate Job Replies, set Field To Split Out to kids to split replies into individual items.
  3. In Fetch Job Detail, set URL to =https://hacker-news.firebaseio.com/v0/item/{{ $json.kids }}.json?print=pretty.
  4. In Isolate Text Body, set text to ={{ $json.text }}.

⚠️ Common Pitfall: If Isolate Text Body returns empty values, verify the HN API response includes text for the item (some replies may be deleted or empty).

Step 4: Clean, Limit, and Structure the Job Text with AI

Normalize the raw HTML text, limit the sample size, and convert each job into structured JSON using the AI chain.

  1. Open Normalize Text Content and keep the provided JavaScript code to clean HTML, URLs, and formatting artifacts.
  2. In Restrict Sample Size, set Max Items to 5 to control processing volume.
  3. In Convert to Structured JSON, set Text to ={{ $json.cleaned_text }} and keep Prompt Type as define.
  4. Connect Structured Result Parser to Convert to Structured JSON as the output parser, and keep the provided schema.
  5. Ensure OpenAI Conversation Model is connected as the language model for Convert to Structured JSON and uses model gpt-4o-mini.
  6. Credential Required: Connect your openAiApi credentials in OpenAI Conversation Model (the parser uses the parent model’s credentials).

Tip: If the AI output is inconsistent, adjust the prompt message in Convert to Structured JSON (“Extract the JSON data”).

Step 5: Configure Airtable Output

Write the structured job data into Airtable for storage and review.

  1. Open Create Airtable Records and choose your Base and Table.
  2. Map fields using expressions: type ={{ $json.output.type }}, title ={{ $json.output.title }}, salary ={{ $json.output.salary }}, company ={{ $json.output.company }}, location ={{ $json.output.location }}, apply_url ={{ $json.output.apply_url }}, company_url ={{ $json.output.company_url }}, description ={{ $json.output.description }}.
  3. Credential Required: Connect your airtableTokenApi credentials in Create Airtable Records.

⚠️ Common Pitfall: Ensure your Airtable fields match the exact names (title, company, location, etc.) or the create operation will fail.

Step 6: Test and Activate Your Workflow

Run a manual test to verify the full extraction chain and then enable the workflow for production use.

  1. Click Execute Workflow to run the Manual Launch Trigger.
  2. Confirm that Retrieve Hiring Posts returns results and that Filter Recent Post passes at least one item.
  3. Verify that Normalize Text Content outputs cleaned_text and Convert to Structured JSON returns a structured output object.
  4. Check Airtable for newly created records from Create Airtable Records.
  5. When satisfied, switch the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Airtable credentials can expire or the base/table permissions might be too limited. If records don’t appear, check the Airtable connection in n8n and confirm the target base and table still exist.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • OpenAI outputs depend on prompts, and default prompts are generic. Add your exact field definitions and a few examples early, or you will be cleaning “almost right” results every month.

Quick Answers

What’s the setup time for this HN Airtable automation?

About 30 minutes if your Airtable base is ready.

Is coding required for this job lead automation?

No. You’ll mostly connect accounts and map fields in Airtable. The workflow already handles the parsing and record creation.

Is n8n free to use for this HN Airtable automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs, which are usually a few dollars per month at typical “monthly thread” volumes.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this HN Airtable automation workflow for different use cases?

Yes, and you probably should. You can change what gets extracted by editing the prompt used in the OpenAI chat model and the “Convert to Structured JSON” step, then update “Map Key Fields” and your Airtable columns to match. Common tweaks include adding “remote/onsite/hybrid,” extracting a tech stack field, and capturing application links or emails as separate columns.

Why is my Airtable connection failing in this workflow?

Usually it’s an expired token or the base/table got renamed. Reconnect Airtable in n8n, then open the “Create Airtable Records” node and reselect the base and table so the field mapping refreshes. Also check Airtable permissions, because read-only access will connect fine but fail on create.

What volume can this HN Airtable automation workflow process?

It depends on your n8n plan and how many comments you choose to process, but a typical monthly thread is well within what most setups can handle.

Is this HN Airtable automation better than using Zapier or Make?

Often, yes, because this workflow mixes multi-step HTTP fetching, splitting items, cleanup, and AI parsing in one place. Zapier and Make can do parts of it, but the “grab thread → fetch many comments → normalize text → parse into structured JSON → bulk create records” pattern gets expensive or awkward when executions spike. n8n also gives you a self-host option, which means you’re not worrying about task limits as soon as you scale up. That said, if you only want a simple “send me the top posts” alert, Zapier or Make can be faster to set up. If you’re unsure, Talk to an automation expert and describe your exact volume and workflow.

This is the kind of automation you set up once, then reuse every month without thinking. Your Airtable becomes the system, and the Hacker News thread becomes just another data source.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal