Youtube Bulk avatar

Youtube Bulk

Try Actor

$12.00/month

Go to Store
Youtube Bulk

Youtube Bulk

canadesk/youtube-bulk
Try Actor

$12.00/month

No limits and Bulk mode! Collect channels, videos (with comments), shorts, streams, playlists, podcasts and posts from Youtube! Supports a lot of filters. It's fast and costs little!

You can access the Youtube Bulk programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "1.4",
5    "x-build-id": "bLyrckUHauJcekvts"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/canadesk~youtube-bulk/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-canadesk-youtube-bulk",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/canadesk~youtube-bulk/runs": {
50      "post": {
51        "operationId": "runs-sync-canadesk-youtube-bulk",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/canadesk~youtube-bulk/run-sync": {
93      "post": {
94        "operationId": "run-sync-canadesk-youtube-bulk",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "process",
135          "query"
136        ],
137        "properties": {
138          "process": {
139            "title": "Process",
140            "enum": [
141              "gct",
142              "gcm",
143              "gcc",
144              "giv",
145              "gip",
146              "gss"
147            ],
148            "type": "string",
149            "description": "",
150            "default": "gct"
151          },
152          "mode": {
153            "title": "Mode",
154            "enum": [
155              "full",
156              "light"
157            ],
158            "type": "string",
159            "description": "Significant impact on performance! See Information tab.",
160            "default": "light"
161          },
162          "batch": {
163            "title": "Mode Parallelism",
164            "minimum": 1,
165            "maximum": 30,
166            "type": "integer",
167            "description": "Only applies when Mode is set to Include all details. See Information tab.",
168            "default": 3
169          },
170          "query": {
171            "title": "URLs",
172            "type": "array",
173            "description": "See Information tab to learn more about the different types."
174          },
175          "sorting": {
176            "title": "Sorting",
177            "enum": [
178              "latest",
179              "oldest",
180              "popular"
181            ],
182            "type": "string",
183            "description": "Does not apply to Search. See Information tab.",
184            "default": "latest"
185          },
186          "follow": {
187            "title": "Search Filters",
188            "enum": [
189              "all",
190              "Last hour",
191              "Today",
192              "This week",
193              "This month",
194              "This year",
195              "Video",
196              "Channel",
197              "Playlist",
198              "Film",
199              "Under 4 minutes",
200              "4 - 20 minutes",
201              "Over 20 minutes",
202              "Live",
203              "4K",
204              "HD",
205              "Subtitles/CC",
206              "Creative Commons",
207              "360°",
208              "VR180",
209              "3D",
210              "HDR",
211              "Location"
212            ],
213            "type": "string",
214            "description": "Only for Search process. See Information tab.",
215            "default": "all"
216          },
217          "daterange": {
218            "title": "Date filter",
219            "type": "array",
220            "description": "See Information tab."
221          },
222          "maximum": {
223            "title": "Maximum results",
224            "minimum": 20,
225            "maximum": 9999,
226            "type": "integer",
227            "description": "See Information tab.",
228            "default": 40
229          },
230          "delay": {
231            "title": "Delay",
232            "minimum": 1,
233            "maximum": 30,
234            "type": "integer",
235            "description": "Waiting time between requests.",
236            "default": 2
237          },
238          "retries": {
239            "title": "Retries",
240            "minimum": 1,
241            "maximum": 5,
242            "type": "integer",
243            "description": "Number of retries after failure.",
244            "default": 2
245          },
246          "proxy": {
247            "title": "Proxy configuration",
248            "type": "object",
249            "description": "Select proxies to be used by your crawler."
250          }
251        }
252      },
253      "runsResponseSchema": {
254        "type": "object",
255        "properties": {
256          "data": {
257            "type": "object",
258            "properties": {
259              "id": {
260                "type": "string"
261              },
262              "actId": {
263                "type": "string"
264              },
265              "userId": {
266                "type": "string"
267              },
268              "startedAt": {
269                "type": "string",
270                "format": "date-time",
271                "example": "2025-01-08T00:00:00.000Z"
272              },
273              "finishedAt": {
274                "type": "string",
275                "format": "date-time",
276                "example": "2025-01-08T00:00:00.000Z"
277              },
278              "status": {
279                "type": "string",
280                "example": "READY"
281              },
282              "meta": {
283                "type": "object",
284                "properties": {
285                  "origin": {
286                    "type": "string",
287                    "example": "API"
288                  },
289                  "userAgent": {
290                    "type": "string"
291                  }
292                }
293              },
294              "stats": {
295                "type": "object",
296                "properties": {
297                  "inputBodyLen": {
298                    "type": "integer",
299                    "example": 2000
300                  },
301                  "rebootCount": {
302                    "type": "integer",
303                    "example": 0
304                  },
305                  "restartCount": {
306                    "type": "integer",
307                    "example": 0
308                  },
309                  "resurrectCount": {
310                    "type": "integer",
311                    "example": 0
312                  },
313                  "computeUnits": {
314                    "type": "integer",
315                    "example": 0
316                  }
317                }
318              },
319              "options": {
320                "type": "object",
321                "properties": {
322                  "build": {
323                    "type": "string",
324                    "example": "latest"
325                  },
326                  "timeoutSecs": {
327                    "type": "integer",
328                    "example": 300
329                  },
330                  "memoryMbytes": {
331                    "type": "integer",
332                    "example": 1024
333                  },
334                  "diskMbytes": {
335                    "type": "integer",
336                    "example": 2048
337                  }
338                }
339              },
340              "buildId": {
341                "type": "string"
342              },
343              "defaultKeyValueStoreId": {
344                "type": "string"
345              },
346              "defaultDatasetId": {
347                "type": "string"
348              },
349              "defaultRequestQueueId": {
350                "type": "string"
351              },
352              "buildNumber": {
353                "type": "string",
354                "example": "1.0.0"
355              },
356              "containerUrl": {
357                "type": "string"
358              },
359              "usage": {
360                "type": "object",
361                "properties": {
362                  "ACTOR_COMPUTE_UNITS": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "DATASET_READS": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATASET_WRITES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "KEY_VALUE_STORE_READS": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "KEY_VALUE_STORE_WRITES": {
379                    "type": "integer",
380                    "example": 1
381                  },
382                  "KEY_VALUE_STORE_LISTS": {
383                    "type": "integer",
384                    "example": 0
385                  },
386                  "REQUEST_QUEUE_READS": {
387                    "type": "integer",
388                    "example": 0
389                  },
390                  "REQUEST_QUEUE_WRITES": {
391                    "type": "integer",
392                    "example": 0
393                  },
394                  "DATA_TRANSFER_INTERNAL_GBYTES": {
395                    "type": "integer",
396                    "example": 0
397                  },
398                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
399                    "type": "integer",
400                    "example": 0
401                  },
402                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "PROXY_SERPS": {
407                    "type": "integer",
408                    "example": 0
409                  }
410                }
411              },
412              "usageTotalUsd": {
413                "type": "number",
414                "example": 0.00005
415              },
416              "usageUsd": {
417                "type": "object",
418                "properties": {
419                  "ACTOR_COMPUTE_UNITS": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "DATASET_READS": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATASET_WRITES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "KEY_VALUE_STORE_READS": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "KEY_VALUE_STORE_WRITES": {
436                    "type": "number",
437                    "example": 0.00005
438                  },
439                  "KEY_VALUE_STORE_LISTS": {
440                    "type": "integer",
441                    "example": 0
442                  },
443                  "REQUEST_QUEUE_READS": {
444                    "type": "integer",
445                    "example": 0
446                  },
447                  "REQUEST_QUEUE_WRITES": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "DATA_TRANSFER_INTERNAL_GBYTES": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
456                    "type": "integer",
457                    "example": 0
458                  },
459                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
460                    "type": "integer",
461                    "example": 0
462                  },
463                  "PROXY_SERPS": {
464                    "type": "integer",
465                    "example": 0
466                  }
467                }
468              }
469            }
470          }
471        }
472      }
473    }
474  }
475}

Youtube Bulk OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Youtube Bulk from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • 0 No stars yet

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified a month ago