{
  "openapi": "3.0.1",
  "info": {
    "title": "YouTube Channel Scraper — Latest Videos via RSS (No API Key)",
    "description": "Latest videos of any YouTube channel or playlist without API key or quota: official RSS (15 latest, exact dates/views) or the public Videos/Shorts tab (~30/48 latest). Keyword, date and view filters, channel stats (subscribers, total views), per-video details (duration, likes, category).",
    "version": "0.1",
    "x-build-id": "Vos8QGOyWE7hQdSu1"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/yadroo~youtube-channel-feed/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-yadroo-youtube-channel-feed",
        "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/yadroo~youtube-channel-feed/runs": {
      "post": {
        "operationId": "runs-sync-yadroo-youtube-channel-feed",
        "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/yadroo~youtube-channel-feed/run-sync": {
      "post": {
        "operationId": "run-sync-yadroo-youtube-channel-feed",
        "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",
        "required": [
          "channels"
        ],
        "properties": {
          "channels": {
            "title": "Channels / playlists",
            "type": "array",
            "description": "Any of: `@handle`, channel URL (`youtube.com/@x`, `/channel/UC…`, `/c/Name`, `/user/Name`), channel id `UC…`, playlist id `PL…`/`UU…` or a playlist URL. One feed per entry.",
            "items": {
              "type": "string"
            }
          },
          "source": {
            "title": "Source",
            "enum": [
              "rss",
              "videos",
              "shorts"
            ],
            "type": "string",
            "description": "Where to read videos from. RSS is the official feed (exact timestamps, exact views, description). The Videos/Shorts tabs are parsed from the public channel page and give more items but only relative dates (\"3 days ago\") and rounded views. Playlists always use RSS.",
            "default": "rss"
          },
          "limitPerChannel": {
            "title": "Max videos per channel",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "RSS exposes at most 15 per feed; `videos` ≈30; `shorts` ≈48.",
            "default": 15
          },
          "includeKeywords": {
            "title": "Title/description must contain any of",
            "type": "array",
            "description": "Case-insensitive filter, e.g. `[\"review\", \"unboxing\"]`.",
            "items": {
              "type": "string"
            }
          },
          "excludeKeywords": {
            "title": "Drop videos containing any of",
            "type": "array",
            "description": "Case-insensitive, e.g. `[\"#shorts\", \"trailer\"]`.",
            "items": {
              "type": "string"
            }
          },
          "sinceDate": {
            "title": "Published since (date)",
            "type": "string",
            "description": "Keep videos published on/after this date (YYYY-MM-DD or ISO-8601)."
          },
          "maxAgeDays": {
            "title": "Max age (days)",
            "minimum": 1,
            "maximum": 3650,
            "type": "integer",
            "description": "Alternative to sinceDate: keep only videos newer than N days. Great for scheduled \"what's new\" runs."
          },
          "minViews": {
            "title": "Minimum views",
            "minimum": 0,
            "type": "integer",
            "description": "Drop videos below this view count."
          },
          "sort": {
            "title": "Sort within a channel",
            "enum": [
              "newest",
              "mostViewed",
              "feed"
            ],
            "type": "string",
            "description": "Order applied before the per-channel limit.",
            "default": "newest"
          },
          "includeChannelStats": {
            "title": "Include channel stats",
            "type": "boolean",
            "description": "Fetch the channel's public About page: subscribers, total videos, total views, country, joined date, description, links, avatar. Adds one `type: \"channel\"` row per channel and `channel*` columns on every video. +1 request per channel.",
            "default": false
          },
          "includeVideoDetails": {
            "title": "Include per-video details",
            "type": "boolean",
            "description": "Fetch each video's watch page for exact `durationSec`, `likeCount`, `category`, `keywords`, exact `views`, `isLive`. +1 request per video (see budget below).",
            "default": false
          },
          "maxDetailsPerChannel": {
            "title": "Video details budget per channel",
            "minimum": 0,
            "maximum": 50,
            "type": "integer",
            "description": "How many videos per channel get the detail fetch (the newest / top-sorted ones).",
            "default": 5
          },
          "descriptionLength": {
            "title": "Description length",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Truncate RSS descriptions to N characters (0 = drop).",
            "default": 1000
          },
          "maxItems": {
            "title": "Max videos per run",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard cap across all channels.",
            "default": 1000
          },
          "dedupe": {
            "title": "Deduplicate video ids across channels/playlists",
            "type": "boolean",
            "description": "Skip a video already emitted by an earlier entry (e.g. channel + its own playlist).",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}