<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Alexroblesr</title>
    <description>The latest articles on Forem by Alexroblesr (@alexroblesr).</description>
    <link>https://forem.com/alexroblesr</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3854276%2F1ee33027-da72-4040-92a2-fdd0dd3a3ff2.png</url>
      <title>Forem: Alexroblesr</title>
      <link>https://forem.com/alexroblesr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/alexroblesr"/>
    <language>en</language>
    <item>
      <title>I built a REST API that parses job descriptions into structured JSON using Claude Haiku, here's how...</title>
      <dc:creator>Alexroblesr</dc:creator>
      <pubDate>Wed, 01 Apr 2026 15:19:54 +0000</pubDate>
      <link>https://forem.com/alexroblesr/i-built-a-rest-api-that-parses-job-descriptions-into-structured-json-using-claude-haiku-heres-1i7b</link>
      <guid>https://forem.com/alexroblesr/i-built-a-rest-api-that-parses-job-descriptions-into-structured-json-using-claude-haiku-heres-1i7b</guid>
      <description>&lt;p&gt;&lt;strong&gt;Problem Statement&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every ATS integration I've worked on hits the same wall.&lt;br&gt;
Job descriptions are written for humans. Salary buried in paragraph 4. Skills scattered across three sections. "Competitive compensation DOE" instead of a number. No two companies format them the same way.&lt;br&gt;
I kept writing regex and spaCy pipelines to extract structured data from JDs, and they kept breaking on edge cases. Eventually I stopped fighting it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution: Let the LLM Handle It&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I built JD Parser Pro — a REST API that takes raw job description text and returns clean, structured JSON in under 3 seconds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can try it right now with no signup:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;bashcurl -s -X POST &lt;a href="https://jd-parser-api.onrender.com/v1/parse" rel="noopener noreferrer"&gt;https://jd-parser-api.onrender.com/v1/parse&lt;/a&gt; \&lt;br&gt;
  -H "Content-Type: text/plain" \&lt;br&gt;
  -d 'Senior Data Engineer at Stripe, San Francisco, CA. Salary: $160,000 - $220,000/year. Full-time. 5+ years Python, Spark, dbt required. Kafka and Airflow preferred. Remote-friendly. Bachelor degree in CS required. Benefits: Equity, 401k, medical, dental, vision, unlimited PTO.'&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What comes back:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;json{&lt;br&gt;
  "title": "Senior Data Engineer",&lt;br&gt;
  "company": "Stripe",&lt;br&gt;
  "location": {&lt;br&gt;
    "city": "San Francisco",&lt;br&gt;
    "state": "CA",&lt;br&gt;
    "country": "United States",&lt;br&gt;
    "remote_policy": "remote"&lt;br&gt;
  },&lt;br&gt;
  "salary": {&lt;br&gt;
    "min": 160000,&lt;br&gt;
    "max": 220000,&lt;br&gt;
    "currency": "USD",&lt;br&gt;
    "period": "annual"&lt;br&gt;
  },&lt;br&gt;
  "employment_type": "full_time",&lt;br&gt;
  "seniority_level": "senior",&lt;br&gt;
  "experience_years": { "min": 5, "max": null },&lt;br&gt;
  "required_skills": ["Python", "Spark", "dbt", "Distributed systems", "Data modeling"],&lt;br&gt;
  "nice_to_have_skills": ["Kafka", "Airflow", "Real-time streaming architectures"],&lt;br&gt;
  "education": {&lt;br&gt;
    "degree": "Bachelor",&lt;br&gt;
    "field": "Computer Science, Engineering, or related field",&lt;br&gt;
    "required": true&lt;br&gt;
  },&lt;br&gt;
  "responsibilities": [&lt;br&gt;
    "Design and maintain high-throughput ETL pipelines processing billions of events daily",&lt;br&gt;
    "Collaborate with analytics and machine learning teams to deliver reliable data products",&lt;br&gt;
    "Own and improve data quality monitoring and alerting systems",&lt;br&gt;
    "Mentor junior engineers and contribute to architecture decisions"&lt;br&gt;
  ],&lt;br&gt;
  "benefits": ["Equity", "401k", "Medical", "Dental", "Vision", "Unlimited PTO", "Home office stipend"],&lt;br&gt;
  "ats_keywords": ["Data Engineer", "ETL", "Python", "Spark", "dbt", "Kafka", "Airflow"],&lt;br&gt;
  "industry": "Fintech",&lt;br&gt;
  "department": "Data Infrastructure"&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Stack&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;FastAPI + Python 3.12 — fast, async, great developer experience&lt;/li&gt;
&lt;li&gt;Claude Haiku 4.5 — cheap, fast, handles ambiguous text well&lt;/li&gt;
&lt;li&gt;Prompt caching — cuts cost to ~$0.001/call on repeated system prompts&lt;/li&gt;
&lt;li&gt;Upstash Redis — response caching for identical JD inputs&lt;/li&gt;
&lt;li&gt;Slowapi — rate limiting (30 req/min per IP)&lt;/li&gt;
&lt;li&gt;Docker on Render — simple deployment, free tier for now&lt;/li&gt;
&lt;li&gt;GitHub Actions — CI/CD on every push&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why Claude Haiku instead of spaCy or Regex?&lt;/strong&gt;&lt;br&gt;
Salary ranges alone come in dozens of formats:&lt;/p&gt;

&lt;p&gt;$160K–$220K&lt;br&gt;
160,000 to 220,000 annually&lt;br&gt;
competitive compensation DOE&lt;br&gt;
up to $220K depending on experience&lt;/p&gt;

&lt;p&gt;A rules-based approach breaks on every new variation. Claude handles the ambiguity naturally and is fast enough (under 3 seconds) and cheap enough (~$0.001/call with caching) to run at API scale.&lt;br&gt;
The tradeoff: LLMs can hallucinate. So I added a post-processing layer — for example, if the JD contains a $ sign and the model returns currency: null, I force it to USD. Belt-and-suspenders on the fields that matter most.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pricing &amp;amp; Access&lt;/strong&gt;&lt;br&gt;
Listed on RapidAPI with four tiers:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Plan   |  Price  | Request/day&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Basic  |  Free   | 10&lt;br&gt;
Pro    |  19/mo  | 50&lt;br&gt;
Ultra  |  49/mo  | 250&lt;br&gt;
Mega   |  99/mo  | 1,000&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Links&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Live API + Swagger docs: &lt;a href="https://jd-parser-api.onrender.com/docs" rel="noopener noreferrer"&gt;https://jd-parser-api.onrender.com/docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;RapidAPI listing (free tier available): &lt;a href="https://rapidapi.com/alexroblesruiz7/api/jd-parser-pro" rel="noopener noreferrer"&gt;https://rapidapi.com/alexroblesruiz7/api/jd-parser-pro&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/Alexroblesr/jd-parser-api" rel="noopener noreferrer"&gt;https://github.com/Alexroblesr/jd-parser-api&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>api</category>
      <category>showdev</category>
      <category>llm</category>
    </item>
  </channel>
</rss>
