@apteva/integrations 0.15.8 → 0.15.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apps/apify.json +538 -71
- package/src/apps/dataforseo.json +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.9",
|
|
4
4
|
"description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
|
|
5
5
|
"author": "Apteva <hello@apteva.com>",
|
|
6
6
|
"license": "Elastic-2.0",
|
package/src/apps/apify.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slug": "apify",
|
|
3
3
|
"name": "Apify",
|
|
4
|
-
"description": "Web scraping and automation platform.
|
|
4
|
+
"description": "Web scraping and automation platform. Search actors, run them with JSON input, monitor runs, and retrieve dataset results.",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=apify.com&sz=128",
|
|
6
6
|
"categories": [
|
|
7
7
|
"scraping",
|
|
@@ -28,28 +28,148 @@
|
|
|
28
28
|
},
|
|
29
29
|
"tools": [
|
|
30
30
|
{
|
|
31
|
-
"name": "
|
|
32
|
-
"description": "
|
|
33
|
-
"method": "
|
|
34
|
-
"path": "/
|
|
31
|
+
"name": "get_user",
|
|
32
|
+
"description": "Verify the Apify token and return the authenticated user's private account metadata.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/users/me",
|
|
35
|
+
"input_schema": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "search_store_actors",
|
|
42
|
+
"description": "Search public Apify Store actors. Use this to discover real-estate, lead, social, search, scraping, or automation actors before running one. Prefer responseFormat='agent' for compact agent-readable results.",
|
|
43
|
+
"method": "GET",
|
|
44
|
+
"path": "/store",
|
|
45
|
+
"query_params": [
|
|
46
|
+
"search",
|
|
47
|
+
"limit",
|
|
48
|
+
"offset",
|
|
49
|
+
"sortBy",
|
|
50
|
+
"category",
|
|
51
|
+
"username",
|
|
52
|
+
"pricingModel",
|
|
53
|
+
"allowsAgenticUsers",
|
|
54
|
+
"responseFormat",
|
|
55
|
+
"includeUnrunnableActors"
|
|
56
|
+
],
|
|
35
57
|
"input_schema": {
|
|
36
58
|
"type": "object",
|
|
37
59
|
"properties": {
|
|
38
|
-
"
|
|
60
|
+
"search": {
|
|
39
61
|
"type": "string",
|
|
40
|
-
"description": "
|
|
62
|
+
"description": "Search text matched against actor title, name, description, username, and README, e.g. 'real estate listings'."
|
|
41
63
|
},
|
|
42
|
-
"
|
|
64
|
+
"limit": {
|
|
43
65
|
"type": "integer",
|
|
44
|
-
"description": "
|
|
66
|
+
"description": "Maximum actors to return. Default and maximum are 1000."
|
|
45
67
|
},
|
|
46
|
-
"
|
|
68
|
+
"offset": {
|
|
47
69
|
"type": "integer",
|
|
48
|
-
"description": "
|
|
70
|
+
"description": "Number of actors to skip for pagination."
|
|
49
71
|
},
|
|
50
|
-
"
|
|
72
|
+
"sortBy": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"description": "Sort field.",
|
|
75
|
+
"enum": [
|
|
76
|
+
"relevance",
|
|
77
|
+
"popularity",
|
|
78
|
+
"newest",
|
|
79
|
+
"lastUpdate"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"category": {
|
|
51
83
|
"type": "string",
|
|
52
|
-
"description": "
|
|
84
|
+
"description": "Optional Apify Store category filter."
|
|
85
|
+
},
|
|
86
|
+
"username": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"description": "Only return actors from this Apify username."
|
|
89
|
+
},
|
|
90
|
+
"pricingModel": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"description": "Only return actors with this pricing model.",
|
|
93
|
+
"enum": [
|
|
94
|
+
"FREE",
|
|
95
|
+
"FLAT_PRICE_PER_MONTH",
|
|
96
|
+
"PRICE_PER_DATASET_ITEM",
|
|
97
|
+
"PAY_PER_EVENT"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
"allowsAgenticUsers": {
|
|
101
|
+
"type": "boolean",
|
|
102
|
+
"description": "When true, only return actors marked as allowing agentic users."
|
|
103
|
+
},
|
|
104
|
+
"responseFormat": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"description": "Use 'agent' for a reduced field set optimized for LLM consumers; default is 'full'.",
|
|
107
|
+
"enum": [
|
|
108
|
+
"full",
|
|
109
|
+
"agent"
|
|
110
|
+
],
|
|
111
|
+
"default": "agent"
|
|
112
|
+
},
|
|
113
|
+
"includeUnrunnableActors": {
|
|
114
|
+
"type": "boolean",
|
|
115
|
+
"description": "By default unrunnable actors are excluded. Set true only when you intentionally need the full store search."
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "list_actors",
|
|
122
|
+
"description": "List actors the authenticated user created or used. Use my=true to list only actors owned by the user.",
|
|
123
|
+
"method": "GET",
|
|
124
|
+
"path": "/actors",
|
|
125
|
+
"query_params": [
|
|
126
|
+
"my",
|
|
127
|
+
"offset",
|
|
128
|
+
"limit",
|
|
129
|
+
"desc",
|
|
130
|
+
"sortBy"
|
|
131
|
+
],
|
|
132
|
+
"input_schema": {
|
|
133
|
+
"type": "object",
|
|
134
|
+
"properties": {
|
|
135
|
+
"my": {
|
|
136
|
+
"type": "boolean",
|
|
137
|
+
"description": "If true, only return actors owned by the authenticated user."
|
|
138
|
+
},
|
|
139
|
+
"offset": {
|
|
140
|
+
"type": "integer",
|
|
141
|
+
"description": "Number of actors to skip."
|
|
142
|
+
},
|
|
143
|
+
"limit": {
|
|
144
|
+
"type": "integer",
|
|
145
|
+
"description": "Maximum actors to return. Default and maximum are 1000."
|
|
146
|
+
},
|
|
147
|
+
"desc": {
|
|
148
|
+
"type": "boolean",
|
|
149
|
+
"description": "Sort descending when true."
|
|
150
|
+
},
|
|
151
|
+
"sortBy": {
|
|
152
|
+
"type": "string",
|
|
153
|
+
"description": "Sort field.",
|
|
154
|
+
"enum": [
|
|
155
|
+
"createdAt",
|
|
156
|
+
"stats.lastRunStartedAt"
|
|
157
|
+
]
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "get_actor",
|
|
164
|
+
"description": "Get details for a specific actor. actorId must be an Apify actor ID or a tilde-separated name like 'apify~web-scraper' or 'compass~crawler-google-places'. Do not use slash form in this API path.",
|
|
165
|
+
"method": "GET",
|
|
166
|
+
"path": "/actors/{actorId}",
|
|
167
|
+
"input_schema": {
|
|
168
|
+
"type": "object",
|
|
169
|
+
"properties": {
|
|
170
|
+
"actorId": {
|
|
171
|
+
"type": "string",
|
|
172
|
+
"description": "Actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'."
|
|
53
173
|
}
|
|
54
174
|
},
|
|
55
175
|
"required": [
|
|
@@ -58,113 +178,389 @@
|
|
|
58
178
|
}
|
|
59
179
|
},
|
|
60
180
|
{
|
|
61
|
-
"name": "
|
|
62
|
-
"description": "Get
|
|
181
|
+
"name": "get_actor_openapi",
|
|
182
|
+
"description": "Get an actor build's OpenAPI definition, including the actor input schema when the actor exposes one. Use buildId='default' for the actor's default build. actorId must be an Apify actor ID or tilde-separated owner/name.",
|
|
63
183
|
"method": "GET",
|
|
64
|
-
"path": "/
|
|
184
|
+
"path": "/actors/{actorId}/builds/{buildId}/openapi.json",
|
|
65
185
|
"input_schema": {
|
|
66
186
|
"type": "object",
|
|
67
187
|
"properties": {
|
|
68
188
|
"actorId": {
|
|
69
189
|
"type": "string",
|
|
70
|
-
"description": "Actor ID or name
|
|
190
|
+
"description": "Actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'."
|
|
71
191
|
},
|
|
72
|
-
"
|
|
192
|
+
"buildId": {
|
|
73
193
|
"type": "string",
|
|
74
|
-
"description": "
|
|
75
|
-
|
|
76
|
-
"waitForFinish": {
|
|
77
|
-
"type": "integer",
|
|
78
|
-
"description": "Maximum time in seconds to wait for the run to finish. If provided, the endpoint will wait synchronously."
|
|
194
|
+
"description": "Actor build ID, or 'default' to fetch the default build OpenAPI schema.",
|
|
195
|
+
"default": "default"
|
|
79
196
|
}
|
|
80
197
|
},
|
|
81
198
|
"required": [
|
|
82
199
|
"actorId",
|
|
83
|
-
"
|
|
200
|
+
"buildId"
|
|
84
201
|
]
|
|
85
202
|
}
|
|
86
203
|
},
|
|
87
204
|
{
|
|
88
|
-
"name": "
|
|
89
|
-
"description": "
|
|
90
|
-
"method": "
|
|
91
|
-
"path": "/
|
|
205
|
+
"name": "run_actor",
|
|
206
|
+
"description": "Run an Apify actor asynchronously with a JSON input object. The response contains the run ID, status, defaultDatasetId, and defaultKeyValueStoreId. Poll get_run or fetch results from get_dataset_items after the run succeeds. actorId must be an Apify actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'.",
|
|
207
|
+
"method": "POST",
|
|
208
|
+
"path": "/actors/{actorId}/runs",
|
|
209
|
+
"query_params": [
|
|
210
|
+
"timeout",
|
|
211
|
+
"memory",
|
|
212
|
+
"maxItems",
|
|
213
|
+
"maxTotalChargeUsd",
|
|
214
|
+
"restartOnError",
|
|
215
|
+
"build",
|
|
216
|
+
"waitForFinish",
|
|
217
|
+
"webhooks",
|
|
218
|
+
"forcePermissionLevel"
|
|
219
|
+
],
|
|
220
|
+
"body_root_param": "input",
|
|
221
|
+
"timeout_ms": 65000,
|
|
92
222
|
"input_schema": {
|
|
93
223
|
"type": "object",
|
|
94
224
|
"properties": {
|
|
95
225
|
"actorId": {
|
|
96
226
|
"type": "string",
|
|
97
|
-
"description": "Actor ID or name
|
|
227
|
+
"description": "Actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'."
|
|
98
228
|
},
|
|
99
|
-
"
|
|
100
|
-
"type": "
|
|
101
|
-
"description": "
|
|
229
|
+
"input": {
|
|
230
|
+
"type": "object",
|
|
231
|
+
"description": "JSON input passed directly to the actor. Use get_actor_openapi or the actor's Apify Input tab to discover expected fields. Pass {} for actors with no input."
|
|
102
232
|
},
|
|
103
|
-
"
|
|
104
|
-
"type": "
|
|
105
|
-
"description": "
|
|
233
|
+
"timeout": {
|
|
234
|
+
"type": "number",
|
|
235
|
+
"description": "Optional actor run timeout in seconds."
|
|
106
236
|
},
|
|
107
|
-
"
|
|
108
|
-
"type": "
|
|
109
|
-
"description": "
|
|
237
|
+
"memory": {
|
|
238
|
+
"type": "number",
|
|
239
|
+
"description": "Optional memory limit in MB, usually a power of 2 such as 256, 512, 1024, 2048, or 4096."
|
|
240
|
+
},
|
|
241
|
+
"maxItems": {
|
|
242
|
+
"type": "number",
|
|
243
|
+
"description": "Maximum charged dataset items for pay-per-result actors. This is a billing cap, not a guaranteed result limit."
|
|
244
|
+
},
|
|
245
|
+
"maxTotalChargeUsd": {
|
|
246
|
+
"type": "number",
|
|
247
|
+
"description": "Maximum total charge in USD for pay-per-event actors."
|
|
248
|
+
},
|
|
249
|
+
"restartOnError": {
|
|
250
|
+
"type": "boolean",
|
|
251
|
+
"description": "Restart the actor run automatically if it fails."
|
|
252
|
+
},
|
|
253
|
+
"build": {
|
|
254
|
+
"type": "string",
|
|
255
|
+
"description": "Actor build tag or build number, e.g. 'latest' or '0.1.234'."
|
|
256
|
+
},
|
|
257
|
+
"waitForFinish": {
|
|
258
|
+
"type": "number",
|
|
259
|
+
"description": "Wait up to this many seconds for the async run to finish before returning. Maximum is 60."
|
|
260
|
+
},
|
|
261
|
+
"webhooks": {
|
|
262
|
+
"type": "string",
|
|
263
|
+
"description": "Base64-encoded JSON array of Apify webhook definitions for this run."
|
|
264
|
+
},
|
|
265
|
+
"forcePermissionLevel": {
|
|
266
|
+
"type": "string",
|
|
267
|
+
"description": "Optional per-run permission override.",
|
|
110
268
|
"enum": [
|
|
111
|
-
|
|
112
|
-
|
|
269
|
+
"LIMITED_PERMISSIONS",
|
|
270
|
+
"FULL_PERMISSIONS"
|
|
113
271
|
]
|
|
114
272
|
}
|
|
115
273
|
},
|
|
116
274
|
"required": [
|
|
117
|
-
"actorId"
|
|
275
|
+
"actorId",
|
|
276
|
+
"input"
|
|
118
277
|
]
|
|
119
278
|
}
|
|
120
279
|
},
|
|
121
280
|
{
|
|
122
|
-
"name": "
|
|
123
|
-
"description": "
|
|
124
|
-
"method": "
|
|
125
|
-
"path": "/get-dataset-items",
|
|
281
|
+
"name": "run_actor_sync_get_dataset_items",
|
|
282
|
+
"description": "Run an Apify actor and wait for dataset items in the response. This is the most convenient one-call path for agents when the actor finishes within roughly 5 minutes. For longer jobs, use run_actor then get_run and get_dataset_items.",
|
|
283
|
+
"method": "POST",
|
|
284
|
+
"path": "/actors/{actorId}/run-sync-get-dataset-items",
|
|
285
|
+
"query_params": [
|
|
286
|
+
"timeout",
|
|
287
|
+
"memory",
|
|
288
|
+
"maxItems",
|
|
289
|
+
"maxTotalChargeUsd",
|
|
290
|
+
"restartOnError",
|
|
291
|
+
"build",
|
|
292
|
+
"webhooks",
|
|
293
|
+
"format",
|
|
294
|
+
"clean",
|
|
295
|
+
"offset",
|
|
296
|
+
"limit",
|
|
297
|
+
"fields",
|
|
298
|
+
"outputFields",
|
|
299
|
+
"omit",
|
|
300
|
+
"unwind",
|
|
301
|
+
"flatten",
|
|
302
|
+
"desc"
|
|
303
|
+
],
|
|
304
|
+
"body_root_param": "input",
|
|
305
|
+
"timeout_ms": 305000,
|
|
126
306
|
"input_schema": {
|
|
127
307
|
"type": "object",
|
|
128
308
|
"properties": {
|
|
129
|
-
"
|
|
309
|
+
"actorId": {
|
|
130
310
|
"type": "string",
|
|
131
|
-
"description": "
|
|
311
|
+
"description": "Actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'."
|
|
312
|
+
},
|
|
313
|
+
"input": {
|
|
314
|
+
"type": "object",
|
|
315
|
+
"description": "JSON input passed directly to the actor. Use get_actor_openapi or the actor's Apify Input tab to discover expected fields. Pass {} for actors with no input."
|
|
316
|
+
},
|
|
317
|
+
"timeout": {
|
|
318
|
+
"type": "number",
|
|
319
|
+
"description": "Optional actor run timeout in seconds."
|
|
320
|
+
},
|
|
321
|
+
"memory": {
|
|
322
|
+
"type": "number",
|
|
323
|
+
"description": "Optional memory limit in MB."
|
|
324
|
+
},
|
|
325
|
+
"maxItems": {
|
|
326
|
+
"type": "number",
|
|
327
|
+
"description": "Maximum charged dataset items for pay-per-result actors."
|
|
328
|
+
},
|
|
329
|
+
"maxTotalChargeUsd": {
|
|
330
|
+
"type": "number",
|
|
331
|
+
"description": "Maximum total charge in USD for pay-per-event actors."
|
|
332
|
+
},
|
|
333
|
+
"restartOnError": {
|
|
334
|
+
"type": "boolean",
|
|
335
|
+
"description": "Restart the actor run automatically if it fails."
|
|
336
|
+
},
|
|
337
|
+
"build": {
|
|
338
|
+
"type": "string",
|
|
339
|
+
"description": "Actor build tag or build number."
|
|
340
|
+
},
|
|
341
|
+
"webhooks": {
|
|
342
|
+
"type": "string",
|
|
343
|
+
"description": "Base64-encoded JSON array of Apify webhook definitions for this run."
|
|
132
344
|
},
|
|
133
345
|
"format": {
|
|
134
346
|
"type": "string",
|
|
135
|
-
"description": "
|
|
347
|
+
"description": "Dataset result format.",
|
|
136
348
|
"enum": [
|
|
137
349
|
"json",
|
|
350
|
+
"jsonl",
|
|
138
351
|
"csv",
|
|
352
|
+
"html",
|
|
139
353
|
"xlsx",
|
|
140
354
|
"xml",
|
|
141
355
|
"rss"
|
|
142
356
|
],
|
|
143
357
|
"default": "json"
|
|
144
358
|
},
|
|
359
|
+
"clean": {
|
|
360
|
+
"type": "boolean",
|
|
361
|
+
"description": "Return only non-empty items and omit hidden fields."
|
|
362
|
+
},
|
|
145
363
|
"offset": {
|
|
146
364
|
"type": "integer",
|
|
147
|
-
"description": "Number of items to skip
|
|
365
|
+
"description": "Number of result items to skip."
|
|
148
366
|
},
|
|
149
367
|
"limit": {
|
|
150
368
|
"type": "integer",
|
|
151
|
-
"description": "Maximum
|
|
369
|
+
"description": "Maximum result items to return."
|
|
152
370
|
},
|
|
153
371
|
"fields": {
|
|
154
372
|
"type": "string",
|
|
155
|
-
"description": "Comma-separated
|
|
373
|
+
"description": "Comma-separated fields to include."
|
|
374
|
+
},
|
|
375
|
+
"outputFields": {
|
|
376
|
+
"type": "string",
|
|
377
|
+
"description": "Comma-separated output names that rename fields positionally."
|
|
156
378
|
},
|
|
157
379
|
"omit": {
|
|
158
380
|
"type": "string",
|
|
159
|
-
"description": "Comma-separated
|
|
381
|
+
"description": "Comma-separated fields to omit."
|
|
382
|
+
},
|
|
383
|
+
"unwind": {
|
|
384
|
+
"type": "string",
|
|
385
|
+
"description": "Comma-separated fields to unwind."
|
|
386
|
+
},
|
|
387
|
+
"flatten": {
|
|
388
|
+
"type": "string",
|
|
389
|
+
"description": "Comma-separated fields to flatten."
|
|
390
|
+
},
|
|
391
|
+
"desc": {
|
|
392
|
+
"type": "boolean",
|
|
393
|
+
"description": "Return dataset items newest first."
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"required": [
|
|
397
|
+
"actorId",
|
|
398
|
+
"input"
|
|
399
|
+
]
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"name": "get_run",
|
|
404
|
+
"description": "Get one actor run by runId. Use waitForFinish up to 60 seconds to poll until a terminal status is reached. The response includes defaultDatasetId for get_dataset_items.",
|
|
405
|
+
"method": "GET",
|
|
406
|
+
"path": "/actor-runs/{runId}",
|
|
407
|
+
"query_params": [
|
|
408
|
+
"waitForFinish"
|
|
409
|
+
],
|
|
410
|
+
"input_schema": {
|
|
411
|
+
"type": "object",
|
|
412
|
+
"properties": {
|
|
413
|
+
"runId": {
|
|
414
|
+
"type": "string",
|
|
415
|
+
"description": "Actor run ID returned by run_actor."
|
|
416
|
+
},
|
|
417
|
+
"waitForFinish": {
|
|
418
|
+
"type": "number",
|
|
419
|
+
"description": "Maximum seconds to wait for completion. Maximum is 60."
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"required": [
|
|
423
|
+
"runId"
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "list_runs",
|
|
429
|
+
"description": "List runs for a specific actor. actorId must be an Apify actor ID or tilde-separated owner/name.",
|
|
430
|
+
"method": "GET",
|
|
431
|
+
"path": "/actors/{actorId}/runs",
|
|
432
|
+
"query_params": [
|
|
433
|
+
"offset",
|
|
434
|
+
"limit",
|
|
435
|
+
"desc",
|
|
436
|
+
"status",
|
|
437
|
+
"startedAfter",
|
|
438
|
+
"startedBefore"
|
|
439
|
+
],
|
|
440
|
+
"input_schema": {
|
|
441
|
+
"type": "object",
|
|
442
|
+
"properties": {
|
|
443
|
+
"actorId": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"description": "Actor ID or tilde-separated owner/name, e.g. 'apify~web-scraper'."
|
|
446
|
+
},
|
|
447
|
+
"offset": {
|
|
448
|
+
"type": "integer",
|
|
449
|
+
"description": "Number of runs to skip."
|
|
450
|
+
},
|
|
451
|
+
"limit": {
|
|
452
|
+
"type": "integer",
|
|
453
|
+
"description": "Maximum runs to return. Default and maximum are 1000."
|
|
160
454
|
},
|
|
161
455
|
"desc": {
|
|
456
|
+
"type": "boolean",
|
|
457
|
+
"description": "Sort newest first when true."
|
|
458
|
+
},
|
|
459
|
+
"status": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"description": "Single status or comma-separated statuses, e.g. 'SUCCEEDED' or 'RUNNING,READY'."
|
|
462
|
+
},
|
|
463
|
+
"startedAfter": {
|
|
464
|
+
"type": "string",
|
|
465
|
+
"description": "Only runs started after this ISO 8601 timestamp."
|
|
466
|
+
},
|
|
467
|
+
"startedBefore": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"description": "Only runs started before this ISO 8601 timestamp."
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"required": [
|
|
473
|
+
"actorId"
|
|
474
|
+
]
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"name": "list_user_runs",
|
|
479
|
+
"description": "List all actor runs for the authenticated user, optionally filtered by status or start time.",
|
|
480
|
+
"method": "GET",
|
|
481
|
+
"path": "/actor-runs",
|
|
482
|
+
"query_params": [
|
|
483
|
+
"offset",
|
|
484
|
+
"limit",
|
|
485
|
+
"desc",
|
|
486
|
+
"status",
|
|
487
|
+
"startedAfter",
|
|
488
|
+
"startedBefore"
|
|
489
|
+
],
|
|
490
|
+
"input_schema": {
|
|
491
|
+
"type": "object",
|
|
492
|
+
"properties": {
|
|
493
|
+
"offset": {
|
|
162
494
|
"type": "integer",
|
|
163
|
-
"description": "
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
495
|
+
"description": "Number of runs to skip."
|
|
496
|
+
},
|
|
497
|
+
"limit": {
|
|
498
|
+
"type": "integer",
|
|
499
|
+
"description": "Maximum runs to return. Default and maximum are 1000."
|
|
500
|
+
},
|
|
501
|
+
"desc": {
|
|
502
|
+
"type": "boolean",
|
|
503
|
+
"description": "Sort newest first when true."
|
|
504
|
+
},
|
|
505
|
+
"status": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "Single status or comma-separated statuses, e.g. 'SUCCEEDED' or 'RUNNING,READY'."
|
|
508
|
+
},
|
|
509
|
+
"startedAfter": {
|
|
510
|
+
"type": "string",
|
|
511
|
+
"description": "Only runs started after this ISO 8601 timestamp."
|
|
512
|
+
},
|
|
513
|
+
"startedBefore": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"description": "Only runs started before this ISO 8601 timestamp."
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "list_datasets",
|
|
522
|
+
"description": "List datasets owned by the authenticated user.",
|
|
523
|
+
"method": "GET",
|
|
524
|
+
"path": "/datasets",
|
|
525
|
+
"query_params": [
|
|
526
|
+
"unnamed",
|
|
527
|
+
"offset",
|
|
528
|
+
"limit",
|
|
529
|
+
"desc"
|
|
530
|
+
],
|
|
531
|
+
"input_schema": {
|
|
532
|
+
"type": "object",
|
|
533
|
+
"properties": {
|
|
534
|
+
"unnamed": {
|
|
535
|
+
"type": "boolean",
|
|
536
|
+
"description": "When true, include unnamed datasets."
|
|
537
|
+
},
|
|
538
|
+
"offset": {
|
|
539
|
+
"type": "integer",
|
|
540
|
+
"description": "Number of datasets to skip."
|
|
541
|
+
},
|
|
542
|
+
"limit": {
|
|
543
|
+
"type": "integer",
|
|
544
|
+
"description": "Maximum datasets to return."
|
|
545
|
+
},
|
|
546
|
+
"desc": {
|
|
547
|
+
"type": "boolean",
|
|
548
|
+
"description": "Sort newest first when true."
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "get_dataset",
|
|
555
|
+
"description": "Get metadata for a dataset. This does not return items; use get_dataset_items for records.",
|
|
556
|
+
"method": "GET",
|
|
557
|
+
"path": "/datasets/{datasetId}",
|
|
558
|
+
"input_schema": {
|
|
559
|
+
"type": "object",
|
|
560
|
+
"properties": {
|
|
561
|
+
"datasetId": {
|
|
562
|
+
"type": "string",
|
|
563
|
+
"description": "Dataset ID or tilde-separated username/dataset name."
|
|
168
564
|
}
|
|
169
565
|
},
|
|
170
566
|
"required": [
|
|
@@ -173,31 +569,102 @@
|
|
|
173
569
|
}
|
|
174
570
|
},
|
|
175
571
|
{
|
|
176
|
-
"name": "
|
|
177
|
-
"description": "
|
|
572
|
+
"name": "get_dataset_items",
|
|
573
|
+
"description": "Retrieve items from an Apify dataset. Use defaultDatasetId from run_actor/get_run, or use run_actor_sync_get_dataset_items for one-call execution and results.",
|
|
178
574
|
"method": "GET",
|
|
179
|
-
"path": "/
|
|
575
|
+
"path": "/datasets/{datasetId}/items",
|
|
576
|
+
"query_params": [
|
|
577
|
+
"format",
|
|
578
|
+
"clean",
|
|
579
|
+
"offset",
|
|
580
|
+
"limit",
|
|
581
|
+
"fields",
|
|
582
|
+
"outputFields",
|
|
583
|
+
"omit",
|
|
584
|
+
"unwind",
|
|
585
|
+
"flatten",
|
|
586
|
+
"desc",
|
|
587
|
+
"attachment",
|
|
588
|
+
"delimiter",
|
|
589
|
+
"bom"
|
|
590
|
+
],
|
|
180
591
|
"input_schema": {
|
|
181
592
|
"type": "object",
|
|
182
593
|
"properties": {
|
|
183
|
-
"
|
|
184
|
-
"type": "
|
|
185
|
-
"description": "
|
|
594
|
+
"datasetId": {
|
|
595
|
+
"type": "string",
|
|
596
|
+
"description": "Dataset ID or tilde-separated username/dataset name."
|
|
597
|
+
},
|
|
598
|
+
"format": {
|
|
599
|
+
"type": "string",
|
|
600
|
+
"description": "Output format for the data.",
|
|
186
601
|
"enum": [
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
602
|
+
"json",
|
|
603
|
+
"jsonl",
|
|
604
|
+
"csv",
|
|
605
|
+
"html",
|
|
606
|
+
"xlsx",
|
|
607
|
+
"xml",
|
|
608
|
+
"rss"
|
|
609
|
+
],
|
|
610
|
+
"default": "json"
|
|
611
|
+
},
|
|
612
|
+
"clean": {
|
|
613
|
+
"type": "boolean",
|
|
614
|
+
"description": "Return only non-empty items and omit hidden fields."
|
|
190
615
|
},
|
|
191
616
|
"offset": {
|
|
192
617
|
"type": "integer",
|
|
193
|
-
"description": "Number of
|
|
618
|
+
"description": "Number of items to skip."
|
|
194
619
|
},
|
|
195
620
|
"limit": {
|
|
196
621
|
"type": "integer",
|
|
197
|
-
"description": "Maximum
|
|
622
|
+
"description": "Maximum items to return."
|
|
623
|
+
},
|
|
624
|
+
"fields": {
|
|
625
|
+
"type": "string",
|
|
626
|
+
"description": "Comma-separated fields to include."
|
|
627
|
+
},
|
|
628
|
+
"outputFields": {
|
|
629
|
+
"type": "string",
|
|
630
|
+
"description": "Comma-separated output names that rename fields positionally."
|
|
631
|
+
},
|
|
632
|
+
"omit": {
|
|
633
|
+
"type": "string",
|
|
634
|
+
"description": "Comma-separated fields to omit."
|
|
635
|
+
},
|
|
636
|
+
"unwind": {
|
|
637
|
+
"type": "string",
|
|
638
|
+
"description": "Comma-separated fields to unwind."
|
|
639
|
+
},
|
|
640
|
+
"flatten": {
|
|
641
|
+
"type": "string",
|
|
642
|
+
"description": "Comma-separated fields to flatten."
|
|
643
|
+
},
|
|
644
|
+
"desc": {
|
|
645
|
+
"type": "boolean",
|
|
646
|
+
"description": "Return items newest first."
|
|
647
|
+
},
|
|
648
|
+
"attachment": {
|
|
649
|
+
"type": "boolean",
|
|
650
|
+
"description": "Force file download style response for browser clients."
|
|
651
|
+
},
|
|
652
|
+
"delimiter": {
|
|
653
|
+
"type": "string",
|
|
654
|
+
"description": "Delimiter for CSV output."
|
|
655
|
+
},
|
|
656
|
+
"bom": {
|
|
657
|
+
"type": "boolean",
|
|
658
|
+
"description": "Include a byte-order mark for CSV output."
|
|
198
659
|
}
|
|
199
|
-
}
|
|
660
|
+
},
|
|
661
|
+
"required": [
|
|
662
|
+
"datasetId"
|
|
663
|
+
]
|
|
200
664
|
}
|
|
201
665
|
}
|
|
202
|
-
]
|
|
203
|
-
|
|
666
|
+
],
|
|
667
|
+
"health_check": {
|
|
668
|
+
"tool": "get_user"
|
|
669
|
+
}
|
|
670
|
+
}
|
package/src/apps/dataforseo.json
CHANGED
|
@@ -356,6 +356,7 @@
|
|
|
356
356
|
"description": "Get all keywords a domain ranks for in organic search with positions, search volume, and traffic estimates",
|
|
357
357
|
"method": "POST",
|
|
358
358
|
"path": "/dataforseo_labs/google/ranked_keywords/live",
|
|
359
|
+
"body_root_param": "tasks",
|
|
359
360
|
"input_schema": {
|
|
360
361
|
"type": "object",
|
|
361
362
|
"properties": {
|