Install
openclaw skills install @hith3sh/zyteExtract structured data from websites using Zyte API (formerly Crawlera) with smart proxy rotation and browser rendering. Use this skill when users want to scrape dynamic JavaScript-rendered pages, extract data at scale, or monitor website content.
openclaw skills install @hith3sh/zyteAccess Zyte API from chat — extract structured data from URLs, inspect service health, and review incidents or maintenance windows.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Zyte API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Zyte API |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Zyte API |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Zyte API │
│ (User Chat) │ │ (Credentials)│ │ (Scraping) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Zyte │ │
│ │ 4. Proxy Requests │
│ │ 5. Route Through │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Zyte │
│ File │ │ Auth │ │ Portal │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Zyte API again."
# List integrations
clawlink_list_integrations
# List Zyte API tools
clawlink_list_tools --integration zyte-api
# Search for a specific tool
clawlink_search_tools --query "extract" --integration zyte-api
All Zyte API tool calls are authenticated automatically by ClawLink using the user's connected Zyte API credentials.
No API key is required in chat. ClawLink stores the credentials securely and injects them into every Zyte API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for zyte-api in the list.
clawlink_list_tools --integration zyte-api
Response: Returns the live tool catalog for Zyte API.
If Zyte API tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration zyte-apiclawlink_list_integrations to confirm Zyte API is connected.clawlink_list_tools --integration zyte-api to see the live catalog.clawlink_search_tools with a short query and integration zyte-api.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: Check status → Extract data → Return results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute extraction │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Tool | Description | Mode |
|---|---|---|
zyte_api_extract | Extract structured data from a URL | Read |
zyte_api_extract_batch | Extract data from multiple URLs | Read |
zyte_api_scrape | Scrape a webpage with browser rendering | Read |
| Tool | Description | Mode |
|---|---|---|
zyte_api_get_status | Check Zyte API service status | Read |
zyte_api_list_incidents | List active and recent incidents | Read |
zyte_api_list_maintenance | List scheduled maintenance windows | Read |
| Tool | Description | Mode |
|---|---|---|
zyte_api_get_usage | Get current API usage statistics | Read |
zyte_api_get_account | Get account details and plan info | Read |
clawlink_call_tool --tool "zyte_api_extract" \
--params '{
"url": "https://example.com/products",
"follow_redirects": true,
"browser_html": true
}'
clawlink_call_tool --tool "zyte_api_get_status" \
--params '{}'
clawlink_call_tool --tool "zyte_api_list_incidents" \
--params '{
"status": "open"
}'
clawlink_call_tool --tool "zyte_api_extract_batch" \
--params '{
"urls": [
"https://example.com/page1",
"https://example.com/page2",
"https://example.com/page3"
]
}'
| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration zyte-api. |
| Missing connection | Zyte API is not connected. Direct the user to https://claw-link.dev/dashboard?add=zyte-api. |
extraction_failed | The URL could not be extracted. Check the URL or try with browser_html enabled. |
quota_exceeded | API quota limit reached. Wait or upgrade the plan. |
website_blocked | The website blocked the request. Try a different approach. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.browser_html for JavaScript-rendered pages.Powered by ClawLink — an integration hub for OpenClaw
