YouTube Subtitle Search Crawler π
2 hours trial then $29.99/month - No credit card required now
YouTube Subtitle Search Crawler π
2 hours trial then $29.99/month - No credit card required now
A powerful YouTube subtitle search crawler that helps you discover videos by searching through their subtitles. Filter results by views, likes, duration, and more to find exactly what you're looking for.
You can access the YouTube Subtitle Search Crawler π 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": "0.0",
5 "x-build-id": "aKwSH8EMoNKHO9XPt"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/easyapi~youtube-subtitle-search-crawler/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-easyapi-youtube-subtitle-search-crawler",
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/easyapi~youtube-subtitle-search-crawler/runs": {
50 "post": {
51 "operationId": "runs-sync-easyapi-youtube-subtitle-search-crawler",
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/easyapi~youtube-subtitle-search-crawler/run-sync": {
93 "post": {
94 "operationId": "run-sync-easyapi-youtube-subtitle-search-crawler",
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 "queryTerm"
135 ],
136 "properties": {
137 "queryTerm": {
138 "title": "Search Term",
139 "type": "string",
140 "description": "Text to search in video subtitles",
141 "default": "openai chatgpt"
142 },
143 "maxItems": {
144 "title": "Maximum Results",
145 "minimum": 1,
146 "maximum": 1000,
147 "type": "integer",
148 "description": "Maximum number of results to collect",
149 "default": 100
150 },
151 "videoTitle": {
152 "title": "Video Title Filter",
153 "type": "string",
154 "description": "Filter by video title"
155 },
156 "subtitleType": {
157 "title": "Subtitle Type",
158 "enum": [
159 "manual",
160 "auto"
161 ],
162 "type": "string",
163 "description": "Type of subtitles to search",
164 "default": "manual"
165 },
166 "language": {
167 "title": "Subtitle Language",
168 "enum": [
169 "en",
170 "fr",
171 "it",
172 "id",
173 "pt",
174 "ko",
175 "ru",
176 "es",
177 "vi",
178 "fil",
179 "nl",
180 "de",
181 "th",
182 "ro"
183 ],
184 "type": "string",
185 "description": "Filter by subtitle language",
186 "default": "en"
187 },
188 "country": {
189 "title": "Video Country",
190 "enum": [
191 "217",
192 "1",
193 "153",
194 "22",
195 "148",
196 "19",
197 "218",
198 "95",
199 "201",
200 "227",
201 "14",
202 "84",
203 "247"
204 ],
205 "type": "string",
206 "description": "Filter by video country",
207 "default": "217"
208 },
209 "category": {
210 "title": "Video Category",
211 "enum": [
212 "3",
213 "33",
214 "8",
215 "35",
216 "46",
217 "18",
218 "9",
219 "6",
220 "2",
221 "19",
222 "30",
223 "14",
224 "12",
225 "7",
226 "0",
227 "39",
228 "32"
229 ],
230 "type": "string",
231 "description": "Filter by video category",
232 "default": "3"
233 },
234 "viewsRange": {
235 "title": "Views Range",
236 "type": "array",
237 "description": "Min and max view count",
238 "default": [
239 0,
240 100000000
241 ]
242 },
243 "likesRange": {
244 "title": "Likes Range",
245 "type": "array",
246 "description": "Min and max like count",
247 "default": [
248 0,
249 1000000
250 ]
251 },
252 "durationRange": {
253 "title": "Duration Range",
254 "type": "array",
255 "description": "Min and max duration in seconds",
256 "default": [
257 0,
258 36000
259 ]
260 },
261 "dateRange": {
262 "title": "Date Range",
263 "type": "array",
264 "description": "Upload date range [start_date, end_date]",
265 "default": [
266 "2020-01-01",
267 "2024-12-31"
268 ]
269 }
270 }
271 },
272 "runsResponseSchema": {
273 "type": "object",
274 "properties": {
275 "data": {
276 "type": "object",
277 "properties": {
278 "id": {
279 "type": "string"
280 },
281 "actId": {
282 "type": "string"
283 },
284 "userId": {
285 "type": "string"
286 },
287 "startedAt": {
288 "type": "string",
289 "format": "date-time",
290 "example": "2025-01-08T00:00:00.000Z"
291 },
292 "finishedAt": {
293 "type": "string",
294 "format": "date-time",
295 "example": "2025-01-08T00:00:00.000Z"
296 },
297 "status": {
298 "type": "string",
299 "example": "READY"
300 },
301 "meta": {
302 "type": "object",
303 "properties": {
304 "origin": {
305 "type": "string",
306 "example": "API"
307 },
308 "userAgent": {
309 "type": "string"
310 }
311 }
312 },
313 "stats": {
314 "type": "object",
315 "properties": {
316 "inputBodyLen": {
317 "type": "integer",
318 "example": 2000
319 },
320 "rebootCount": {
321 "type": "integer",
322 "example": 0
323 },
324 "restartCount": {
325 "type": "integer",
326 "example": 0
327 },
328 "resurrectCount": {
329 "type": "integer",
330 "example": 0
331 },
332 "computeUnits": {
333 "type": "integer",
334 "example": 0
335 }
336 }
337 },
338 "options": {
339 "type": "object",
340 "properties": {
341 "build": {
342 "type": "string",
343 "example": "latest"
344 },
345 "timeoutSecs": {
346 "type": "integer",
347 "example": 300
348 },
349 "memoryMbytes": {
350 "type": "integer",
351 "example": 1024
352 },
353 "diskMbytes": {
354 "type": "integer",
355 "example": 2048
356 }
357 }
358 },
359 "buildId": {
360 "type": "string"
361 },
362 "defaultKeyValueStoreId": {
363 "type": "string"
364 },
365 "defaultDatasetId": {
366 "type": "string"
367 },
368 "defaultRequestQueueId": {
369 "type": "string"
370 },
371 "buildNumber": {
372 "type": "string",
373 "example": "1.0.0"
374 },
375 "containerUrl": {
376 "type": "string"
377 },
378 "usage": {
379 "type": "object",
380 "properties": {
381 "ACTOR_COMPUTE_UNITS": {
382 "type": "integer",
383 "example": 0
384 },
385 "DATASET_READS": {
386 "type": "integer",
387 "example": 0
388 },
389 "DATASET_WRITES": {
390 "type": "integer",
391 "example": 0
392 },
393 "KEY_VALUE_STORE_READS": {
394 "type": "integer",
395 "example": 0
396 },
397 "KEY_VALUE_STORE_WRITES": {
398 "type": "integer",
399 "example": 1
400 },
401 "KEY_VALUE_STORE_LISTS": {
402 "type": "integer",
403 "example": 0
404 },
405 "REQUEST_QUEUE_READS": {
406 "type": "integer",
407 "example": 0
408 },
409 "REQUEST_QUEUE_WRITES": {
410 "type": "integer",
411 "example": 0
412 },
413 "DATA_TRANSFER_INTERNAL_GBYTES": {
414 "type": "integer",
415 "example": 0
416 },
417 "DATA_TRANSFER_EXTERNAL_GBYTES": {
418 "type": "integer",
419 "example": 0
420 },
421 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
422 "type": "integer",
423 "example": 0
424 },
425 "PROXY_SERPS": {
426 "type": "integer",
427 "example": 0
428 }
429 }
430 },
431 "usageTotalUsd": {
432 "type": "number",
433 "example": 0.00005
434 },
435 "usageUsd": {
436 "type": "object",
437 "properties": {
438 "ACTOR_COMPUTE_UNITS": {
439 "type": "integer",
440 "example": 0
441 },
442 "DATASET_READS": {
443 "type": "integer",
444 "example": 0
445 },
446 "DATASET_WRITES": {
447 "type": "integer",
448 "example": 0
449 },
450 "KEY_VALUE_STORE_READS": {
451 "type": "integer",
452 "example": 0
453 },
454 "KEY_VALUE_STORE_WRITES": {
455 "type": "number",
456 "example": 0.00005
457 },
458 "KEY_VALUE_STORE_LISTS": {
459 "type": "integer",
460 "example": 0
461 },
462 "REQUEST_QUEUE_READS": {
463 "type": "integer",
464 "example": 0
465 },
466 "REQUEST_QUEUE_WRITES": {
467 "type": "integer",
468 "example": 0
469 },
470 "DATA_TRANSFER_INTERNAL_GBYTES": {
471 "type": "integer",
472 "example": 0
473 },
474 "DATA_TRANSFER_EXTERNAL_GBYTES": {
475 "type": "integer",
476 "example": 0
477 },
478 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
479 "type": "integer",
480 "example": 0
481 },
482 "PROXY_SERPS": {
483 "type": "integer",
484 "example": 0
485 }
486 }
487 }
488 }
489 }
490 }
491 }
492 }
493 }
494}
YouTube Subtitle Search Crawler π 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 Subtitle Search Crawler π 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:
Actor Metrics
3 monthly users
-
0 No stars yet
>99% runs succeeded
Created in Dec 2024
Modified 4 hours ago