You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most Actors accept arrays in their input (for example, `startUrls`, `queries`, `usernames`). Always batch multiple targets into a single run - one run with 5 URLs is cheaper and faster than 5 separate runs.
126
125
127
-
## Examples
126
+
## What you can do
128
127
129
-
### Search Google and collect results
128
+
Once the plugin is set up, your OpenClaw agents can:
130
129
131
-
This example walks through the full discover, start, and collect workflow to scrape Google Search results.
132
-
133
-
First, search for a suitable Actor:
134
-
135
-
```javascript
136
-
constsearch=awaitapify({
137
-
action:"discover",
138
-
query:"google search scraper",
139
-
});
140
-
```
141
-
142
-
Get the Actor's input schema to understand what parameters it accepts:
-**Search for scrapers** - Ask your agent to find an Actor for any platform (for example, "find me an Instagram scraper") and it discovers the right one from the [Apify Store](https://apify.com/store).
131
+
-**Scrape any website** - Your agent can extract data from Google Search, Instagram, TikTok, YouTube, Google Maps, e-commerce sites, and more.
132
+
-**Batch multiple targets** - Scrape several URLs, profiles, or search queries in a single Actor run. One run with 5 targets is cheaper and faster than 5 separate runs.
133
+
-**Run multiple Actors in parallel** - Start scrapers for different platforms at the same time and collect all results together.
134
+
-**Delegate to sub-agents** - For complex research tasks, your agent can delegate scraping work to a sub-agent, keeping the parent agent's context focused on higher-level reasoning.
216
135
217
136
:::note Actor runs may take some time
218
137
219
-
Actor execution time varies depending on the task complexity. The `collect` action polls for completion and returns results when the runs finish. Check Actor run status in [Apify Console](https://console.apify.com/) if a run takes longer than expected.
138
+
Actor execution time varies depending on the task complexity. Check Actor run status in [Apify Console](https://console.apify.com/) if a run takes longer than expected.
220
139
221
140
:::
222
141
@@ -233,7 +152,7 @@ Actor execution time varies depending on the task complexity. The `collect` acti
233
152
234
153
### Authentication errors
235
154
236
-
-_Check your API token_ - Verify your Apify API token is correct by running `openclaw apify test`. You can find your token in the **API & Integrations** section of [Apify Console](https://console.apify.com/settings/integrations).
155
+
-_Check your API token_ - Verify your Apify API token is correct by running `openclaw apify status`. You can find your token in the **API & Integrations** section of [Apify Console](https://console.apify.com/settings/integrations).
237
156
-_Environment variable_ - If you prefer not to store the key in config, set the `APIFY_API_KEY` environment variable instead.
0 commit comments