Loading...
Loading...
Use when user shares a Medium article URL behind a paywall and wants to read the full content. Also use for articles on Medium-hosted publications like towardsdatascience.com, betterprogramming.pub, levelup.gitconnected.com, etc.
npx skill4agent add ratacat/claude-skills medium-paywall-bypass| Service | URL Pattern | WebFetch | curl | Notes |
|---|---|---|---|---|
| Freedium | | Yes | Yes | Best option, returns content directly |
| Archive.today | | No | Maybe | Often requires captcha |
| RemovePaywalls | | No | No | Redirect page only, needs browser |
| ReadMedium | | No | No | Returns 403 programmatically |
{encoded_url}{raw_url}1. User provides Medium URL
2. Try Freedium first via WebFetch
3. If blocked/empty, try next service
4. Extract and present article contenthttps://medium.com/@user/some-article-abc123URL: https://freedium.cfd/https%3A%2F%2Fmedium.com%2F%40user%2Fsome-article-abc123
Prompt: Extract the full article contentcurl -sL "https://freedium.cfd/https%3A%2F%2Fmedium.com%2F%40user%2Fsome-article-abc123"medium.com*.medium.comtowardsdatascience.combetterprogramming.publevelup.gitconnected.comjavascript.plainenglish.iouxdesign.cchackernoon.comcodeburst.ioitnext.ioproandroiddev.cominfosecwriteups.com| Problem | Solution |
|---|---|
| Freedium down | Try alternative mirror: |
| Article not found | Article may be too new to be cached |
| Garbled HTML | Use WebFetch with prompt: "Extract the article text and format as markdown" |
| 403/blocked | Try curl with |
# URL encoding in Python
from urllib.parse import quote
encoded = quote(url, safe='')
# For WebFetch tool
freedium_url = f"https://freedium.cfd/{quote(medium_url, safe='')}"