Access Apify via the Apify API with managed API key authentication. Run Actors, manage tasks, inspect datasets and stores, and review logs or usage from chat.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Apify API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Apify |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Apify |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Apify API │
│ (User Chat) │ │ (API Key) │ │ (Actors) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Apify │ │
│ │ 4. Secure Proxy │
│ │ 5. API Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Apify │
│ File │ │ Auth │ │ Console │
└──────────┘ └──────────┘ └──────────┘
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 Apify again."
# List integrations
clawlink_list_integrations
# List Apify tools
clawlink_list_tools --integration apify
# Search for a specific tool
clawlink_search_tools --query "actor" --integration apify
All Apify tool calls are authenticated automatically by ClawLink using the user's connected Apify API credentials.
No API key is required in chat. ClawLink stores the API key securely and injects it into every Apify 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 apify in the list.
clawlink_list_tools --integration apify
Response: Returns the live tool catalog for Apify.
If Apify tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration apifyclawlink_list_integrations to confirm Apify is connected.clawlink_list_tools --integration apify to see the live catalog.clawlink_search_tools with a short query and integration apify.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List actors → Get dataset items → Return data │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute actor run │
└─────────────────────────────────────────────────────────────┘
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 |
|---|---|---|
| ------ | ------------- | ------ |
apify_acts_get | List all Actors for the user | Read |
apify_get_actor | Get Actor details by ID | Read |
apify_act_versions_get | List versions of an Actor | Read |
apify_act_version_get | Get a specific Actor version | Read |
apify_create_actor | Create a new Actor | Write |
apify_delete_actor | Delete an Actor | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_run_actor | Run an Actor asynchronously | Write |
apify_run_actor_sync | Run an Actor synchronously | Write |
apify_get_actor_last_run_dataset_items | Get dataset items from last Actor run | Read |
apify_get_list_of_runs | List runs for an Actor | Read |
apify_get_log | Get log for an Actor run | Read |
apify_actor_run_abort_post | Abort a running Actor | Write |
apify_actor_run_delete | Delete a finished Actor run | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_get_list_of_tasks | List all tasks | Read |
apify_actor_task_get | Get task details | Read |
apify_actor_task_run_sync_get | Run a task synchronously | Write |
apify_create_task | Create a new task | Write |
apify_actor_task_delete | Delete a task | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_datasets_get | List all datasets | Read |
apify_dataset_get | Get dataset metadata | Read |
apify_get_dataset_items | Get items from a dataset | Read |
apify_store_data_in_dataset | Store data in a dataset | Write |
apify_dataset_delete | Delete a dataset | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_key_value_stores_get | List key-value stores | Read |
apify_key_value_store_get | Get key-value store metadata | Read |
apify_get_key_value_record | Get a record from a store | Read |
apify_store_data_in_key_value_store | Store data in a key-value store | Write |
apify_key_value_store_delete | Delete a key-value store | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_request_queues_get | List request queues | Read |
apify_request_queue_get | Get queue metadata | Read |
apify_request_queue_requests_get | List requests in a queue | Read |
apify_request_queue_requests_post | Add a request to a queue | Write |
apify_request_queue_delete | Delete a request queue | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
apify_schedules_get | List all schedules | Read |
apify_schedule_get | Get schedule details | Read |
apify_schedules_post | Create a new schedule | Write |
apify_schedule_delete | Delete a schedule | Write |
clawlink_call_tool --tool "apify_acts_get" \
--params '{
"my": 1
}'
clawlink_call_tool --tool "apify_run_actor_sync" \
--params '{
"actor_id": "apify/web-scraper",
"input": {
"startUrls": [{"url": "https://example.com"}]
}
}'
clawlink_call_tool --tool "apify_get_dataset_items" \
--params '{
"dataset_id": "YOUR_DATASET_ID",
"limit": 100
}'
clawlink_call_tool --tool "apify_create_task" \
--params '{
"actor_id": "apify/web-scraper",
"name": "My Scraper Task",
"input": {
"startUrls": [{"url": "https://example.com"}]
}
}'
username/actor-name or just actor-name for public Actors.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration apify. |
| Missing connection | Apify is not connected. Direct the user to https://claw-link.dev/dashboard?add=apify. |
Actor not found | The Actor ID does not exist or is not accessible. |
Run timeout | Synchronous run exceeded 300 seconds. Use async run instead. |
Dataset empty | The dataset has no items or the run is still in progress. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.apify.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本