Most TikTok Scrapers on GitHub Are Dead — Here's What to Do

Last Updated on April 22, 2026

A GitHub search for "tiktok scraper" returns . Roughly haven't been pushed in over a year, and at least .

If you've ever cloned a popular TikTok scraper repo, spent an hour wrestling with dependencies, and then gotten zero output — you're not alone. The most-starred TikTok scraper on GitHub, drawrowfly/tiktok-scraper, still has over 5,000 stars. Its issue tracker, though, is littered with threads like and — both reporting zero output. I've been tracking the state of TikTok scraping repos at Thunderbit for months, and the pattern is unmistakable: these tools break fast, and most never get fixed. This article is the practical survival guide I wish existed when I first started evaluating these repos. We'll cover what's alive, what's dead, what to do instead, and how to stop wasting hours on code that stopped working before you even found it.

Why Most TikTok Scrapers on GitHub Break (and Keep Breaking)

TikTok is not a typical scraping target. Its web surface moves. Unlike a static e-commerce product page or a directory listing, TikTok rotates endpoints, updates anti-bot fingerprinting, changes page rendering methods, and introduces new session/token requirements — sometimes within weeks of the last change.

Open-source maintainers are volunteers. When TikTok pushes an update that breaks the scraper's request path, the repo may sit broken for days, weeks, or permanently. That's not a knock on the maintainers — it's a structural mismatch between a fast-moving, well-funded platform and unpaid developers who have day jobs.

Even the best TikTok scraper repos are on a break-fix treadmill. If you're going to use one, you need a strategy for evaluating, troubleshooting, and having a backup plan.

TikTok's Anti-Bot Defenses: What You're Up Against

  • Rate limiting. TikTok's explicitly document request quotas even for approved integrations. Unofficial scrapers hit these limits much faster.
  • Cookie and session gating. Modern repos like require an ms_token; older repos like show tt_webid_v2 in their examples; documents msToken, ttwid, X-Bogus, and A_Bogus. TikTok checks whether your request looks like it belongs to a real browsing session.
  • Browser fingerprinting. explains why sites compare headers, cookies, TLS signatures, and JavaScript-exposed browser traits to real-user traffic. Their covers Canvas, WebGL, WebRTC, font, and runtime signals. Fingerprinting is like TikTok checking your browser's ID card — if the browser, cookies, timing, and network signature don't line up, the request looks fake before any content is returned.
  • Behavioral detection. about TikTok scraping frequently mention that fresh Playwright sessions trigger CAPTCHA prompts. Community posts from increasingly describe detection that looks at action timing and interaction quality, not just IP reuse.
  • Encrypted/signed request parameters. Evil0ctal documents X-Bogus and A_Bogus; older community gists revolve around URL signing and token generation. TikTok increasingly expects requests to arrive with the same "stamps" its own browser/app traffic would carry.
  • CAPTCHA and verification flows. The existence of and confirms that CAPTCHA remains part of the anti-bot surface.

Why Open-Source Maintainers Can't Keep Up

The lifecycle is always the same. A developer builds a TikTok scraper. It goes viral on GitHub. TikTok patches it. The maintainer either fixes it or moves on.

Two repos illustrate the pattern perfectly:

  • drawrowfly/tiktok-scraper still has 5,052 stars and 889 forks, but its . It's the most-starred exact-phrase TikTok scraper on GitHub, and it reads like a historical artifact: high visibility, high trust, no current maintenance.
  • davidteather/TikTok-Api shows . Its shows meaningful maintenance in April 2025, July 2025, October 2025, and April 2026 — including fixes for user video crawling and new proxy/session controls. But even this healthier project openly warns that TikTok blocks requests and that users may need proxies, Playwright, and custom session logic.

The pattern is simple:

  • A stale TikTok scraper repo is probably dead.
  • An active TikTok scraper repo is probably still fragile.
  • The only real difference is whether someone is still around to patch the breakage this month.

The 60-Second Repo Vitals Checklist: How to Evaluate Any TikTok Scraper on GitHub

Before you clone anything, run this checklist. It takes under a minute and saves hours of frustration.

Signal🟢 Healthy🟡 Risky🔴 Dead
Last meaningful push< 3 months ago3–12 months ago12+ months ago
Open issue countLow, recent issues get answersGrowing pile with some maintainer activityMany unanswered "broken/blocked/not working" reports
Recent user complaintsMostly setup questionsMixed setup + breakage complaintsRepeated "zero output," "403," "still working?"
Current auth/session modelSession/cookie path documentedToken-heavy but documentedRelies on old web endpoints with no current auth guidance
Installation surfaceReproducible, tested setupSome manual stepsOld dependencies, no modern setup notes
CI/testsTests exist and are currentTests exist but unclear coverageNo tests or stale actions
Data scope fitMatches your actual use caseSupports only part of the use caseSolves a different problem entirely

How to Check Each Signal in Under 60 Seconds

  1. Last push date: Look at the repo header on GitHub. If it says "last pushed 2 years ago," you're done.
  2. Open issues: Click the Issues tab. Skim the most recent titles. Search for not working, 403, blocked, captcha, or zero output.
  3. User complaints: If the top 5 open issues are all variations of "this doesn't work anymore," that's your answer.
  4. Auth/session model: Open the README. Look for current guidance like ms_token, Playwright setup, or proxy notes. If the README references 2023 endpoints, move on.
  5. Installation surface: Check for a requirements file, Docker support, or clear setup instructions. If the README says "npm install" and the last Node version tested was 14, expect trouble.
  6. CI/tests: Check the Actions tab. If tests are failing or absent, breakage is guesswork.
  7. Data scope: Does the repo actually describe the data types you need (profiles, video metadata, comments, hashtags)? Many repos only do video download, not structured data extraction.

Red Flags That Mean "Walk Away"

  • The repo is archived.
  • The README says "no longer maintained."
  • The last commit references a TikTok API version from 2+ years ago.
  • Issues are flooded with "doesn't work" reports and the maintainer hasn't responded in months.
  • The repo has high stars but no recent forks or pull requests.

Pro tip: Search the Issues tab for is:issue is:open "not working" or is:issue is:open "403". If the results are dense and recent, the repo is probably broken.

tiktok_scraper_repo_status_v1_a5c4a7a45c.png

Here's the Repo Vitals Checklist applied to the repos you'll actually find when searching "tiktok scraper" on GitHub:

RepoLast PushStarsOpen IssuesVerdictNote
drawrowfly/tiktok-scraper2023-05-195,05258🔴 Dead / reference onlyStill famous, but too stale for 2026 production use
davidteather/TikTok-Api2026-04-016,301134🟡 Alive but high-maintenanceStrongest OSS choice; expects Playwright, tokens, often proxies
scrapfly/scrapfly-scrapers/tiktok-scraper2026-04-21938 (parent)~0 (monorepo)🟡 Alive, but not pure OSSCurrent and useful, but requires ScrapFly API key
Evil0ctal/Douyin_TikTok_Download_API2025-10-1217,397135🟡 Alive, broad, complexFeature-rich multi-platform project; closer to a power-user platform
naseif/tiktok-scraper2024-07-2610713🟡 RiskySmaller repo with open complaints around user info and hashtag flows
loewehancara1rmyv/Tiktok-scraper2026-01-1240🔴 Too new to trustShowcase repo, not community-proven

drawrowfly/tiktok-scraper

For years, this TypeScript scraper/downloader was the default answer to "tiktok scraper github" — handling user, trend, hashtag, and music feeds. In 2026, it's best treated as historical documentation. The , and the issue queue still contains unresolved and reports from 2023–2025. If you're reading this article because you cloned this repo and got nothing, you're in good company.

davidteather/TikTok-Api

The most credible open-source TikTok data wrapper still alive in 2026. It's active, has , and explicitly documents Playwright setup, async usage, token handling, proxy support, and session-recovery features. But it is not a "clone and go" tool. Its own README says EmptyResponseException usually means TikTok is blocking the request, and shows repeated pain around ms_token, broken comment extraction, KeyError: 'ItemModule', and endpoint-specific failures. Verdict: alive, useful, developer-only, and maintenance-heavy.

Other Notable Repos

  • : Current and technically relevant, but the README requires a SCRAPFLY_KEY. This is a code example for a managed scraping platform, not a free standalone tool.
  • : Covers TikTok and Douyin, documents signing logic (X-Bogus, A_Bogus, msToken), and supports comments, followers, playlists, and more. It's technically demanding and increasingly intertwined with paid API references. The issue tracker shows ongoing bug reports in 2026 around video links and user-info endpoints. Alive and feature-rich, but complex.
  • : Smaller, with open complaints. Risky for production use.
  • : 4 stars, 0 issues, too new to trust. The Medium article that promoted it did so uncritically.

TikTok Official API vs. GitHub Scrapers vs. No-Code Tools: A Decision Framework

tiktok_scraper_decision_framework_v1_590e6b1852.png

Most competitor articles either ignore TikTok's official access paths or jump straight from "use GitHub" to "buy our service." Here's a neutral comparison of all three paths:

FactorTikTok Research APIGitHub ScrapersNo-Code Tools (e.g., Thunderbit)
Access barrierAcademic/business application required; ~4 weeks for approvalGit clone + setupBrowser extension install
Data scopeApproved endpoints only (accounts, videos, comments, shops)Broad (profiles, videos, comments, hashtags, shops)Visible page data (profiles, videos, engagement, hashtags)
Maintenance burdenLow (official, stable)High (repos break when TikTok updates)None (AI adapts to layout changes)
Anti-ban riskNone (authorized)HighLow (browser-based, mimics real user)
CostFree (if approved)Free (but time-intensive)Free tier available; credit-based plans from $15/mo
Coding requiredYes (Python/R)Yes (Python/Node.js)No
Best forResearchers, academics, approved orgsDevelopers comfortable with maintenanceMarketers, sales teams, ops, non-devs

When the TikTok Research API Makes Sense

TikTok's is the cleanest official path if you qualify. Eligible researchers in the can apply to study public content and account data. Available data categories include accounts, followers/following, liked videos, pinned videos, reposted videos, content, comments, and shops. The exposes fields like video_description, view_count, like_count, comment_count, share_count, and comment-level fields like text, reply_count, and create_time.

The downside: eligibility is limited to academic institutions and eligible nonprofit/independent researchers in specific regions, plus . If you're a growth team or agency needing quick operational data, this isn't your path.

TikTok also offers a for ads and advertiser content data, which is useful for transparency research but not general scraping.

When a GitHub Scraper Still Makes Sense

GitHub scrapers still make sense for developers who need unofficial access to public data beyond the official API's approval gate and are willing to maintain the stack. That includes use cases like scraping visible profile grids, hashtags, comments, playlists, or video metadata in a custom pipeline where forking the repo and patching it is acceptable.

The honest caveat: this is not a one-time setup. Even the most reliable 2026 repo, , is still telling users they may need Playwright, cookies/tokens, proxies, and custom page/session factories.

When a No-Code Tool Like Thunderbit Makes Sense

Not a developer? Or a developer who's tired of the break-fix cycle? A browser-based AI tool is the fastest path to structured TikTok data.

We built as an AI web scraper that works as a Chrome extension. On TikTok, it reads any visible page (profile, video, hashtag, search results), suggests columns via "AI Suggest Fields," and lets you click "Scrape" to extract structured data. The documents fields like date posted, video duration, likes, shares, saves, comments, views, and hashtags. The shows how to collect post thumbnails, URLs, captions, creator handles, and engagement signals from profile pages. The covers video URL, creator username, description, posted time, views, likes, comments, shares, sound/audio, and cover image URL.

Subpage scraping lets you visit each video page from a profile listing and enrich the table with engagement metrics, captions, and hashtags — useful for marketers building influencer databases or competitor content audits.

No maintenance, no installation triage, no anti-ban configuration. AI adapts to layout changes automatically. Export is free to Google Sheets, Excel, Airtable, Notion, CSV, or JSON.

If you've burned hours on broken GitHub repos, this is a legitimate alternative — not a forced product pitch.

Installation Triage: Fixing the 5 Most Common TikTok Scraper GitHub Setup Failures

Installation failures are the third most-mentioned pain point in TikTok scraping forums, and no major guide actually helps you fix them. Here's what goes wrong.

Node.js Version Conflicts

Problem: Many older TikTok scraper repos (especially drawrowfly/tiktok-scraper) were built for Node.js 14–16. If you're running Node 20+, npm install may fail silently or produce incompatible binaries.

Fix: Use nvm (Node Version Manager) to install and switch to the correct version:

1nvm install 16
2nvm use 16
3npm install

If the repo doesn't specify a Node version, check the engines field in package.json or look at the CI config.

Python Dependency Issues and Playwright Setup

Problem: requires and Playwright with specific browser binaries. Users get errors like "browser not found" or dependency conflicts.

Fix: Always use a virtual environment, then install Playwright browsers explicitly:

1python -m venv .venv
2source .venv/bin/activate   # On Windows: .venv\Scripts\activate
3pip install TikTokApi
4python -m playwright install

If playwright install fails, check your system's package manager for missing system dependencies (e.g., libnss3 on Ubuntu).

Linux/Ubuntu Permission Errors

Problem: Running sudo pip install corrupts the system Python environment and leads to cascading dependency issues.

Fix: Never use sudo pip install. Always create a virtual environment first:

1python3 -m venv .venv
2source .venv/bin/activate
3pip install -r requirements.txt

This isolates the scraper's dependencies from your system Python.

Windows Path and Encoding Problems

Problem: Windows CMD has encoding issues and path length limitations that break scraper installations, especially when Playwright downloads browser binaries to deeply nested directories.

Fix: Use WSL (Windows Subsystem for Linux) or Git Bash instead of CMD. WSL gives you a full Linux environment inside Windows:

1wsl --install
2# Then open a WSL terminal and follow the Linux setup steps

The Docker Shortcut: Skip Dependency Issues Entirely

Problem: All of the above.

Fix: If you're comfortable with Docker, containerize the scraper environment. A basic Dockerfile for a Python-based TikTok scraper looks like this:

1FROM python:3.11-slim
2RUN apt-get update && apt-get install -y libnss3 libatk-bridge2.0-0 libdrm2 libxcomposite1 libxdamage1 libxrandr2 libgbm1 libasound2
3RUN pip install TikTokApi playwright && python -m playwright install --with-deps chromium
4WORKDIR /app
5COPY . .
6CMD ["python", "scrape.py"]

This guarantees a reproducible environment regardless of your host OS. If the scraper works in Docker, any failure outside Docker is an environment issue, not a code issue.

Troubleshooting flowchart:

  1. Can the repo run its own example successfully? → If no, check runtime version.
  2. Runtime version correct? → Check browser/Playwright install.
  3. Browser installed? → Check tokens/cookies.
  4. Tokens/cookies valid? → Check whether TikTok is blocking the session.
  5. All of the above fail? → Assume repo breakage, not user error. Switch tools.

Anti-Ban Best Practices for TikTok Scraping (Without Paying for Proxies)

Forum users repeatedly complain about bans and detection: "they get your accounts banned, which is an added expense" and "without using Apify or expensive paid APIs." Here are free, practical workarounds that don't require a paid proxy subscription.

tiktok_scraper_antiban_playbook_v1_3f3a302f6b.png

PracticeDifficultyCostEffectiveness
Random request delays (2–8s jitter)EasyFreeModerate
Session/cookie rotationMediumFreeModerate
Scraping logged-out public pages onlyEasyFreeModerate
Respecting robots.txt + rate-limit headersEasyFreeBaseline
Headless browser fingerprint randomization (Playwright)MediumFreeHigh
Using TikTok's mobile API endpoints (lower detection)HardFreeHigh
Residential proxy rotationMedium$20–100/moHigh

Free Techniques That Actually Help

Random request delays. Don't fire requests in a tight loop. Add 2–8 seconds of random jitter between requests. This is the single easiest thing you can do:

1import time, random
2time.sleep(random.uniform(2, 8))

Session and cookie reuse. Don't create a brand-new session for every request. Reuse cookies and session state across a batch of requests, then rotate. This is exactly why modern repos ask for ms_token rather than promising stateless scraping.

Scrape logged-out public pages. it does not support user-authenticated routes and only works on data visible when logged out. Logged-out scraping has a lower detection profile than authenticated sessions.

Respect robots.txt. TikTok's blocks many agents entirely and only allows a limited set of public paths for general crawling. It's not a green light for aggressive scraping, but respecting it reduces the chance of immediate IP blacklisting.

Intermediate Techniques for Higher Success Rates

Headless browser fingerprint randomization. If you're using Playwright, randomize the viewport size, user-agent string, timezone, and locale for each session. This makes your scraper look like a different real user each time, rather than the same bot with a fresh IP.

Using TikTok's mobile API endpoints. Some community members report lower detection rates when targeting mobile-style endpoints rather than the web frontend. This is harder to implement and less documented, but it's a real technique for advanced users.

When You Do Need a Proxy (and Affordable Options)

At scale, free techniques aren't enough. Residential proxy rotation is the standard approach for large-volume TikTok scraping. I won't endorse a specific paid proxy service here, but the general advice is: avoid datacenter proxies (TikTok flags them aggressively) and look for residential or mobile proxy pools with per-request rotation.

Alternatively, browser-based tools like sidestep the proxy question entirely because they run in your own browser session, mimicking a real user. That doesn't make them immune to detection at scale, but for typical marketing or research use cases (dozens to hundreds of pages, not millions), it's a much simpler path.

What Data Do You Actually Get? Real Output Samples from TikTok Scrapers

Users want to know what data they'll actually get before committing to a tool — and most guides skip this entirely. Here are representative field structures grounded in source documentation.

Profile Data

UsernameDisplay NameFollowersFollowingTotal LikesBioVerifiedProfile URL
@examplecreatorJane Doe1,240,00031248,700,000"Cooking + comedy 🍳"tiktok.com/@examplecreator
@travelwithmarkMark S.890,00015022,100,000"Travel vlogger 🌍"tiktok.com/@travelwithmark
@fitnessmayaMaya L.2,100,0008891,300,000"Workouts & wellness"tiktok.com/@fitnessmaya

Available from: GitHub scrapers (TikTok-Api, Evil0ctal), Research API, Thunderbit (from visible profile pages).

Video Metadata

Video URLCaptionViewsLikesCommentsSharesMusicHashtagsPost DateDuration
tiktok.com/@ex/video/123"Best pasta trick ever 🍝"4,200,000312,0008,40021,000"Italian Vibes – DJ Marco"#pasta #cooking #hack2026-03-150:42
tiktok.com/@ex/video/456"POV: your cat judges you"9,100,0001,100,00023,00055,000"Original Sound"#cat #pov #funny2026-04-010:18
tiktok.com/@ex/video/789"Morning routine nobody asked for"1,800,00098,0003,2007,500"Chill Morning – LoFi"#routine #morning2026-04-101:02

Available from: GitHub scrapers (TikTok-Api, Evil0ctal), (fields include video_description, view_count, like_count, comment_count, share_count, music_id, hashtag_names, video_duration), Thunderbit ().

Comments Data

CommenterComment TextLikesTimestampReplies
@user_abc"I tried this and it actually works 😂"1,2002026-03-16T08:12:00Z14
@chef_dan"Add garlic next time, trust me"8902026-03-16T09:45:00Z7
@randomfan99"This is the content I'm here for"3402026-03-16T11:30:00Z2

Available from: GitHub scrapers (TikTok-Api, Evil0ctal), (fields include text, like_count, reply_count, create_time), Thunderbit (from visible comment sections).

Hashtag and Search Data

HashtagTop Video URLAggregate ViewsTrending
#pastatiktok.com/@ex/video/1234,200,000Yes
#cookingtiktok.com/@chef/video/32111,000,000Yes
#hacktiktok.com/@tips/video/6542,900,000No

Available from: GitHub scrapers (varies by repo), Thunderbit ().

Note: No single repo guarantees all fields all the time. TikTok response structures shift, and even maintainers warn about that. Treat these as representative, not guaranteed.

How to Scrape TikTok Data in 2 Clicks with Thunderbit (Step-by-Step)

Tired of the break-fix cycle? Here's the no-code path — the escape hatch for anyone who's tried and failed with GitHub repos.

  1. Install the .
  2. Navigate to the TikTok page you want to scrape — a profile, search results page, hashtag page, or individual video.
  3. Click "AI Suggest Fields." Thunderbit's AI reads the page and suggests columns: username, followers, video caption, likes, hashtags, etc.
  4. Adjust fields if needed, then click "Scrape." Data populates in a structured table.
  5. Use Subpage Scraping to enrich data. Click into each video from a profile listing and pull additional fields: full caption, music details, comment count, share count.
  6. Export to Google Sheets, Excel, Airtable, or Notion — completely free.

No maintenance, no installation triage, no anti-ban configuration. The AI adapts to TikTok layout changes automatically.

Enriching TikTok Data with Subpage Scraping

After scraping a list of videos from a profile or hashtag page, click "Scrape Subpages" to have the AI visit each video page and pull additional fields. This is especially useful for marketers building influencer databases or running competitor content audits — you get a full table of video-level engagement data without manually clicking through dozens of pages.

Exporting and Using Your TikTok Data

Thunderbit exports to Google Sheets, Excel, Airtable, Notion, CSV, or JSON — all free. Common use cases:

  • Drop data into a spreadsheet for engagement analysis.
  • Send to Airtable for a CRM-style influencer tracker.
  • Push to Notion for team collaboration on content research.

For a deeper look at how Thunderbit handles web data extraction, check out our or watch tutorials on the .

TikTok's legal position is clear. The platform's says its Terms of Service prohibit automated scripts collecting information or interacting with the service in unauthorized ways, and explicitly mentions bypassing access restrictions. TikTok's also prohibit deceptive attempts to obtain information via automated scripts or web crawling.

Practical guidance:

  • Stick to publicly available data. Don't scrape private or login-gated content.
  • Respect rate limits. Don't hammer TikTok's servers.
  • Comply with data privacy laws. GDPR and CCPA still apply if you're collecting, storing, or analyzing personal data.
  • Use the Research API when eligible. It's the safest path from a compliance perspective.
  • This is not legal advice. Consult a professional for your specific situation.

For more on the legal landscape, see our guide.

What to Do When Your TikTok Scraper GitHub Repo Dies

The short version:

  1. Always run the 60-second Repo Vitals Checklist before cloning any TikTok scraper from GitHub. Most repos are already dead.
  2. Understand your options. Official API, GitHub scrapers, and no-code tools each serve different users and use cases.
  3. If you go the GitHub route, budget time for installation troubleshooting and anti-ban configuration. Expect ongoing maintenance.
  4. Know what data you'll actually get before committing to a tool. Check the output fields, not just the star count.
  5. If you're not a developer (or you're tired of broken repos), try a no-code tool like — two clicks, structured data, free export.

The TikTok data you need is accessible. The question is whether you want to spend your time maintaining a scraper or actually using the data. Pick the approach that fits your skill level and use case, and don't let a dead GitHub repo waste another afternoon.

FAQs

Are there any TikTok scrapers on GitHub that still work in 2026?

Yes, but the list is short. is the most credible open-source option with active maintenance as of April 2026. is also alive but more complex. The most-starred repo, drawrowfly/tiktok-scraper, has not been updated since May 2023 and is effectively dead. Always run the Repo Vitals Checklist before investing time in any repo.

TikTok's Terms of Service explicitly prohibit automated scraping. Publicly visible data occupies a legal gray area that varies by jurisdiction. The safest path is the official for eligible researchers. If you scrape public data, stick to publicly accessible content, respect rate limits, and comply with GDPR/CCPA. This is not legal advice — consult a professional for your situation.

Can I scrape TikTok without coding?

Yes. Browser-based AI tools like let you extract structured TikTok data (profiles, video metadata, hashtags, engagement metrics) without writing any code. The TikTok Research API also requires minimal coding for approved applicants. For non-developers, no-code tools are the fastest and most reliable path.

What data can I get from a TikTok scraper?

Common data types include profile information (username, followers, bio, verified status), video metadata (caption, views, likes, comments, shares, music, hashtags, duration, post date), comments (text, likes, timestamp, replies), and hashtag/search data (top videos, aggregate views, trending status). The exact fields depend on the tool and method — see the output samples section above for details.

Why does my TikTok scraper keep getting blocked?

TikTok uses multiple layers of anti-bot defense: rate limiting, cookie/session gating, browser fingerprinting, behavioral detection, encrypted request parameters, and CAPTCHA flows. Common causes of blocking include sending requests too fast, using a clean/new session for every request, running a headless browser with default fingerprints, or using datacenter proxies. See the anti-ban best practices section above for free and paid workarounds.

Ke
Ke
CTO @ Thunderbit. Ke is the person everyone pings when data gets messy. He's spent his career turning tedious, repetitive work into quiet little automations that just run. If you've ever wished a spreadsheet could fill itself in, Ke has probably already built the thing that does it.
Table of Contents

Try Thunderbit

Scrape leads & other data in just 2-clicks. Powered by AI.

Get Thunderbit It's free
Extract Data using AI
Easily transfer data to Google Sheets, Airtable, or Notion
Chrome Store Rating
PRODUCT HUNT#1 Product of the Week