<?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: Ethan Teague</title>
    <description>The latest articles on DEV Community by Ethan Teague (@ethan_teague).</description>
    <link>https://dev.to/ethan_teague</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%2F4034035%2F8663862b-e34b-4284-8540-689f4e8b5a63.png</url>
      <title>DEV Community: Ethan Teague</title>
      <link>https://dev.to/ethan_teague</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ethan_teague"/>
    <language>en</language>
    <item>
      <title>How to Scrape Shopify App Store Reviews (and Track Competitor Churn) in 2026</title>
      <dc:creator>Ethan Teague</dc:creator>
      <pubDate>Mon, 20 Jul 2026 12:21:26 +0000</pubDate>
      <link>https://dev.to/ethan_teague/how-to-scrape-shopify-app-store-reviews-and-track-competitor-churn-in-2026-31bp</link>
      <guid>https://dev.to/ethan_teague/how-to-scrape-shopify-app-store-reviews-and-track-competitor-churn-in-2026-31bp</guid>
      <description>&lt;p&gt;&lt;em&gt;Note: this uses a tool I built, but the parsing approach works for any Shopify App Store scraping project.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you build Shopify apps — or invest in them — the App Store is a goldmine of competitive intelligence. The trick most people miss: &lt;strong&gt;reviews come with the reviewing merchant's store name, country, and how long they used the app.&lt;/strong&gt; That turns "3 new 1-star reviews" into "here are the named stores leaving my competitor this week, and why."&lt;/p&gt;

&lt;h2&gt;
  
  
  The good news: it's server-rendered HTML
&lt;/h2&gt;

&lt;p&gt;Unlike a lot of modern sites, Shopify App Store pages render on the server. No headless browser needed.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;App details&lt;/strong&gt; live in a JSON-LD block (&lt;code&gt;&amp;lt;script type="application/ld+json"&amp;gt;&lt;/code&gt;): name, &lt;code&gt;aggregateRating&lt;/code&gt;, category. Developer, launch date, and pricing plans are in the surrounding markup.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reviews&lt;/strong&gt; are chunked by a &lt;code&gt;data-merchant-review&lt;/code&gt; marker. Each chunk has the star rating (&lt;code&gt;aria-label="X out of 5 stars"&lt;/code&gt;), date, review text, and — three lines above the "using the app" tenure string — the store name and country.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The reviews endpoint even supports filtering:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://apps.shopify.com/&amp;lt;slug&amp;gt;/reviews?page=1&amp;amp;sort_by=newest&amp;amp;ratings[]=1&amp;amp;ratings[]=2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That &lt;code&gt;ratings[]&lt;/code&gt; filter plus &lt;code&gt;sort_by=newest&lt;/code&gt; is the whole churn-monitoring machine: only new 1–2 star reviews, newest first.&lt;/p&gt;

&lt;h2&gt;
  
  
  The monitoring pattern
&lt;/h2&gt;

&lt;p&gt;Scrape newest-first, stop when reviews get older than your last run's date, and you have a cheap weekly "who's unhappy with competitor X" pipeline. Pair it with star filters and you're watching exactly the merchants most likely to switch.&lt;/p&gt;

&lt;h2&gt;
  
  
  The no-code way
&lt;/h2&gt;

&lt;p&gt;I published a &lt;a href="https://apify.com/ethanteague/shopify-app-store-scraper" rel="noopener noreferrer"&gt;&lt;strong&gt;Shopify App Store Scraper on Apify&lt;/strong&gt;&lt;/a&gt; that returns flat JSON: one item per app, one per review, with store/country/tenure attached.&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="nt"&gt;-X&lt;/span&gt; POST &lt;span class="s2"&gt;"https://api.apify.com/v2/acts/ethanteague~shopify-app-store-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"appUrls": ["stockie"], "maxReviewsPerApp": 200, "reviewsNewerThan": "2026-01-01", "starFilters": ["1","2"]}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example review item:&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;"appSlug"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stockie"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"store"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Woolyn"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"country"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"United States"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"tenure"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"4 days using the app"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"stars"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"dateIso"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2026-07-15"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"text"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Pros: The most robust PO ordering system I've found..."&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;p&gt;Pricing is $2 per 1,000 reviews, $5 per 1,000 apps — schedule it weekly and you've got a standing competitive-intel feed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to build
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Churn-watch on competitors (the reviewers are named stores → warm-lead signal)&lt;/li&gt;
&lt;li&gt;App-idea validation: mine every complaint in a category before writing code&lt;/li&gt;
&lt;li&gt;Portfolio monitoring: ratings and pricing across dozens of apps&lt;/li&gt;
&lt;li&gt;A market-data feed for an AI agent via MCP&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Comments open for edge cases.&lt;/p&gt;

</description>
      <category>webscraping</category>
      <category>shopify</category>
      <category>api</category>
      <category>saas</category>
    </item>
    <item>
      <title>How to Scrape Bluesky Data in 2026 (Posts, Profiles, and Search)</title>
      <dc:creator>Ethan Teague</dc:creator>
      <pubDate>Sun, 19 Jul 2026 14:13:50 +0000</pubDate>
      <link>https://dev.to/ethan_teague/how-to-scrape-bluesky-data-in-2026-posts-profiles-and-search-1a2k</link>
      <guid>https://dev.to/ethan_teague/how-to-scrape-bluesky-data-in-2026-posts-profiles-and-search-1a2k</guid>
      <description>&lt;p&gt;&lt;em&gt;Note: this walkthrough uses a tool I built, but the API details apply to any Bluesky scraping project.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Bluesky is built on the AT Protocol, which means a lot of its data is available through a clean, documented, public API — no login required for most of it. Here's how to get posts, profiles, followers, and threads in 2026, plus the one thing that &lt;em&gt;does&lt;/em&gt; need authentication.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's open without a login
&lt;/h2&gt;

&lt;p&gt;Bluesky's public AppView (&lt;code&gt;https://public.api.bsky.app&lt;/code&gt;) serves these unauthenticated:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.actor.getProfile&lt;/code&gt; — bio, follower/following/post counts&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.feed.getAuthorFeed&lt;/code&gt; — a user's posts (with reply/repost filters)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.graph.getFollowers&lt;/code&gt; / &lt;code&gt;getFollows&lt;/code&gt; — the social graph&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.feed.getPostThread&lt;/code&gt; — a post and its full reply tree&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, a profile is one GET away:&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://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=bsky.app"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The one catch: keyword search needs auth
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;app.bsky.feed.searchPosts&lt;/code&gt; returns &lt;strong&gt;403 unauthenticated&lt;/strong&gt;. Any tool claiming anonymous Bluesky keyword search is quietly routing your queries through someone else's account. The correct way is to create a &lt;strong&gt;free app password&lt;/strong&gt; (Bluesky → Settings → Privacy and security → App passwords — never your main password), call &lt;code&gt;com.atproto.server.createSession&lt;/code&gt; on your PDS to get a token, and pass it as a Bearer header. App passwords can't manage your account and are revocable, so this is safe.&lt;/p&gt;

&lt;h2&gt;
  
  
  Handling the edge cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Some profiles show &lt;code&gt;handle.invalid&lt;/code&gt; (broken handle verification) — fall back to the DID for building URLs.&lt;/li&gt;
&lt;li&gt;Post URLs use the record key: &lt;code&gt;at://did/app.bsky.feed.post/&amp;lt;rkey&amp;gt;&lt;/code&gt; maps to &lt;code&gt;bsky.app/profile/&amp;lt;handle&amp;gt;/post/&amp;lt;rkey&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Paginate with the &lt;code&gt;cursor&lt;/code&gt; field; back off on 429s.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The no-code way
&lt;/h2&gt;

&lt;p&gt;I published a &lt;a href="https://apify.com/ethanteague/bluesky-scraper" rel="noopener noreferrer"&gt;&lt;strong&gt;Bluesky Scraper on Apify&lt;/strong&gt;&lt;/a&gt; that wraps all of the above into flat JSON/CSV — profiles, feeds, followers, threads, and (with your app password) keyword search.&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="nt"&gt;-X&lt;/span&gt; POST &lt;span class="s2"&gt;"https://api.apify.com/v2/acts/ethanteague~bluesky-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"userHandles": ["bsky.app"], "maxPostsPerUser": 100}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's $0.50 per 1,000 posts, and it's callable from Python/JS, on a schedule, or as an AI-agent tool via MCP.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to build
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Track a topic or brand across Bluesky&lt;/li&gt;
&lt;li&gt;Export a follower graph for community analysis&lt;/li&gt;
&lt;li&gt;Feed fresh social data to an AI agent&lt;/li&gt;
&lt;li&gt;Archive threads before they're deleted&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Questions or edge cases? Comments are open.&lt;/p&gt;

</description>
      <category>webscraping</category>
      <category>api</category>
      <category>python</category>
      <category>socialmedia</category>
    </item>
    <item>
      <title>How to Scrape Airbnb Listings and Prices in 2026 (No Code Required)</title>
      <dc:creator>Ethan Teague</dc:creator>
      <pubDate>Fri, 17 Jul 2026 15:21:31 +0000</pubDate>
      <link>https://dev.to/ethan_teague/how-to-scrape-airbnb-listings-and-prices-in-2026-no-code-required-1e51</link>
      <guid>https://dev.to/ethan_teague/how-to-scrape-airbnb-listings-and-prices-in-2026-no-code-required-1e51</guid>
      <description>&lt;p&gt;&lt;em&gt;Heads-up: this post references a tool I built. It's a genuinely useful walkthrough either way — the technique applies to any Airbnb scraping project.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you've ever tried to scrape Airbnb, you already know the two walls you hit: the pages are rendered by JavaScript, and Airbnb aggressively blocks datacenter IPs. Below is the reliable way to get clean Airbnb data in 2026 — listing prices, ratings, coordinates, and discounts — without running a headless browser or babysitting proxies.&lt;/p&gt;

&lt;h2&gt;
  
  
  The key insight: Airbnb ships its data in the HTML
&lt;/h2&gt;

&lt;p&gt;You don't need to render the page. Every Airbnb search response embeds the full result set as JSON inside a &lt;code&gt;&amp;lt;script id="data-deferred-state-0"&amp;gt;&lt;/code&gt; tag. Parse that and you get structured data straight away — no DOM scraping, no selectors that break on the next redesign.&lt;/p&gt;

&lt;p&gt;The path to the results is:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;niobeClientData[*][1].data.presentation.staysSearch.results
  ├── searchResults[]      // ~18 listings per page
  └── paginationInfo.pageCursors[]   // all page cursors, upfront
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each listing carries a base64-encoded ID in &lt;code&gt;demandStayListing.id&lt;/code&gt; (decode it, take the segment after the last colon, and you have the numeric listing ID for &lt;code&gt;airbnb.com/rooms/&amp;lt;id&amp;gt;&lt;/code&gt;), a price line with discounts, &lt;code&gt;avgRatingLocalized&lt;/code&gt; ("4.95 (123)"), and GPS coordinates.&lt;/p&gt;

&lt;h2&gt;
  
  
  The two gotchas
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Datacenter IPs get blocked.&lt;/strong&gt; You need residential proxies. If a response comes back without the &lt;code&gt;data-deferred-state&lt;/code&gt; marker, you've been served a bot check — rotate to a fresh IP and retry.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;~270 result cap per search.&lt;/strong&gt; Airbnb won't paginate past ~15 pages. To cover a whole market, split into narrower searches (by price band or neighborhood) and dedupe by listing ID.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The no-code way
&lt;/h2&gt;

&lt;p&gt;If you'd rather not maintain proxy pools and parsers, I published an &lt;a href="https://apify.com/ethanteague/airbnb-scraper" rel="noopener noreferrer"&gt;&lt;strong&gt;Airbnb Scraper on Apify&lt;/strong&gt;&lt;/a&gt; that does exactly the above. Paste a location or a full Airbnb search URL (every filter is honored), and get flat JSON/CSV back.&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="nt"&gt;-X&lt;/span&gt; POST &lt;span class="s2"&gt;"https://api.apify.com/v2/acts/ethanteague~airbnb-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"locations": ["Austin, Texas"], "checkIn": "2026-08-16", "checkOut": "2026-08-21", "maxListingsPerSearch": 180}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example output per listing:&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;"listingId"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1652957843916333450"&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://www.airbnb.com/rooms/1652957843916333450"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Stylish Pool Home 4BR Near Siesta Key"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"rating"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;5.0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"reviewsCount"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;8&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"badges"&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="s2"&gt;"Guest favorite"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"priceLabel"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"$3,190 for 5 nights"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"latitude"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;27.30754&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"longitude"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;-82.52108&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;p&gt;It's pay-per-result ($4 per 1,000 listings), residential proxies included, and callable from Python/JS/Make/Zapier or as an AI-agent tool via MCP.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you can build with this
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Nightly price tracking across a market for revenue management&lt;/li&gt;
&lt;li&gt;Supply/rating analysis by neighborhood (coordinates make it map-ready)&lt;/li&gt;
&lt;li&gt;Discount hunting at scale&lt;/li&gt;
&lt;li&gt;A data feed for an AI travel agent&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy scraping. If you hit an edge case, drop it in the comments.&lt;/p&gt;

</description>
      <category>webscraping</category>
      <category>api</category>
      <category>datascience</category>
      <category>python</category>
    </item>
  </channel>
</rss>
