{"id":15136,"date":"2021-02-12T12:11:27","date_gmt":"2021-02-12T06:41:27","guid":{"rendered":"https:\/\/www.botreetechnologies.com\/blog\/?p=15136"},"modified":"2026-04-01T12:01:00","modified_gmt":"2026-04-01T06:31:00","slug":"web-scraping-with-ruby-by-processing-csv","status":"publish","type":"post","link":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/","title":{"rendered":"How to do Web Scraping with Ruby by Processing CSV"},"content":{"rendered":"\n<p>This article is about How to do simple ruby web scraping by processing CSV. <\/p>\n\n\n\n<p>In this article, we will create a Ruby on Rails application to scrap the link uploaded from a CSV file and find the occurrence of the link on a particular page.<\/p>\n\n\n\n<p>In the below <a href=\"https:\/\/www.botreetechnologies.com\/ruby-on-rails-development\">Ruby on Rails application development<\/a>, the user needs to pass a CSV file and list of the user\u2019s email to whom the parsed CSV will be sent.<\/p>\n\n\n\n<p>In the CSV file, there will be 2 columns<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>referal_link<\/li>\n\n\n\n<li>home_link<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Let\u2019s start creating a Rails Application<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run the below command to create a new rails application<\/li>\n<\/ul>\n\n\n\n<p><code>$ rails new scrape_csv_data<\/code><\/p>\n\n\n\n<p><code>$ cd scrape_csv_data<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then, we will generate an Upload CSV module. Run the below command.<\/li>\n<\/ul>\n\n\n\n<p><code>$ rails g scaffold UploadCsv generated_csv:string csv_file:string<\/code><\/p>\n\n\n\n<p>This will create all the required models, controllers, and migrations for csv_file. Run the migration using the below command.&nbsp;<\/p>\n\n\n\n<p><code>$ rails db:migrate<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Update the <strong><strong>app\/views\/upload_csvs\/_form.html.erb<\/strong>\u00a0with the below code.<\/strong><\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then we will add the gem to upload the CSV file. Add the below line to your Gemfile.<\/li>\n<\/ul>\n\n\n\n<p><code>gem 'carrierwave', '~&gt; 2.0'<\/code><\/p>\n\n\n\n<p>&nbsp; Then,<\/p>\n\n\n\n<p><code>$ bundle install<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then we will create the uploader in careerwave using the below command.<\/li>\n<\/ul>\n\n\n\n<p><code>$ rails generate uploader Avatar<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>We will attach the uploader in the <strong>model app\/models\/upload_csv.rb<\/strong>.\u00a0<\/li>\n<\/ul>\n\n\n\n<p><code>class UploadCsv &lt; ApplicationRecord<\/code><\/p>\n<p><code>mount_uploader :csv_file, AvatarUploader<\/code><\/p>\n<p><code>end<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Update the routes.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then, we will start the server and check if the application is working successfully or not.\u00a0<\/li>\n<\/ul>\n\n\n\n<p><code>$ rails s<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then we will create a job to read the CSV file and scrap the link from it and the generated file will be stored in the <code>generated_csv<\/code> column of that record for generating the job. Run the below command.<\/li>\n<\/ul>\n\n\n\n<p><code>$ rails generate job genrate_csv<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the below gem and run <code>bundle install<\/code><\/li>\n<\/ul>\n\n\n\n<p><code>gem 'httparty'<\/code><br><code>gem 'nokogiri'<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then we will replace the below code in the GenerateCsv job.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then we will run the job after_create of upload_csvs and we will add the validation for the csv_file required.\u00a0<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now update the code of app\/models\/upload_csv.rb.<\/li>\n<\/ul>\n\n\n\n<p>After uploading the file check the scrap generated file will be updated. You can check the generated file in <code>\/scrape_data\/public\/result_data.csv<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now we will send the generated file through email by using the below instructions.<\/li>\n<\/ul>\n\n\n\n<p>First,&nbsp; we will generate the mailer by using the below command.<\/p>\n\n\n\n<p><code>$ rails generate mailer NotificationMailer<\/code><\/p>\n\n\n\n<p>Add this code inside the notification mailer.\u00a0<\/p>\n\n\n\n<p>Also, we need to add mail configuration inside <code>config\/environments\/development.rb or production.rb.<\/code><\/p>\n\n\n\n<p>Also, we need to update the view also app\/views\/notification_mailer\/send_csv.html.erb<\/p>\n\n\n\n<p><code>app\/views\/notification_mailer\/send_csv.html.erb<\/code><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"637\" height=\"124\" src=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby-out-put.png\" alt=\"web scraping with ruby on rails\n\" class=\"wp-image-15148\" srcset=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby-out-put.png 637w, https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby-out-put-300x58.png 300w\" sizes=\"auto, (max-width: 637px) 100vw, 637px\" \/><\/figure>\n\n\n\n<p>Thank you! <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.botreetechnologies.com\/contact\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"150\" src=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate.png\" alt=\"Get Estimate for Ruby on Rails Application\" class=\"wp-image-14971\" srcset=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate.png 700w, https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate-300x64.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article is about How to do simple ruby web&#8230;<\/p>\n","protected":false},"author":53,"featured_media":15150,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[73,10],"tags":[],"class_list":["post-15136","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ruby-on-rails","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Web Scraping with Ruby by Processing CSV - BoTree<\/title>\n<meta name=\"description\" content=\"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Web Scraping with Ruby by Processing CSV - BoTree\" \/>\n<meta property=\"og:description\" content=\"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\" \/>\n<meta property=\"og:site_name\" content=\"BoTree Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BoTreeTechnologies\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-12T06:41:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-01T06:31:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png\" \/>\n\t<meta property=\"og:image:width\" content=\"852\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Dipak Rathod\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:site\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dipak Rathod\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\"},\"author\":{\"name\":\"Dipak Rathod\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc\"},\"headline\":\"How to do Web Scraping with Ruby by Processing CSV\",\"datePublished\":\"2021-02-12T06:41:27+00:00\",\"dateModified\":\"2026-04-01T06:31:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\"},\"wordCount\":390,\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png\",\"articleSection\":[\"Ruby on Rails\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\",\"name\":\"Web Scraping with Ruby by Processing CSV - BoTree\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png\",\"datePublished\":\"2021-02-12T06:41:27+00:00\",\"dateModified\":\"2026-04-01T06:31:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc\"},\"description\":\"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png\",\"width\":852,\"height\":420,\"caption\":\"Data Scraping in Ruby on Rails by Processing CSV\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.botreetechnologies.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to do Web Scraping with Ruby by Processing CSV\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/\",\"name\":\"BoTree Technologies\",\"description\":\"Committed to inspire generation.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc\",\"name\":\"Dipak Rathod\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png\",\"caption\":\"Dipak Rathod\"},\"description\":\"I am a Ruby on Rails Developer. I love ruby, and problem solving and explore new things. Apart from that, I like Reading and listen to songs.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Web Scraping with Ruby by Processing CSV - BoTree","description":"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/","og_locale":"en_US","og_type":"article","og_title":"Web Scraping with Ruby by Processing CSV - BoTree","og_description":"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.","og_url":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/","og_site_name":"BoTree Technologies","article_publisher":"https:\/\/www.facebook.com\/BoTreeTechnologies\/","article_published_time":"2021-02-12T06:41:27+00:00","article_modified_time":"2026-04-01T06:31:00+00:00","og_image":[{"width":852,"height":420,"url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png","type":"image\/png"}],"author":"Dipak Rathod","twitter_card":"summary_large_image","twitter_creator":"@BoTreeTech","twitter_site":"@BoTreeTech","twitter_misc":{"Written by":"Dipak Rathod","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#article","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/"},"author":{"name":"Dipak Rathod","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc"},"headline":"How to do Web Scraping with Ruby by Processing CSV","datePublished":"2021-02-12T06:41:27+00:00","dateModified":"2026-04-01T06:31:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/"},"wordCount":390,"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png","articleSection":["Ruby on Rails","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/","url":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/","name":"Web Scraping with Ruby by Processing CSV - BoTree","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage"},"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png","datePublished":"2021-02-12T06:41:27+00:00","dateModified":"2026-04-01T06:31:00+00:00","author":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc"},"description":"Want to understand how to do web scraping with ruby by processing CSV? Here are the exact steps you need to follow for simple scraping with Ruby on Rails.","breadcrumb":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#primaryimage","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/02\/web-scraping-with-ruby.png","width":852,"height":420,"caption":"Data Scraping in Ruby on Rails by Processing CSV"},{"@type":"BreadcrumbList","@id":"https:\/\/www.botreetechnologies.com\/blog\/web-scraping-with-ruby-by-processing-csv\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.botreetechnologies.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to do Web Scraping with Ruby by Processing CSV"}]},{"@type":"WebSite","@id":"https:\/\/www.botreetechnologies.com\/blog\/#website","url":"https:\/\/www.botreetechnologies.com\/blog\/","name":"BoTree Technologies","description":"Committed to inspire generation.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/44d6a7367e50c1097ddc3b6f2d8b6abc","name":"Dipak Rathod","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dipak-rathod-150x150.png","caption":"Dipak Rathod"},"description":"I am a Ruby on Rails Developer. I love ruby, and problem solving and explore new things. Apart from that, I like Reading and listen to songs."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/15136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/users\/53"}],"replies":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/comments?post=15136"}],"version-history":[{"count":5,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/15136\/revisions"}],"predecessor-version":[{"id":20796,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/15136\/revisions\/20796"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media\/15150"}],"wp:attachment":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media?parent=15136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/categories?post=15136"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/tags?post=15136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}