Install
openclaw skills install cloudbypassUse Cloudbypass API (穿云API/穿云) to fetch pages protected by Cloudflare/Turnstile/JS challenge. Use when normal requests fail with challenge/403 and compliant...
openclaw skills install cloudbypassUse the bundled script to call Cloudbypass API.
{baseDir}/scripts/cloudbypass_request.jsRequired env:
CLOUDBYPASS_APIKEY (required)CLOUDBYPASS_PROXY (required for V2/V2S)CLOUDBYPASS_PART (optional, default: 0)CLOUDBYPASS_SITEKEY (optional)Security / usage notes:
api.cloudbypass.com to perform requests and may incur billing.const skill = await openclaw.getSkill('cloudbypass');
// V1 (simple)
const r1 = await skill.get('https://example.com');
// V2 (challenge-heavy; proxy required)
const r2 = await skill.requestV2({
url: 'https://example.com',
proxy: process.env.CLOUDBYPASS_PROXY
});