{
  "openapi": "3.0.1",
  "info": {
    "title": "YouTube Video Subtitles Scraper With Engagement Filters",
    "description": "YouTube Video Subtitles Scraper — Scrape YouTube videos with subtitles, transcripts, titles, channels, views, likes, comments, and engagement metrics. Filter videos by engagement thresholds to discover high-performing content and analyze trends, topics, and audience interest.",
    "version": "0.1",
    "x-build-id": "yHwuL1Pnx0jaFhGPb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/simpleapi~youtube-video-subtitles-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-simpleapi-youtube-video-subtitles-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/simpleapi~youtube-video-subtitles-scraper/runs": {
      "post": {
        "operationId": "runs-sync-simpleapi-youtube-video-subtitles-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/simpleapi~youtube-video-subtitles-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-simpleapi-youtube-video-subtitles-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "youtubeUrls": {
            "title": "🎬 YouTube Video URLs",
            "type": "array",
            "description": "Add full YouTube video URLs, one per line (example: https://www.youtube.com/watch?v=VIDEO_ID or https://youtu.be/VIDEO_ID). Also accepts https://www.youtube.com/shorts/VIDEO_ID.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "🔗 Video URLs (legacy key)",
            "type": "array",
            "description": "Legacy alias of youtubeUrls, kept for input compatibility with the base actor. Use youtubeUrls above for new runs.",
            "items": {
              "type": "string"
            }
          },
          "preferredCaptionLanguage": {
            "title": "🌍 Preferred Caption Language",
            "type": "string",
            "description": "Language code to prefer for captions (examples: 'en' English, 'es' Spanish, 'fr' French). Falls back automatically to any available track when the preferred language isn't found."
          },
          "language": {
            "title": "🌍 Language code (legacy key)",
            "type": "string",
            "description": "Legacy alias of preferredCaptionLanguage, kept for input compatibility with the base actor."
          },
          "minViews": {
            "title": "👀 Minimum Views",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos with fewer than this many views. 0 = no view filter."
          },
          "minLikes": {
            "title": "👍 Minimum Likes",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos with fewer than this many likes (or with a hidden like count). 0 = no like filter."
          },
          "minComments": {
            "title": "💬 Minimum Comments",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos with fewer than this many comments (or with comments disabled/hidden). 0 = no comment filter."
          },
          "publishedAfter": {
            "title": "📅 Published After",
            "type": "string",
            "description": "Only process videos published on or after this date. Accepts an absolute date or a relative one (e.g. '30 days'). Leave empty to skip."
          },
          "publishedBefore": {
            "title": "📅 Published Before",
            "type": "string",
            "description": "Only process videos published on or before this date. Accepts an absolute date or a relative one. Leave empty to skip."
          },
          "minDurationSeconds": {
            "title": "⏱️ Minimum Duration (seconds)",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos shorter than this many seconds. 0 = no minimum-duration filter."
          },
          "maxDurationSeconds": {
            "title": "⏱️ Maximum Duration (seconds)",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos longer than this many seconds. 0 = no maximum-duration filter."
          },
          "maxConcurrentRequests": {
            "title": "⚙️ Max Concurrent Requests",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Number of videos processed in parallel (1-10). Higher values finish a batch faster."
          },
          "maxWorkers": {
            "title": "⚙️ Max Workers (legacy key)",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Legacy alias of maxConcurrentRequests, kept for input compatibility with the base actor."
          },
          "proxyConfiguration": {
            "title": "🛡️ Proxy Configuration",
            "type": "object",
            "description": "Configure proxy preferences for better reliability when needed. Leave default settings for normal use."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}