Skip to main content

Loading Data from Vimeo to Redshift with dlt in Python

Need help deploying these pipelines, or figuring out how to run them in your data stack?

Join our Slack community or book a call with our support engineer Violetta.

This documentation provides a comprehensive guide on loading data from Vimeo to Redshift using the open-source Python library dlt. Vimeo is a video-sharing platform known for high-quality content and robust tools for video creators, including hosting, editing, and streaming services. It primarily serves creative professionals and businesses, offering advanced privacy options and a community-focused environment. Redshift is Amazon's fully managed, petabyte-scale data warehouse service in the cloud. It allows you to start with a few hundred gigabytes and scale up to a petabyte or more. This guide will walk you through the steps to efficiently transfer data from Vimeo to Redshift using dlt. For more information about Vimeo, visit Vimeo's official site.

dlt Key Features

  • Pipeline Metadata: Leverage metadata to provide governance capabilities, including load IDs for incremental transformations and data lineage. Read more
  • Schema Enforcement and Curation: Ensure data consistency and quality by enforcing and curating schemas. Read more
  • Schema Evolution: Get proactive alerts for schema changes, allowing for timely reviews and updates. Read more
  • Scaling and Finetuning: Various mechanisms and configuration options to scale up and finetune pipelines. Read more
  • Comprehensive Tutorial: Step-by-step guide to building a pipeline that loads data from the GitHub API into DuckDB. Read more

Getting started with your pipeline locally

OpenAPI Source Generator dlt-init-openapi

This walkthrough makes use of the dlt-init-openapi generator cli tool. You can read more about it here. The code generated by this tool uses the dlt rest_api verified source, docs for this are here.

0. Prerequisites

dlt and dlt-init-openapi requires Python 3.9 or higher. Additionally, you need to have the pip package manager installed, and we recommend using a virtual environment to manage your dependencies. You can learn more about preparing your computer for dlt in our installation reference.

1. Install dlt and dlt-init-openapi

First you need to install the dlt-init-openapi cli tool.

pip install dlt-init-openapi

The dlt-init-openapi cli is a powerful generator which you can use to turn any OpenAPI spec into a dlt source to ingest data from that api. The quality of the generator source is dependent on how well the API is designed and how accurate the OpenAPI spec you are using is. You may need to make tweaks to the generated code, you can learn more about this here.

# generate pipeline
# NOTE: add_limit adds a global limit, you can remove this later
# NOTE: you will need to select which endpoints to render, you
# can just hit Enter and all will be rendered.
dlt-init-openapi vimeo --url https://raw.githubusercontent.com/dlt-hub/openapi-specs/main/open_api_specs/Public/vimeo.yaml --global-limit 2
cd vimeo_pipeline
# install generated requirements
pip install -r requirements.txt

The last command will install the required dependencies for your pipeline. The dependencies are listed in the requirements.txt:

dlt>=0.4.12

You now have the following folder structure in your project:

vimeo_pipeline/
├── .dlt/
│ ├── config.toml # configs for your pipeline
│ └── secrets.toml # secrets for your pipeline
├── rest_api/ # The rest api verified source
│ └── ...
├── vimeo/
│ └── __init__.py # TODO: possibly tweak this file
├── vimeo_pipeline.py # your main pipeline script
├── requirements.txt # dependencies for your pipeline
└── .gitignore # ignore files for git (not required)

1.1. Tweak vimeo/__init__.py

This file contains the generated configuration of your rest_api. You can continue with the next steps and leave it as is, but you might want to come back here and make adjustments if you need your rest_api source set up in a different way. The generated file for the vimeo source will look like this:

Click to view full file (2603 lines)

from typing import List

import dlt
from dlt.extract.source import DltResource
from rest_api import rest_api_source
from rest_api.typing import RESTAPIConfig


@dlt.source(name="vimeo_source", max_table_nesting=2)
def vimeo_source(
token: str = dlt.secrets.value,
base_url: str = dlt.config.value,
) -> List[DltResource]:

# source configuration
source_config: RESTAPIConfig = {
"client": {
"base_url": base_url,
"auth": {

"type": "bearer",
"token": token,

},
"paginator": {
"type":
"page_number",
"page_param":
"page",
"total_path":
"",
"maximum_page":
20,
},
},
"resources":
[
# This method returns a full specification for the Vimeo API.
{
"name": "get_endpoints",
"table_name": "",
"endpoint": {
"data_selector": "methods",
"path": "/",
"params": {
# the parameters below can optionally be configured
# "openapi": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos in the authenticated user's feed.
{
"name": "get_feed_alt1",
"table_name": "activity_3_1",
"endpoint": {
"data_selector": "$",
"path": "/me/feed",
"params": {
# the parameters below can optionally be configured
# "page": "OPTIONAL_CONFIG",
# "type": "OPTIONAL_CONFIG",

},
"paginator": {
"type":
"offset",
"limit":
20,
"offset_param":
"offset",
"limit_param":
"per_page",
"total_path":
"",
"maximum_offset":
20,
},
}
},
# This method returns all the videos in the authenticated user's feed.
{
"name": "get_feed",
"table_name": "activity_3_1",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/feed",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "page": "OPTIONAL_CONFIG",
# "type": "OPTIONAL_CONFIG",

},
"paginator": {
"type":
"offset",
"limit":
20,
"offset_param":
"offset",
"limit_param":
"per_page",
"total_path":
"",
"maximum_offset":
20,
},
}
},
# This method gets all the albums from the specified user's account.
{
"name": "get_albums_alt1",
"table_name": "album",
"endpoint": {
"data_selector": "$",
"path": "/me/albums",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single album.
{
"name": "get_album_alt1",
"table_name": "album",
"endpoint": {
"data_selector": "$",
"path": "/me/albums/{album_id}",
"params": {
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the albums from the specified user's account.
{
"name": "get_albums",
"table_name": "album",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single album.
{
"name": "get_album",
"table_name": "album",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
{
"name": "get_available_video_albums",
"table_name": "album",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/available_albums",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets all existing categories.
{
"name": "get_categories",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/categories",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single category.
{
"name": "get_category",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/categories/{category}",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the categories in the specified channel.
{
"name": "get_channel_categories",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/categories",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the categories to which a particular user has subscribed.
{
"name": "get_category_subscriptions_alt1",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/me/categories",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user is subscribed to the specified category.
{
"name": "check_if_user_subscribed_to_category_alt1",
"table_name": "category",
"endpoint": {
"path": "/me/categories/{category}",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the categories to which a particular user has subscribed.
{
"name": "get_category_subscriptions",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/categories",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user is subscribed to the specified category.
{
"name": "check_if_user_subscribed_to_category",
"table_name": "category",
"endpoint": {
"path": "/users/{user_id}/categories/{category}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"category": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the categories that contain a particular video.
{
"name": "get_video_categories",
"table_name": "category",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/categories",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the channels that belong to a category.
{
"name": "get_category_channels",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/categories/{category}/channels",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all existing channels.
{
"name": "get_channels",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/channels",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single channel.
{
"name": "get_channel",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the channels to which the specified user subscribes.
{
"name": "get_channel_subscriptions_alt1",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/me/channels",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a specific user is a follower of the channel in question.
{
"name": "check_if_user_subscribed_to_channel_alt1",
"table_name": "channel",
"endpoint": {
"path": "/me/channels/{channel_id}",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the channels to which the specified user subscribes.
{
"name": "get_channel_subscriptions",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/channels",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a specific user is a follower of the channel in question.
{
"name": "check_if_user_subscribed_to_channel",
"table_name": "channel",
"endpoint": {
"path": "/users/{user_id}/channels/{channel_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_available_video_channels",
"table_name": "channel",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/available_channels",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the comments on the specified video.
{
"name": "get_comments_alt1",
"table_name": "comment",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/comments",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the comments on the specified video.
{
"name": "get_comments",
"table_name": "comment",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/comments",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns the specified comment on a video.
{
"name": "get_comment",
"table_name": "comment",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/comments/{comment_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"comment_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the replies to the specified video comment.
{
"name": "get_comment_replies",
"table_name": "comment",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/comments/{comment_id}/replies",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"comment_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns all available content ratings.
{
"name": "get_content_ratings",
"table_name": "content_rating",
"endpoint": {
"data_selector": "$",
"path": "/contentratings",
}
},
# This method returns all available Creative Commons licenses.
{
"name": "get_cc_licenses",
"table_name": "creative_commons",
"endpoint": {
"data_selector": "$",
"path": "/creativecommons",
}
},
# This method returns all the credited users in a video.
{
"name": "get_video_credits_alt1",
"table_name": "credit",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/credits",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the credited users in a video.
{
"name": "get_video_credits",
"table_name": "credit",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/credits",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single credited user in a video.
{
"name": "get_video_credit",
"table_name": "credit",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/credits/{credit_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"credit_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the domains on the specified video's whitelist.
{
"name": "get_video_privacy_domains",
"table_name": "domain",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/privacy/domains",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether the authenticated user is a follower of the user in question.
{
"name": "check_if_user_is_following_alt1",
"table_name": "following",
"endpoint": {
"path": "/me/following/{follow_user_id}",
"params": {
"follow_user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method determines whether the authenticated user is a follower of the user in question.
{
"name": "check_if_user_is_following",
"table_name": "following",
"endpoint": {
"path": "/users/{user_id}/following/{follow_user_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"follow_user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the groups that belong to a category.
{
"name": "get_category_groups",
"table_name": "group",
"endpoint": {
"data_selector": "$",
"path": "/categories/{category}/groups",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all groups.
{
"name": "get_groups",
"table_name": "group",
"endpoint": {
"data_selector": "$",
"path": "/groups",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns a specific group.
{
"name": "get_group",
"table_name": "group",
"endpoint": {
"data_selector": "$",
"path": "/groups/{group_id}",
"params": {
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the groups to which a particular user belongs.
{
"name": "get_user_groups_alt1",
"table_name": "group",
"endpoint": {
"data_selector": "$",
"path": "/me/groups",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user belongs to the specified group.
{
"name": "check_if_user_joined_group_alt1",
"table_name": "group",
"endpoint": {
"path": "/me/groups/{group_id}",
"params": {
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the groups to which a particular user belongs.
{
"name": "get_user_groups",
"table_name": "group",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/groups",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user belongs to the specified group.
{
"name": "check_if_user_joined_group",
"table_name": "group",
"endpoint": {
"path": "/users/{user_id}/groups/{group_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the video languages that Vimeo supports.
{
"name": "get_languages",
"table_name": "language",
"endpoint": {
"data_selector": "$",
"path": "/languages",
"params": {
# the parameters below can optionally be configured
# "filter": "OPTIONAL_CONFIG",

},
}
},
# This method checks if the specified user has liked a particular video.
{
"name": "check_if_user_liked_video_alt1",
"table_name": "like",
"endpoint": {
"path": "/me/likes/{video_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method checks if the specified user has liked a particular video.
{
"name": "check_if_user_liked_video",
"table_name": "like",
"endpoint": {
"path": "/users/{user_id}/likes/{video_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns the representation of the authenticated user.
{
"name": "get_user_alt1",
"table_name": "me",
"endpoint": {
"data_selector": "content_filter",
"path": "/me",
}
},
# Information about this method appears below.
{
"name": "get_vod_genres",
"table_name": "on_demand_genre",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/genres",
}
},
# Information about this method appears below.
{
"name": "get_vod_genre",
"table_name": "on_demand_genre",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/genres/{genre_id}",
"params": {
"genre_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_genres_by_ondemand_id",
"table_name": "on_demand_genre",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/genres",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_genre_by_ondemand_id",
"table_name": "on_demand_genre",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/genres/{genre_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"genre_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_user_vods_alt1",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/me/ondemand/pages",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_purchases",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/me/ondemand/purchases",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "check_if_vod_was_purchased_alt1",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/me/ondemand/purchases/{ondemand_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the On Demand pages that are in a specific genre.
{
"name": "get_genre_vods",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/genres/{genre_id}/pages",
"params": {
"genre_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Check whether a genre contains an On Demand page.
{
"name": "get_genre_vod",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/genres/{genre_id}/pages/{ondemand_id}",
"params": {
"genre_id": "FILL_ME_IN", # TODO: fill in required path parameter
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_user_vods",
"table_name": "on_demand_page",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/ondemand/pages",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_promotion",
"table_name": "on_demand_promotion",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/promotions/{promotion_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"promotion_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the codes of a promotion on an On Demand page.
{
"name": "get_vod_promotion_codes",
"table_name": "on_demand_promotion_code",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/promotions/{promotion_id}/codes",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"promotion_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_regions",
"table_name": "on_demand_region",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/regions",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Checks whether an On Demand page belongs to a region.
{
"name": "get_vod_region",
"table_name": "on_demand_region",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/regions/{country}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"country": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_regions",
"table_name": "on_demand_region",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/regions",
}
},
# Information about this method appears below.
{
"name": "get_region",
"table_name": "on_demand_region",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/regions/{country}",
"params": {
"country": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_seasons",
"table_name": "on_demand_season",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/seasons",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_season",
"table_name": "on_demand_season",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/seasons/{season_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"season_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the thumbnail images of the specified video.
{
"name": "get_video_thumbnails_alt1",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/pictures",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the custom logos that belong to the specified user.
{
"name": "get_custom_logos_alt1",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/me/customlogos",
}
},
# This method returns a single custom logo belonging to the specified user.
{
"name": "get_custom_logo_alt1",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/me/customlogos/{logo_id}",
"params": {
"logo_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the portrait images belonging to the authenticated user.
{
"name": "get_pictures_alt1",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/me/pictures",
"params": {
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single portrait image belonging to the authenticated user.
{
"name": "get_picture_alt1",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/me/pictures/{portraitset_id}",
"params": {
"portraitset_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_backgrounds",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/backgrounds",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_background",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/backgrounds/{background_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"background_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_posters",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/pictures",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_poster",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/pictures/{poster_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"poster_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the custom uploaded thumbnails from the specified album.
{
"name": "get_album_custom_thumbs",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/custom_thumbnails",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos associated with the specified tag.
{
"name": "get_album_custom_thumbnail",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/custom_thumbnails/{thumbnail_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
"thumbnail_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the custom logos from the specified album.
{
"name": "get_album_logos",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/logos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single custom logo from the specified album.
{
"name": "get_album_logo",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/logos/{logo_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
"logo_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the custom logos that belong to the specified user.
{
"name": "get_custom_logos",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/customlogos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns a single custom logo belonging to the specified user.
{
"name": "get_custom_logo",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/customlogos/{logo_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"logo_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the portrait images belonging to the authenticated user.
{
"name": "get_pictures",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/pictures",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single portrait image belonging to the authenticated user.
{
"name": "get_picture",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/pictures/{portraitset_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"portraitset_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the thumbnail images of the specified video.
{
"name": "get_video_thumbnails",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/pictures",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single thumbnail image from the specified video.
{
"name": "get_video_thumbnail",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/pictures/{picture_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"picture_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns a single timeline event thumbnail that belongs to the specified video.
{
"name": "get_video_custom_logo",
"table_name": "picture",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/timelinethumbnails/{thumbnail_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"thumbnail_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the specified user's portfolios.
{
"name": "get_portfolios_alt1",
"table_name": "portfolio",
"endpoint": {
"data_selector": "$",
"path": "/me/portfolios",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single portfolio from the specified user.
{
"name": "get_portfolio_alt1",
"table_name": "portfolio",
"endpoint": {
"data_selector": "$",
"path": "/me/portfolios/{portfolio_id}",
"params": {
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the specified user's portfolios.
{
"name": "get_portfolios",
"table_name": "portfolio",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/portfolios",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single portfolio from the specified user.
{
"name": "get_portfolio",
"table_name": "portfolio",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/portfolios/{portfolio_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method determines whether the specified video uses a particular embed preset.
{
"name": "get_video_embed_preset",
"table_name": "preset",
"endpoint": {
"path": "/videos/{video_id}/presets/{preset_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"preset_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the embed presets that belong to the specified user.
{
"name": "get_embed_presets_alt1",
"table_name": "presets",
"endpoint": {
"data_selector": "$",
"path": "/me/presets",
"params": {
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single embed preset that belongs to the specified user.
{
"name": "get_embed_preset_alt1",
"table_name": "presets",
"endpoint": {
"data_selector": "$",
"path": "/me/presets/{preset_id}",
"params": {
"preset_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the embed presets that belong to the specified user.
{
"name": "get_embed_presets",
"table_name": "presets",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/presets",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single embed preset that belongs to the specified user.
{
"name": "get_embed_preset",
"table_name": "presets",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/presets/{preset_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"preset_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the projects that belong to the specified user.
{
"name": "get_projects_alt1",
"table_name": "project",
"endpoint": {
"data_selector": "$",
"path": "/me/projects",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single project that belongs to the specified user.
{
"name": "get_project_alt1",
"table_name": "project",
"endpoint": {
"data_selector": "$",
"path": "/me/projects/{project_id}",
"params": {
"project_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the projects that belong to the specified user.
{
"name": "get_projects",
"table_name": "project",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/projects",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single project that belongs to the specified user.
{
"name": "get_project",
"table_name": "project",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/projects/{project_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"project_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_promotions",
"table_name": "promotion",
"endpoint": {
"data_selector": "metadata.connections.codes.options",
"path": "/ondemand/pages/{ondemand_id}/promotions",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"filter": "FILL_ME_IN", # TODO: fill in required query parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "check_if_vod_was_purchased",
"table_name": "purchase",
"endpoint": {
"data_selector": "content_rating",
"path": "/users/{user_id}/ondemand/purchases",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the tags that have been added to the specified channel.
{
"name": "get_channel_tags",
"table_name": "tag",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/tags",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method determines whether a specific tag has been added to the channel in question.
{
"name": "check_if_channel_has_tag",
"table_name": "tag",
"endpoint": {
"path": "/channels/{channel_id}/tags/{word}",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"word": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets a specific tag from all available tags.
{
"name": "get_tag",
"table_name": "tag",
"endpoint": {
"data_selector": "$",
"path": "/tags/{word}",
"params": {
"word": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the tags associated with a video.
{
"name": "get_video_tags",
"table_name": "tag",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/tags",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method determines whether a particular tag has been added to a video.
{
"name": "check_video_for_tag",
"table_name": "tag",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/tags/{word}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"word": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the text tracks of the specified video.
{
"name": "get_text_tracks_alt1",
"table_name": "text_track",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/texttracks",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the text tracks of the specified video.
{
"name": "get_text_tracks",
"table_name": "text_track",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/texttracks",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns a single text track from the specified video.
{
"name": "get_text_track",
"table_name": "text_track",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/texttracks/{texttrack_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
"texttrack_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method, in conjunction with our [Getting Started](https://developer.vimeo.com/api/guides/start) guide, can help you learn how to use the Vimeo API.
{
"name": "developer_tutorial",
"table_name": "tutorial",
"endpoint": {
"path": "/tutorial",
}
},
# This method returns all the embed presets that belong to the specified user.
{
"name": "get_upload_attempt",
"table_name": "upload_attempt",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/uploads/{upload_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"upload_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the moderators of the specified channel.
{
"name": "get_channel_moderators",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/moderators",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single moderator of the specified channel.
{
"name": "get_channel_moderator",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/moderators/{user_id}",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the users who have access to the specified private channel.
{
"name": "get_channel_privacy_users",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/privacy/users",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the followers of a specific channel.
{
"name": "get_channel_subscribers",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/users",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"filter": "FILL_ME_IN", # TODO: fill in required query parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the users who have liked a particular video.
{
"name": "get_video_likes_alt1",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/likes",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the users who have access to the specified private video.
{
"name": "get_video_privacy_users_alt1",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}/privacy/users",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the users that belong to the specified group.
{
"name": "get_group_members",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/groups/{group_id}/users",
"params": {
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the followers of the authenticated user.
{
"name": "get_followers_alt1",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/me/followers",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all users that the authenticated user is following.
{
"name": "get_user_following_alt1",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/me/following",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the users who have liked a particular video on an On Demand page.
{
"name": "get_vod_likes",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/likes",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "search_users",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/users",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns the representation of the authenticated user.
{
"name": "get_user",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the followers of the authenticated user.
{
"name": "get_followers",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/followers",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all users that the authenticated user is following.
{
"name": "get_user_following",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/following",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the users who have liked a particular video.
{
"name": "get_video_likes",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/likes",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the users who have access to the specified private video.
{
"name": "get_video_privacy_users",
"table_name": "user",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/privacy/users",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method verifies that an OAuth 2 token exists.
{
"name": "verify_token",
"table_name": "verify",
"endpoint": {
"data_selector": "user.content_filter",
"path": "/oauth/verify",
}
},
# This method gets all the videos that belong to a category.
{
"name": "get_category_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/categories/{category}/videos",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single video from a category. Use it to determine whether the video belongs to the category.
{
"name": "check_category_for_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/categories/{category}/videos/{video_id}",
"params": {
"category": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the videos in a specific channel.
{
"name": "get_channel_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns a specific video in a channel. You can use it to determine whether the video is in the channel.
{
"name": "get_channel_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/channels/{channel_id}/videos/{video_id}",
"params": {
"channel_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method removes a single video from the specified group.
{
"name": "get_group_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/groups/{group_id}/videos",
"params": {
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single video from a group. You can use this method to determine whether the video belongs to the group.
{
"name": "get_group_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/groups/{group_id}/videos/{video_id}",
"params": {
"group_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the videos from the specified album.
{
"name": "get_album_videos_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/albums/{album_id}/videos",
"params": {
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "password": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",
# "weak_search": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single video from an album. You can use this method to determine whether the album contains the specified video.
{
"name": "get_album_video_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/albums/{album_id}/videos/{video_id}",
"params": {
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "password": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos in which the authenticated user has a credited appearance.
{
"name": "get_appearances_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/appearances",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos that the specified user has liked.
{
"name": "get_likes_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/likes",
"params": {
# the parameters below can optionally be configured
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos from the specified portfolio.
{
"name": "get_portfolio_videos_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/portfolios/{portfolio_id}/videos",
"params": {
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single video from the specified portfolio.
{
"name": "get_portfolio_video_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/portfolios/{portfolio_id}/videos/{video_id}",
"params": {
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the videos that make use of the specified embed preset.
{
"name": "get_embed_preset_videos_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/presets/{preset_id}/videos",
"params": {
"preset_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos that belong to the specified project.
{
"name": "get_project_videos_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/projects/{project_id}/videos",
"params": {
"project_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos that the authenticated user has uploaded.
{
"name": "get_videos_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/videos",
"params": {
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "filter_playable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user is the owner of the specified video.
{
"name": "check_if_user_owns_video_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/videos/{video_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below. **NOTE:** This endpoint is deprecated. Any request to it returns empty data with HTTP status code 200.
{
"name": "get_watch_history",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/watched/videos",
"params": {
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos from the specified user's Watch Later queue.
{
"name": "get_watch_later_queue_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/watchlater",
"params": {
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method checks the specified user's Watch Later queue for a particular video.
{
"name": "check_watch_later_queue_alt1",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/me/watchlater/{video_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# Information about this method appears below.
{
"name": "get_vod_season_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/seasons/{season_id}/videos",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"season_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/videos",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# Information about this method appears below.
{
"name": "get_vod_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/ondemand/pages/{ondemand_id}/videos/{video_id}",
"params": {
"ondemand_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the videos associated with the specified tag.
{
"name": "get_videos_with_tag",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/tags/{word}/videos",
"params": {
"word": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos from the specified album.
{
"name": "get_album_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/videos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "password": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",
# "weak_search": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single video from an album. You can use this method to determine whether the album contains the specified video.
{
"name": "get_album_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/albums/{album_id}/videos/{video_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"album_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "password": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos in which the authenticated user has a credited appearance.
{
"name": "get_appearances",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/appearances",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos that the specified user has liked.
{
"name": "get_likes",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/likes",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos from the specified portfolio.
{
"name": "get_portfolio_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/portfolios/{portfolio_id}/videos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method gets a single video from the specified portfolio.
{
"name": "get_portfolio_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/portfolios/{portfolio_id}/videos/{video_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"portfolio_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the videos that make use of the specified embed preset.
{
"name": "get_embed_preset_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/presets/{preset_id}/videos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"preset_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "per_page": "OPTIONAL_CONFIG",

},
}
},
# This method gets all the videos that belong to the specified project.
{
"name": "get_project_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/projects/{project_id}/videos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"project_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method returns all the videos that the authenticated user has uploaded.
{
"name": "get_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/videos",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "containing_uri": "OPTIONAL_CONFIG",
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "filter_playable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method determines whether a particular user is the owner of the specified video.
{
"name": "check_if_user_owns_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/videos/{video_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method gets all the videos from the specified user's Watch Later queue.
{
"name": "get_watch_later_queue",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/watchlater",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "filter_embeddable": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "query": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",

},
}
},
# This method checks the specified user's Watch Later queue for a particular video.
{
"name": "check_watch_later_queue",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/users/{user_id}/watchlater/{video_id}",
"params": {
"user_id": "FILL_ME_IN", # TODO: fill in required path parameter
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the videos that match custom search criteria.
{
"name": "search_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/videos",
"params": {
"query": "FILL_ME_IN", # TODO: fill in required query parameter
# the parameters below can optionally be configured
# "direction": "OPTIONAL_CONFIG",
# "filter": "OPTIONAL_CONFIG",
# "links": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",
# "sort": "OPTIONAL_CONFIG",
# "uris": "OPTIONAL_CONFIG",

},
}
},
# This method returns a single video.
{
"name": "get_video",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter

},
}
},
# This method returns all the related videos of a particular video.
{
"name": "get_related_videos",
"table_name": "video",
"endpoint": {
"data_selector": "$",
"path": "/videos/{video_id}/videos",
"params": {
"video_id": "FILL_ME_IN", # TODO: fill in required path parameter
# the parameters below can optionally be configured
# "filter": "OPTIONAL_CONFIG",
# "per_page": "OPTIONAL_CONFIG",

},
}
},
]
}

return rest_api_source(source_config)

2. Configuring your source and destination credentials

info

dlt-init-openapi will try to detect which authentication mechanism (if any) is used by the API in question and add a placeholder in your secrets.toml.

  • If you know your API needs authentication, but none was detected, you can learn more about adding authentication to the rest_api here.
  • OAuth detection currently is not supported, but you can supply your own authentication mechanism as outlined here.

The dlt cli will have created a .dlt directory in your project folder. This directory contains a config.toml file and a secrets.toml file that you can use to configure your pipeline. The automatically created version of these files look like this:

generated config.toml


[runtime]
log_level="INFO"

[sources.vimeo]
# Base URL for the API
# Vimeo.com
base_url = "https://api.vimeo.com"

generated secrets.toml


[sources.vimeo]
# secrets for your vimeo source
token = "FILL ME OUT" # TODO: fill in your credentials

2.1. Adjust the generated code to your usecase

Further help setting up your source and destinations

At this time, the dlt-init-openapi cli tool will always create pipelines that load to a local duckdb instance. Switching to a different destination is trivial, all you need to do is change the destination parameter in vimeo_pipeline.py to redshift and supply the credentials as outlined in the destination doc linked below.

  • Read more about setting up the rest_api source in our docs.
  • Read more about setting up the Redshift destination in our docs.

3. Running your pipeline for the first time

The dlt cli has also created a main pipeline script for you at vimeo_pipeline.py, as well as a folder vimeo that contains additional python files for your source. These files are your local copies which you can modify to fit your needs. In some cases you may find that you only need to do small changes to your pipelines or add some configurations, in other cases these files can serve as a working starting point for your code, but will need to be adjusted to do what you need them to do.

The main pipeline script will look something like this:


import dlt

from vimeo import vimeo_source


if __name__ == "__main__":
pipeline = dlt.pipeline(
pipeline_name="vimeo_pipeline",
destination='duckdb',
dataset_name="vimeo_data",
progress="log",
export_schema_path="schemas/export"
)
source = vimeo_source()
info = pipeline.run(source)
print(info)

Provided you have set up your credentials, you can run your pipeline like a regular python script with the following command:

python vimeo_pipeline.py

4. Inspecting your load result

You can now inspect the state of your pipeline with the dlt cli:

dlt pipeline vimeo_pipeline info

You can also use streamlit to inspect the contents of your Redshift destination for this:

# install streamlit
pip install streamlit
# run the streamlit app for your pipeline with the dlt cli:
dlt pipeline vimeo_pipeline show

5. Next steps to get your pipeline running in production

One of the beauties of dlt is, that we are just a plain Python library, so you can run your pipeline in any environment that supports Python >= 3.8. We have a couple of helpers and guides in our docs to get you there:

The Deploy section will show you how to deploy your pipeline to

  • Deploy with GitHub Actions: Learn how to deploy a dlt pipeline using GitHub Actions by following this guide.
  • Deploy with Airflow and Google Composer: Deploy your dlt pipeline using Airflow and Google Composer with step-by-step instructions here.
  • Deploy with Google Cloud Functions: Follow this tutorial to deploy your dlt pipeline using Google Cloud Functions.
  • Explore Other Deployment Options: Discover additional methods to deploy a dlt pipeline by exploring various walkthroughs here.

The running in production section will teach you about:

  • How to Monitor your pipeline: Learn how to effectively monitor your dlt pipeline in production to ensure it runs smoothly and efficiently. Read more
  • Set up alerts: Set up alerts to get notified of any issues or anomalies in your dlt pipeline, helping you to quickly address problems and maintain data integrity. Read more
  • Set up tracing: Implement tracing to gain deeper insights into the execution and performance of your dlt pipeline, making it easier to debug and optimize. Read more

Available Sources and Resources

For this verified source the following sources and resources are available

Source Vimeo

Vimeo source provides user, video, project, and promotional data for comprehensive video management.

Resource NameWrite DispositionDescription
userappendRepresents a Vimeo user profile.
projectappendRefers to a collection of videos grouped together by a user.
on_demand_genreappendCategories for on-demand videos, helping to organize and discover content.
on_demand_promotion_codeappendCodes used for promotions on on-demand videos.
presetsappendPredefined settings for video uploads and processing.
purchaseappendRecords of video purchases made by users.
likeappendInstances of users liking a video.
creditappendCredits given to users for various activities or promotions.
channelappendCollections of videos curated by users.
creative_commonsappendInformation about videos licensed under Creative Commons.
tagappendLabels assigned to videos to categorize and improve searchability.
meappendInformation about the authenticated user.
domainappendDomains associated with video embedding and privacy settings.
languageappendLanguages available for video metadata and subtitles.
albumappendCollections of videos grouped by users.
videoappendIndividual video content uploaded by users.
presetappendPredefined settings for video processing.
content_ratingappendRatings assigned to videos based on content suitability.
on_demand_seasonappendSeasons of on-demand video series.
activity_3_1appendUser activity logs and interactions with the platform.
categoryappendCategories used to classify videos.
commentappendComments made by users on videos.
portfolioappendCollections of videos showcasing a user's work.
text_trackappendSubtitles and captions for videos.
tutorialappendEducational content and guides for using Vimeo.
on_demand_regionappendRegions where on-demand videos are available.
on_demand_promotionappendPromotional campaigns for on-demand videos.
promotionappendGeneral promotions and discounts offered on the platform.
on_demand_pageappendPages dedicated to on-demand video content.
pictureappendThumbnails and images associated with videos and user profiles.
upload_attemptappendRecords of video upload attempts by users.
followingappendInformation on users and channels followed by a user.
verifyappendVerification status and details of users.
groupappendGroups of users with shared interests or goals.

Additional pipeline guides

This demo works on codespaces. Codespaces is a development environment available for free to anyone with a Github account. You'll be asked to fork the demo repository and from there the README guides you with further steps.
The demo uses the Continue VSCode extension.

Off to codespaces!

DHelp

Ask a question

Welcome to "Codex Central", your next-gen help center, driven by OpenAI's GPT-4 model. It's more than just a forum or a FAQ hub – it's a dynamic knowledge base where coders can find AI-assisted solutions to their pressing problems. With GPT-4's powerful comprehension and predictive abilities, Codex Central provides instantaneous issue resolution, insightful debugging, and personalized guidance. Get your code running smoothly with the unparalleled support at Codex Central - coding help reimagined with AI prowess.