{"id":119227,"date":"2026-06-29T22:48:57","date_gmt":"2026-06-29T17:18:57","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=119227"},"modified":"2026-06-29T22:48:58","modified_gmt":"2026-06-29T17:18:58","slug":"build-a-job-board-scraper-and-email-digest","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/build-a-job-board-scraper-and-email-digest\/","title":{"rendered":"Build a Job Board Scraper and Email Digest with Python"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>TL;DR<\/strong><\/h2>\n\n\n\n<ol>\n<li>A Job Board Scraper is a Python application that automatically extracts job listings from online job portals and career websites.<\/li>\n\n\n\n<li>A Job Board Scraper and Email Digest collects job titles, company names, locations, posting dates, and application links into a centralized report.<\/li>\n\n\n\n<li>Python libraries such as Requests, BeautifulSoup, Pandas, and SMTP are commonly used to scrape job data, process information, and send automated email updates.<\/li>\n\n\n\n<li>The workflow involves web scraping, HTML parsing, data extraction, job filtering, report generation, and email delivery.<\/li>\n\n\n\n<li>Building a Job Board Scraper with Python helps developers learn web scraping, automation, data processing, scheduling, and real-world Python application development.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Searching multiple job boards daily can be time-consuming and repetitive. A<strong> Job Board Scraper and Email Digest <\/strong>automates this process by collecting job listings, filtering relevant opportunities, and delivering a curated summary directly to your inbox. This saves effort and helps users stay updated efficiently. To build such automation skills, <strong>HCL GUVI&#8217;s <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Build+a+Job+Board+Scraper+and+Email+Digest+with+Python\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Python <\/strong><\/a><strong>Course<\/strong> provides hands-on training in Python, web scraping, automation, and real-world projects.<\/p>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p>Data Point: According to LinkedIn, millions of job applications are submitted through online job platforms every month, highlighting the growing importance of efficient job discovery tools.<\/p><\/blockquote><\/figure>\n\n\n\n<div class=\"guvi-answer-card\" style=\"margin: 40px 0;\">\n\n  <div style=\"\n    position: relative;\n    background: linear-gradient(135deg, #f0fff4, #e6f7ee);\n    border: 1px solid #cfeedd;\n    padding: 26px 24px 22px 24px;\n    border-radius: 14px;\n    font-family: Arial, sans-serif;\n    box-shadow: 0 6px 16px rgba(0,0,0,0.05);\n  \">\n\n    <!-- Top accent -->\n    <div style=\"\n      position: absolute;\n      top: 0;\n      left: 0;\n      height: 6px;\n      width: 100%;\n      background: linear-gradient(to right, #099f4e, #6dd5a3);\n      border-radius: 14px 14px 0 0;\n    \"><\/div>\n\n    <!-- Title -->\n    <h3 style=\"\n      margin: 10px 0 12px 0;\n      color: #099f4e;\n      font-size: 20px;\n    \">\n      What Is a Job Board Scraper and Email Digest?\n    <\/h3>\n\n    <!-- Content -->\n    <p style=\"\n      margin: 0;\n      color: #2f4f3f;\n      font-size: 16px;\n      line-height: 1.7;\n    \">\n      A Job Board Scraper and Email Digest is an automated application that collects job postings from online job boards and career websites, filters them based on user-defined criteria such as job title, location, or skills, organizes the results, and sends a summarized email report. By combining web scraping, data processing, and email automation, the system helps job seekers stay updated with relevant opportunities without manually checking multiple websites. It can be customized to run on a schedule, track new listings, remove duplicates, and deliver personalized job digests directly to a user&#8217;s inbox.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is a Job Board Scraper and Email Digest?<\/strong><\/h2>\n\n\n\n<p>A Job Board Scraper is a program that automatically extracts job postings from websites. The collected information may include job titles, company names, locations, salary ranges, application links, and posting dates.<\/p>\n\n\n\n<p>An Email Digest takes this collected information and delivers it in a structured format to users at regular intervals. Together, these technologies create a personalized job monitoring system.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/hub\/python\/what-is-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> is widely used for this type of automation because of its extensive ecosystem of web scraping, data processing, and email management libraries. Popular libraries include <a href=\"https:\/\/www.guvi.in\/hub\/web-scraping-tutorial\/what-is-beautifulsoup-module-\/\" target=\"_blank\" rel=\"noreferrer noopener\">BeautifulSoup<\/a> for extracting data from web pages.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Components of a Job Scraper<\/strong><\/h3>\n\n\n\n<ol>\n<li>Job Board Source \u2013 Website containing job listings.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.guvi.in\/blog\/what-is-web-scraping-and-how-to-use-it\/\" target=\"_blank\" rel=\"noreferrer noopener\">Web Scraper<\/a> \u2013 Extracts job-related information.<\/li>\n\n\n\n<li>Data Filter \u2013 Selects jobs matching specific criteria.<\/li>\n\n\n\n<li>Data Storage \u2013 Stores collected listings.<\/li>\n\n\n\n<li>Email Generator \u2013 Creates digest reports.<\/li>\n\n\n\n<li>Email Service \u2013 Delivers reports to recipients.<\/li>\n<\/ol>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <br \/><br \/>\n\n  Many <strong style=\"color: #FFFFFF;\">recruitment platforms<\/strong> and <strong style=\"color: #FFFFFF;\">talent intelligence systems<\/strong> use automated data collection techniques to track hiring trends, identify emerging skills, and analyze job market demand across industries. These insights help employers make data-driven hiring decisions while enabling job seekers, educators, and workforce planners to better understand evolving career opportunities and in-demand technologies.\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Learn Job Scraping and Automation with Python?<\/strong><\/h2>\n\n\n\n<p>Python allows developers to build practical automation solutions with relatively little code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Benefits of Building Job Scraping Applications<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Benefit<\/strong><\/td><td><strong>Why It Matters<\/strong><\/td><\/tr><tr><td>Automation Skills<\/td><td>Reduces repetitive manual tasks<\/td><\/tr><tr><td>Real-World Project<\/td><td>Demonstrates practical development ability<\/td><\/tr><tr><td>Data Processing Experience<\/td><td>Improves handling of structured information<\/td><\/tr><tr><td>Web Scraping Knowledge<\/td><td>Builds data collection expertise<\/td><\/tr><tr><td>Portfolio Value<\/td><td>Showcases automation capabilities<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p>Data Point: According to the Python Software Foundation, Python remains one of the most popular languages for automation, scripting, and data-related applications due to its simplicity and extensive library support.<\/p><\/blockquote><\/figure>\n\n\n\n<p>If you&#8217;re new to Python, <strong>HCL GUVI&#8217;s Python <\/strong><a href=\"https:\/\/www.guvi.in\/mlp\/python-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Build+a+Job+Board+Scraper+and+Email+Digest+with+Python\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>eBook<\/strong><\/a> can help strengthen the programming fundamentals needed to build automation projects with confidence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Build a Job Board Scraper and Email Digest with Python<\/strong><\/h2>\n\n\n\n<p>Let&#8217;s create a simple automated job monitoring system.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Install Required Libraries<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install requests\n\npip install beautifulsoup4\n\npip install pandas\n\nVerify installation:\n\nimport requests\n\nimport pandas as pd\n\nprint(\"Libraries Installed Successfully\")<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Fetch Job Listings<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import requests\n\nurl = \"https:\/\/example-job-board.com\"\n\nresponse = requests.get(url)\n\nhtml_content = response.text<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Parse Job Data<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>from bs4 import BeautifulSoup\n\nsoup = BeautifulSoup(html_content, \"html.parser\")\n\njobs = soup.find_all(\"div\", class_=\"job-card\")<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Extract Relevant Information<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>job_data = &#91;]\n\nfor job in jobs:\n\n&nbsp;&nbsp;&nbsp;&nbsp;title = job.find(\"h2\").text\n\n&nbsp;&nbsp;&nbsp;&nbsp;company = job.find(\"span\", class_=\"company\").text\n\n&nbsp;&nbsp;&nbsp;&nbsp;job_data.append({\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"title\": title,\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"company\": company\n\n&nbsp;&nbsp;&nbsp;&nbsp;})<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Convert Data to a DataFrame<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import pandas as pd\n\ndf = pd.DataFrame(job_data)\n\nprint(df.head())<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 6: Create the Email Digest<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>email_body = df.to_string(index=False)\n\nprint(email_body)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 7: Send the Email Report<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import smtplib\n\nfrom email.mime.text import MIMEText\n\nmessage = MIMEText(email_body)\n\nmessage&#91;\"Subject\"] = \"Daily Job Digest\"\n\nserver = smtplib.SMTP(\"smtp.gmail.com\", 587)\n\nserver.starttls()\n\nserver.login(\"your_email@gmail.com\", \"password\")\n\nserver.send_message(message)\n\nserver.quit()<\/code><\/pre>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/pandas-dataframe\/\" target=\"_blank\" rel=\"noreferrer noopener\">Pandas<\/a> helps organize scraped job data into structured <strong>DataFrames<\/strong>, making it easier to filter listings, analyze information, and generate clean email digests for users.<\/p>\n\n\n\n<p class=\"has-text-align-center\">\u26a0\ufe0f <strong><em>Warning<\/em><\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\"><strong><em>Always review a website&#8217;s terms of service and robots.txt policy before scraping data. Some websites restrict automated access, and violating usage policies may lead to account restrictions or legal issues.<\/em><\/strong><\/p>\n\n\n\n<p>Once you&#8217;ve built a basic scraper, you can expand the project using scheduling tools, database integration, job recommendation systems, and <a href=\"https:\/\/www.guvi.in\/blog\/list-of-free-ai-tools\/\">AI<\/a><a href=\"https:\/\/www.guvi.in\/blog\/list-of-free-ai-tools\/\" target=\"_blank\" rel=\"noreferrer noopener\"> <\/a><a href=\"https:\/\/www.guvi.in\/blog\/list-of-free-ai-tools\/\">tools<\/a> for ranking mechanisms.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Does a Job Scraper and Email Digest Work?<\/strong><\/h2>\n\n\n\n<p>A job automation system continuously collects listings, filters relevant opportunities, and distributes summarized reports.<\/p>\n\n\n\n<p>Instead of manually visiting multiple websites, the system performs the entire workflow automatically.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Stages<\/strong><\/h3>\n\n\n\n<ol>\n<li>Website Selection<\/li>\n\n\n\n<li>Data Collection<\/li>\n\n\n\n<li>HTML Parsing<\/li>\n\n\n\n<li>Information Extraction<\/li>\n\n\n\n<li>Data Filtering<\/li>\n\n\n\n<li>Report Generation<\/li>\n\n\n\n<li>Email Delivery<\/li>\n\n\n\n<li>User Review<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-pullquote has-small-font-size\"><blockquote><p>Data Point: Research from industry automation reports shows that workflow automation can significantly reduce repetitive administrative tasks and improve operational efficiency.<\/p><\/blockquote><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real-World Applications of Job Scraping Systems<\/strong><\/h2>\n\n\n\n<p>Job scraping and automation solutions support various recruitment and career-related workflows.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Personal Job Tracking<\/strong><\/h3>\n\n\n\n<p>Job seekers can receive daily updates tailored to their preferred skills, locations, and industries.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Recruitment Intelligence<\/strong><\/h3>\n\n\n\n<p>Recruiters can monitor hiring trends, emerging roles, and competitor hiring activity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Salary Analysis<\/strong><\/h3>\n\n\n\n<p>Organizations can analyze compensation trends across different job markets.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Talent Research<\/strong><\/h3>\n\n\n\n<p>Companies can study skill demand and workforce requirements across industries.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Career Opportunity Monitoring<\/strong><\/h3>\n\n\n\n<p>Professionals can track new openings without manually browsing multiple platforms.<\/p>\n\n\n\n<p class=\"has-text-align-center\"><strong><em>\u2705 Best Practice<\/em><\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\"><em><strong>Implement filtering rules to remove duplicate listings and prioritize highly relevant opportunities. Clean data significantly improves the usefulness of automated job reports.<\/strong><\/em><\/p>\n\n\n\n<p>To strengthen your Python skills, <strong>HCL GUVI&#8217;s Python <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Build+a+Job+Board+Scraper+and+Email+Digest+with+Python\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Course<\/strong><\/a> offers hands-on learning and practical projects that help developers build automation solutions for real-world use cases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n\n\n\n<ol>\n<li>Job Board Scrapers automate job discovery across multiple websites.<\/li>\n\n\n\n<li>Python provides powerful tools for scraping, automation, and email delivery.<\/li>\n\n\n\n<li>Email digests help users track opportunities efficiently.<\/li>\n\n\n\n<li>Data filtering improves relevance and reduces information overload.<\/li>\n\n\n\n<li>Automation projects strengthen practical software development skills.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What To Do Next<\/strong><\/h2>\n\n\n\n<p>After completing this tutorial, explore:<\/p>\n\n\n\n<ol>\n<li>Multi-site job aggregation systems<\/li>\n\n\n\n<li>Scheduled scraping workflows<\/li>\n\n\n\n<li>Database-backed job trackers<\/li>\n\n\n\n<li>AI-powered job recommendation engines<\/li>\n\n\n\n<li>Resume matching and ranking systems<\/li>\n<\/ol>\n\n\n\n<p>Building increasingly advanced automation projects will strengthen your <a href=\"https:\/\/www.guvi.in\/hub\/python-tutorial\/getting-started-with-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python development <\/a>skills and improve your ability to create real-world <a href=\"https:\/\/www.guvi.in\/blog\/best-ai-tools-to-boost-productivity\/\" target=\"_blank\" rel=\"noreferrer noopener\">productivity tools<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>A Job Board Scraper and Email Digest demonstrates how Python can automate repetitive tasks and simplify information gathering. By learning web scraping, data processing, filtering, and email automation, developers gain valuable hands-on experience with technologies widely used in business and productivity applications. This project serves as an excellent foundation for building more advanced automation and data-driven systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1782452315255\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is a Job Board Scraper?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A Job Board Scraper is a tool that automatically collects job listings from websites and extracts relevant information.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452320971\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. Is web scraping legal?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Web scraping legality depends on website policies, terms of service, and local regulations. Always review applicable rules before scraping.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452332872\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. Which Python libraries are commonly used for job scraping?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Popular options include Requests, BeautifulSoup, Scrapy, Selenium, and Pandas.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452342972\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Can I scrape multiple job websites?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. A scraper can be configured to collect data from multiple sources and combine the results.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452353904\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. How are email digests generated?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Collected job data is formatted into a report and delivered using email automation tools such as SMTP.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452366556\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>6. Can I automate the scraper to run daily?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Tools such as Cron, Task Scheduler, and workflow automation platforms can schedule scraping tasks.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782452379312\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>7. Is this project suitable for beginners?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Developers with basic Python knowledge can build a beginner-friendly version and gradually add advanced features.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>TL;DR Introduction Searching multiple job boards daily can be time-consuming and repetitive. A Job Board Scraper and Email Digest automates this process by collecting job listings, filtering relevant opportunities, and delivering a curated summary directly to your inbox. This saves effort and helps users stay updated efficiently. To build such automation skills, HCL GUVI&#8217;s Python [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":119678,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"21","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/06\/build-a-job-board-scraper-and-email-digest-300x117.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/119227"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=119227"}],"version-history":[{"count":3,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/119227\/revisions"}],"predecessor-version":[{"id":119677,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/119227\/revisions\/119677"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/119678"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=119227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=119227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=119227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}