Install
openclaw skills install web-scraper-jinaBypass Cloudflare and scrape any website using r.jina.ai API. Works on sites with strong protection like Truth Social, Cloudflare Turnstile, etc.
openclaw skills install web-scraper-jinaBypass Cloudflare and scrape any website using free r.jina.ai API.
Simply prepend https://r.jina.ai/ to any URL:
https://r.jina.ai/https://truthsocial.com/@realDonaldTrump
https://r.jina.ai/https://bitget.com/events/poolx
curl -s "https://r.jina.ai/https://truthsocial.com/@realDonaldTrump"
curl -s "https://r.jina.ai/https://example.com"
import requests
def scrape(url):
return requests.get(f"https://r.jina.ai/{url}").text