<?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>DEV Community: Level</title>
    <description>The latest articles on DEV Community by Level (@jobsbylevel).</description>
    <link>https://dev.to/jobsbylevel</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4138356%2F9bdade15-6335-4096-8202-d75f42b7531f.png</url>
      <title>DEV Community: Level</title>
      <link>https://dev.to/jobsbylevel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jobsbylevel"/>
    <language>en</language>
    <item>
      <title>Three questions to ask an AI-rated job board (and the exact queries that answer them)</title>
      <dc:creator>Level</dc:creator>
      <pubDate>Wed, 23 Sep 2026 02:02:12 +0000</pubDate>
      <link>https://dev.to/jobsbylevel/three-questions-to-ask-an-ai-rated-job-board-and-the-exact-queries-that-answer-them-4anf</link>
      <guid>https://dev.to/jobsbylevel/three-questions-to-ask-an-ai-rated-job-board-and-the-exact-queries-that-answer-them-4anf</guid>
      <description>&lt;h1&gt;
  
  
  Three questions to ask an AI-rated job board (and the exact queries that answer them)
&lt;/h1&gt;

&lt;p&gt;Job boards answer "who is hiring" well and "what is the job, really" badly. Every AI job board we published on worked around that with a free read-only interface: &lt;a href="https://jobsbylevel.com" rel="noopener noreferrer"&gt;Level&lt;/a&gt; exposes its catalog through a REST API and an MCP server, no key required. Here are the three questions worth asking first, with the queries and the numbers as of 22 September 2026.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Who is building AI, rather than using it?
&lt;/h2&gt;

&lt;p&gt;The catalog rates every posting from Level 1 to Level 4 on how central AI is to the work, scored from the posting text alone:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;Score&lt;/th&gt;
&lt;th&gt;Meaning&lt;/th&gt;
&lt;th&gt;Live jobs (22 Sept 2026)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;80-100&lt;/td&gt;
&lt;td&gt;Build AI systems&lt;/td&gt;
&lt;td&gt;3,539&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;60-79&lt;/td&gt;
&lt;td&gt;Work with AI&lt;/td&gt;
&lt;td&gt;6,574&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;40-59&lt;/td&gt;
&lt;td&gt;Use AI as a tool&lt;/td&gt;
&lt;td&gt;3,275&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;0-39&lt;/td&gt;
&lt;td&gt;Work around AI&lt;/td&gt;
&lt;td&gt;34,347&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Query the top of the scale:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="s2"&gt;"https://jobsbylevel.com/api/v1/jobs?ai_level_min=4"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The interesting result is the shape, not the list: Level 4 is 3,539 of 47,735 tracked postings — about 7%. If your sourcing strategy assumes every company with "AI" in its pitch is hiring AI builders, this is the correction.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Which companies hire AI builders most consistently?
&lt;/h2&gt;

&lt;p&gt;Sorting companies by the average AI score of their open roles is a better signal than headcount, because it does not reward a company for posting fifty Level 1 roles. Two MCP tools answer this directly: &lt;code&gt;market_stats&lt;/code&gt; for the live distribution by AI level, remote share and top tools, and &lt;code&gt;list_ai_native_companies&lt;/code&gt; for companies ranked by the average AI score of their open roles.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add &lt;span class="nt"&gt;--transport&lt;/span&gt; http level-jobs https://jobsbylevel.com/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then ask the assistant the question instead of writing the aggregation yourself. On the REST side, &lt;code&gt;/api/v1/jobs&lt;/code&gt; filters by &lt;code&gt;company&lt;/code&gt;, so a single company can be checked without the ranking tool.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Is remote real in AI roles, or is it a filter that hides the work?
&lt;/h2&gt;

&lt;p&gt;Remote flags on job boards are self-reported by the posting. Cross the flag with the AI level to see where remote actually concentrates:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="s2"&gt;"https://jobsbylevel.com/api/v1/jobs?ai_level_min=3&amp;amp;remote=1"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run the same query without &lt;code&gt;remote=1&lt;/code&gt;, and once more with &lt;code&gt;ai_level_max=2&lt;/code&gt;, and compare the counts. If remote only concentrates at Level 1 and 2, the roles you want are on-site more often than a remote-first filter suggests. The same comparison is available as a single &lt;code&gt;market_stats&lt;/code&gt; call, which reports the remote share directly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two caveats worth repeating
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Text, not reality.&lt;/strong&gt; The level reflects what the posting says. Where a description avoids AI entirely, the score says AI is absent from the description — which is weaker than saying it is absent from the job.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Counts move.&lt;/strong&gt; Postings are pulled from company applicant tracking systems every six hours, and a posting whose text changes is scored again. Re-run a query before quoting a number.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Keeping the link
&lt;/h2&gt;

&lt;p&gt;Results carry a canonical &lt;code&gt;jobsbylevel.com/jobs/&amp;lt;slug&amp;gt;&lt;/code&gt; URL — keep that link when you show results. Fair use sits around 60 requests per minute per IP, and the endpoints are read-only by design.&lt;/p&gt;

&lt;p&gt;Full method: &lt;a href="https://jobsbylevel.com/method" rel="noopener noreferrer"&gt;jobsbylevel.com/method&lt;/a&gt; · Level definitions: &lt;a href="https://jobsbylevel.com/levels" rel="noopener noreferrer"&gt;jobsbylevel.com/levels&lt;/a&gt; · &lt;a href="https://jobsbylevel.com" rel="noopener noreferrer"&gt;Level&lt;/a&gt; is a free, AI-rated job board for people who want to know what the job really is.&lt;/p&gt;

</description>
      <category>jobboard</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How to tell if a job posting is really an AI job: a 4-level scale</title>
      <dc:creator>Level</dc:creator>
      <pubDate>Wed, 23 Sep 2026 01:37:50 +0000</pubDate>
      <link>https://dev.to/jobsbylevel/how-to-tell-if-a-job-posting-is-really-an-ai-job-a-4-level-scale-1f1g</link>
      <guid>https://dev.to/jobsbylevel/how-to-tell-if-a-job-posting-is-really-an-ai-job-a-4-level-scale-1f1g</guid>
      <description>&lt;h1&gt;
  
  
  How to tell if a job posting is really an AI job: a 4-level scale
&lt;/h1&gt;

&lt;p&gt;"AI Engineer", "AI Product Manager", "AI Solutions Specialist". Job titles with "AI" in them are multiplying, but the title alone tells you very little about the work. Here is the scale we use at &lt;a href="https://jobsbylevel.com" rel="noopener noreferrer"&gt;Level&lt;/a&gt; to read a posting, with the number of live jobs at each level on 22 September 2026.&lt;/p&gt;

&lt;h2&gt;
  
  
  Level 4: Build AI systems (score 80-100)
&lt;/h2&gt;

&lt;p&gt;Building AI systems is the job itself. Without AI, the role would not exist. Think model training, inference infrastructure, evaluation pipelines, applied research.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;3,539 live jobs on 22 September 2026.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Level 3: Work with AI (score 60-79)
&lt;/h2&gt;

&lt;p&gt;The daily work happens on or around AI systems, without necessarily building the model: integrating LLMs into a product, managing an AI roadmap, running evaluations. Remove AI and the job is hollow.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;6,574 live jobs.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Level 2: Use AI as a tool (score 40-59)
&lt;/h2&gt;

&lt;p&gt;An ordinary role whose duties require AI tools: coding with an assistant, writing or sourcing with one. The job exists without AI, but the posting expects you to use it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;3,275 live jobs.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Level 1: Work around AI (score 0-39)
&lt;/h2&gt;

&lt;p&gt;The work itself involves no AI, or AI only appears as scenery, such as a company tagline. This is the largest group by far.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;34,347 live jobs, 72% of the 47,735 tracked.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three questions to ask of any posting
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Does it name specific tools or models?&lt;/strong&gt; Vague mentions of "AI-driven" rarely mean much. Named frameworks, model providers or evaluation tools usually do.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Which skills does it ask for?&lt;/strong&gt; Retrieval pipelines, fine-tuning or prompt evaluation point to Level 3 or 4, even when the title never says "AI".&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;How much of the described work depends on them?&lt;/strong&gt; One bullet out of fifteen is Level 2 at best. Most of the responsibilities is Level 3 or 4.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Method
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Data:&lt;/strong&gt; 47,735 live postings from 481 companies, read from their applicant tracking systems every six hours; counts as of 22 September 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scoring:&lt;/strong&gt; 0-100 from the posting text only, never the company's marketing. A posting whose text changes is scored again.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Thresholds:&lt;/strong&gt; fixed (80 / 60 / 40), so the share at each level moves with the market.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Limits:&lt;/strong&gt; where a description says nothing about AI, the level says AI is absent from the description, which is weaker than saying it is absent from the job.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full method and definitions: &lt;a href="https://jobsbylevel.com/method" rel="noopener noreferrer"&gt;jobsbylevel.com/method&lt;/a&gt;&lt;/p&gt;

</description>
      <category>jobboard</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Only about 1 in 5 job postings at AI-era companies is really an AI job</title>
      <dc:creator>Level</dc:creator>
      <pubDate>Wed, 23 Sep 2026 01:37:40 +0000</pubDate>
      <link>https://dev.to/jobsbylevel/only-about-1-in-5-job-postings-at-ai-era-companies-is-really-an-ai-job-fa6</link>
      <guid>https://dev.to/jobsbylevel/only-about-1-in-5-job-postings-at-ai-era-companies-is-really-an-ai-job-fa6</guid>
      <description>&lt;h1&gt;
  
  
  Only about 1 in 5 job postings at AI-era companies is really an AI job
&lt;/h1&gt;

&lt;p&gt;"AI" is everywhere in hiring right now: in company taglines, in job titles, in the first line of almost every careers page. So we measured how much of the actual work involves AI.&lt;/p&gt;

&lt;p&gt;On 22 September 2026, &lt;a href="https://jobsbylevel.com" rel="noopener noreferrer"&gt;Level&lt;/a&gt; tracked &lt;strong&gt;47,735 live job postings from 481 companies&lt;/strong&gt;. Each one was scored from 0 to 100 on how central AI is to the daily work, then placed on a four-level scale.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we found
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;What it means&lt;/th&gt;
&lt;th&gt;Live jobs&lt;/th&gt;
&lt;th&gt;Share&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Level 4&lt;/td&gt;
&lt;td&gt;Building AI systems is the job&lt;/td&gt;
&lt;td&gt;3,539&lt;/td&gt;
&lt;td&gt;7.4%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Level 3&lt;/td&gt;
&lt;td&gt;The daily work is on or around AI systems&lt;/td&gt;
&lt;td&gt;6,574&lt;/td&gt;
&lt;td&gt;13.8%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Level 2&lt;/td&gt;
&lt;td&gt;An ordinary role that requires AI tools&lt;/td&gt;
&lt;td&gt;3,275&lt;/td&gt;
&lt;td&gt;6.9%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Level 1&lt;/td&gt;
&lt;td&gt;The work itself involves no AI&lt;/td&gt;
&lt;td&gt;34,347&lt;/td&gt;
&lt;td&gt;72.0%&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Only &lt;strong&gt;10,113 postings (21.2%)&lt;/strong&gt; reach Level 3 or 4, the jobs where removing AI would leave the role hollow. Nearly three in four postings describe work where AI is absent, or only appears as scenery.&lt;/p&gt;

&lt;p&gt;Among those Level 1 postings, sales (5,823), operations (2,139) and marketing (1,266) are the largest groups. Many of them sit at companies that describe themselves as AI companies.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why it matters if you are job hunting
&lt;/h2&gt;

&lt;p&gt;A company that markets itself as "AI-first" can still be hiring mostly for roles that never touch a model. The reverse is also true: a posting that never says "AI" but asks for retrieval pipelines or evaluation work can be a real AI role.&lt;/p&gt;

&lt;p&gt;If you want to move into AI work, the job title and the company's homepage are weak signals. The posting itself is the better one: which tools it names, which skills it asks for, and how much of the described work depends on them.&lt;/p&gt;

&lt;p&gt;You can browse the four levels and filter by role or remote work on &lt;a href="https://jobsbylevel.com/levels" rel="noopener noreferrer"&gt;jobsbylevel.com/levels&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Source:&lt;/strong&gt; postings pulled directly from company applicant tracking systems every six hours. Expired postings are removed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scoring:&lt;/strong&gt; each posting gets a 0-100 score from the text of the posting only (AI tools named, skills requested, share of the work that depends on them), never from the company's marketing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Levels:&lt;/strong&gt; fixed thresholds, not percentiles: 80+ is Level 4, 60-79 Level 3, 40-59 Level 2, below 40 Level 1.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Date:&lt;/strong&gt; counts read from the database on 22 September 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Limits:&lt;/strong&gt; the level describes the posting, not the company or the person hired. A poorly written description can understate a role.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full method: &lt;a href="https://jobsbylevel.com/method" rel="noopener noreferrer"&gt;jobsbylevel.com/method&lt;/a&gt;&lt;/p&gt;

</description>
      <category>jobboard</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>A free MCP server and REST API for AI-rated job listings (no key)</title>
      <dc:creator>Level</dc:creator>
      <pubDate>Wed, 23 Sep 2026 00:35:59 +0000</pubDate>
      <link>https://dev.to/jobsbylevel/a-free-mcp-server-and-rest-api-for-ai-rated-job-listings-no-key-14b5</link>
      <guid>https://dev.to/jobsbylevel/a-free-mcp-server-and-rest-api-for-ai-rated-job-listings-no-key-14b5</guid>
      <description>&lt;h1&gt;
  
  
  A free MCP server and REST API for AI-rated job listings (no key)
&lt;/h1&gt;

&lt;p&gt;If you want an assistant like Claude, ChatGPT or Cursor to answer "which companies are hiring ML engineers remotely right now?", it needs live job data. &lt;a href="https://jobsbylevel.com" rel="noopener noreferrer"&gt;Level&lt;/a&gt; exposes its catalog through a free MCP server and a plain REST API: no key, no authentication, read-only.&lt;/p&gt;

&lt;p&gt;On 22 September 2026 the catalog held &lt;strong&gt;47,735 live jobs from 481 companies&lt;/strong&gt;, each rated from Level 1 to Level 4 on how central AI is to the work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The MCP server
&lt;/h2&gt;

&lt;p&gt;Endpoint: &lt;code&gt;https://jobsbylevel.com/mcp&lt;/code&gt; (Streamable HTTP, stateless).&lt;/p&gt;

&lt;p&gt;Five tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;search_jobs&lt;/code&gt;: text query, AI level range, remote, city, company (up to 20 results)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_job&lt;/code&gt;: full detail of one listing by id or slug&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;market_stats&lt;/code&gt;: live distribution by AI level, remote share, top tools&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;list_ai_native_companies&lt;/code&gt;: companies ranked by the average AI score of their open roles&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_level_definitions&lt;/code&gt;: what each of the four levels means&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Add it to Claude Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add &lt;span class="nt"&gt;--transport&lt;/span&gt; http level-jobs https://jobsbylevel.com/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or to Claude Desktop / Cursor config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"level-jobs"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://jobsbylevel.com/mcp"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The REST API
&lt;/h2&gt;

&lt;p&gt;Plain JSON, open CORS, same fields as the MCP tools.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="s2"&gt;"https://jobsbylevel.com/api/v1/jobs?query=machine%20learning&amp;amp;ai_level_min=3&amp;amp;remote=1"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Query parameters on &lt;code&gt;/api/v1/jobs&lt;/code&gt;: &lt;code&gt;query&lt;/code&gt;, &lt;code&gt;ai_level_min&lt;/code&gt;, &lt;code&gt;ai_level_max&lt;/code&gt;, &lt;code&gt;remote&lt;/code&gt;, &lt;code&gt;city&lt;/code&gt;, &lt;code&gt;company&lt;/code&gt;, &lt;code&gt;page&lt;/code&gt;. Results are capped at 20 per page. Details: &lt;code&gt;/api/v1/jobs/&amp;lt;slug&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Fair use is about 60 requests per minute per IP. Every result carries a canonical &lt;code&gt;jobsbylevel.com/jobs/&amp;lt;slug&amp;gt;&lt;/code&gt; URL; please keep that link when you show results.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the levels mean
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;Score&lt;/th&gt;
&lt;th&gt;Meaning&lt;/th&gt;
&lt;th&gt;Live jobs (22 Sept 2026)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;80-100&lt;/td&gt;
&lt;td&gt;Build AI systems&lt;/td&gt;
&lt;td&gt;3,539&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;60-79&lt;/td&gt;
&lt;td&gt;Work with AI&lt;/td&gt;
&lt;td&gt;6,574&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;40-59&lt;/td&gt;
&lt;td&gt;Use AI as a tool&lt;/td&gt;
&lt;td&gt;3,275&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;0-39&lt;/td&gt;
&lt;td&gt;Work around AI&lt;/td&gt;
&lt;td&gt;34,347&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Method
&lt;/h2&gt;

&lt;p&gt;Jobs are pulled from company applicant tracking systems every six hours and scored 0-100 from the posting text only. Fixed thresholds map the score to a level. Counts above were read from the database on 22 September 2026.&lt;/p&gt;

&lt;p&gt;Docs: &lt;a href="https://jobsbylevel.com/developers" rel="noopener noreferrer"&gt;jobsbylevel.com/developers&lt;/a&gt; · Method: &lt;a href="https://jobsbylevel.com/method" rel="noopener noreferrer"&gt;jobsbylevel.com/method&lt;/a&gt;&lt;/p&gt;

</description>
      <category>jobboard</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
