{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vimeo",
    "name": "Vimeo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/vimeo",
    "canonicalUrl": "https://clawhub.ai/byungkyu/vimeo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vimeo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vimeo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "vimeo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T16:20:09.497Z",
      "expiresAt": "2026-05-17T16:20:09.497Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vimeo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vimeo",
        "contentDisposition": "attachment; filename=\"vimeo-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vimeo"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vimeo"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vimeo",
    "agentPageUrl": "https://openagent3.xyz/skills/vimeo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vimeo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vimeo/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Vimeo",
        "body": "Access the Vimeo API with managed OAuth authentication. Upload and manage videos, create showcases and folders, manage likes and watch later, and interact with the Vimeo community."
      },
      {
        "title": "Quick Start",
        "body": "# Get current user info\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/vimeo/me')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/vimeo/{resource}\n\nThe gateway proxies requests to api.vimeo.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Vimeo OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=vimeo&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'vimeo'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"a6ecb894-3148-4f4c-a54c-e9d917e3f2a9\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-09T08:56:53.522100Z\",\n    \"last_updated_time\": \"2026-02-09T08:58:39.407864Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"vimeo\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Vimeo connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/vimeo/me')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'a6ecb894-3148-4f4c-a54c-e9d917e3f2a9')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "User Operations",
        "body": "Get Current User\n\nGET /vimeo/me\n\nResponse:\n\n{\n  \"uri\": \"/users/254399456\",\n  \"name\": \"Chris\",\n  \"link\": \"https://vimeo.com/user254399456\",\n  \"account\": \"free\",\n  \"created_time\": \"2026-02-09T07:00:20+00:00\",\n  \"pictures\": {...},\n  \"metadata\": {\n    \"connections\": {\n      \"videos\": {\"uri\": \"/users/254399456/videos\", \"total\": 2},\n      \"albums\": {\"uri\": \"/users/254399456/albums\", \"total\": 0},\n      \"folders\": {\"uri\": \"/users/254399456/folders\", \"total\": 0},\n      \"likes\": {\"uri\": \"/users/254399456/likes\", \"total\": 0},\n      \"followers\": {\"uri\": \"/users/254399456/followers\", \"total\": 0},\n      \"following\": {\"uri\": \"/users/254399456/following\", \"total\": 0}\n    }\n  }\n}\n\nGet User by ID\n\nGET /vimeo/users/{user_id}\n\nGet User Feed\n\nGET /vimeo/me/feed"
      },
      {
        "title": "Video Operations",
        "body": "List User Videos\n\nGET /vimeo/me/videos\n\nResponse:\n\n{\n  \"total\": 2,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"paging\": {\n    \"next\": null,\n    \"previous\": null,\n    \"first\": \"/me/videos?page=1\",\n    \"last\": \"/me/videos?page=1\"\n  },\n  \"data\": [\n    {\n      \"uri\": \"/videos/1163160198\",\n      \"name\": \"My Video\",\n      \"description\": \"Video description\",\n      \"link\": \"https://vimeo.com/1163160198\",\n      \"duration\": 20,\n      \"width\": 1920,\n      \"height\": 1080,\n      \"created_time\": \"2026-02-09T07:05:00+00:00\"\n    }\n  ]\n}\n\nGet Video\n\nGET /vimeo/videos/{video_id}\n\nSearch Videos\n\nGET /vimeo/videos?query=nature&per_page=10\n\nQuery parameters:\n\nquery - Search query\nper_page - Results per page (max 100)\npage - Page number\nsort - Sort order: relevant, date, alphabetical, plays, likes, comments, duration\ndirection - Sort direction: asc, desc\n\nUpdate Video\n\nPATCH /vimeo/videos/{video_id}\nContent-Type: application/json\n\n{\n  \"name\": \"New Video Title\",\n  \"description\": \"Updated description\"\n}\n\nDelete Video\n\nDELETE /vimeo/videos/{video_id}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Folder Operations (Projects)",
        "body": "List Folders\n\nGET /vimeo/me/folders\n\nResponse:\n\n{\n  \"total\": 1,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"data\": [\n    {\n      \"uri\": \"/users/254399456/projects/28177219\",\n      \"name\": \"My Folder\",\n      \"created_time\": \"2026-02-09T08:59:20+00:00\",\n      \"privacy\": {\"view\": \"nobody\"},\n      \"manage_link\": \"https://vimeo.com/user/254399456/folder/28177219\"\n    }\n  ]\n}\n\nCreate Folder\n\nPOST /vimeo/me/folders\nContent-Type: application/json\n\n{\n  \"name\": \"New Folder\"\n}\n\nUpdate Folder\n\nPATCH /vimeo/me/projects/{project_id}\nContent-Type: application/json\n\n{\n  \"name\": \"Renamed Folder\"\n}\n\nDelete Folder\n\nDELETE /vimeo/me/projects/{project_id}\n\nReturns 204 No Content on success.\n\nGet Folder Videos\n\nGET /vimeo/me/projects/{project_id}/videos\n\nAdd Video to Folder\n\nPUT /vimeo/me/projects/{project_id}/videos/{video_id}\n\nReturns 204 No Content on success.\n\nRemove Video from Folder\n\nDELETE /vimeo/me/projects/{project_id}/videos/{video_id}"
      },
      {
        "title": "Album Operations (Showcases)",
        "body": "List Albums\n\nGET /vimeo/me/albums\n\nCreate Album\n\nPOST /vimeo/me/albums\nContent-Type: application/json\n\n{\n  \"name\": \"My Showcase\",\n  \"description\": \"A collection of videos\"\n}\n\nResponse:\n\n{\n  \"uri\": \"/users/254399456/albums/12099981\",\n  \"name\": \"My Showcase\",\n  \"description\": \"A collection of videos\",\n  \"created_time\": \"2026-02-09T09:00:00+00:00\"\n}\n\nUpdate Album\n\nPATCH /vimeo/me/albums/{album_id}\nContent-Type: application/json\n\n{\n  \"name\": \"Updated Showcase Name\"\n}\n\nDelete Album\n\nDELETE /vimeo/me/albums/{album_id}\n\nReturns 204 No Content on success.\n\nGet Album Videos\n\nGET /vimeo/me/albums/{album_id}/videos\n\nAdd Video to Album\n\nPUT /vimeo/me/albums/{album_id}/videos/{video_id}\n\nReturns 204 No Content on success.\n\nRemove Video from Album\n\nDELETE /vimeo/me/albums/{album_id}/videos/{video_id}"
      },
      {
        "title": "Comments",
        "body": "Get Video Comments\n\nGET /vimeo/videos/{video_id}/comments\n\nAdd Comment\n\nPOST /vimeo/videos/{video_id}/comments\nContent-Type: application/json\n\n{\n  \"text\": \"Great video!\"\n}\n\nResponse:\n\n{\n  \"uri\": \"/videos/1163160198/comments/21372988\",\n  \"text\": \"Great video!\",\n  \"created_on\": \"2026-02-09T09:05:00+00:00\"\n}\n\nDelete Comment\n\nDELETE /vimeo/videos/{video_id}/comments/{comment_id}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Likes",
        "body": "Get Liked Videos\n\nGET /vimeo/me/likes\n\nLike a Video\n\nPUT /vimeo/me/likes/{video_id}\n\nReturns 204 No Content on success.\n\nUnlike a Video\n\nDELETE /vimeo/me/likes/{video_id}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Watch Later",
        "body": "Get Watch Later List\n\nGET /vimeo/me/watchlater\n\nAdd to Watch Later\n\nPUT /vimeo/me/watchlater/{video_id}\n\nReturns 204 No Content on success.\n\nRemove from Watch Later\n\nDELETE /vimeo/me/watchlater/{video_id}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Followers and Following",
        "body": "Get Followers\n\nGET /vimeo/me/followers\n\nGet Following\n\nGET /vimeo/me/following\n\nFollow a User\n\nPUT /vimeo/me/following/{user_id}\n\nUnfollow a User\n\nDELETE /vimeo/me/following/{user_id}"
      },
      {
        "title": "Channels and Categories",
        "body": "List All Channels\n\nGET /vimeo/channels\n\nGet Channel\n\nGET /vimeo/channels/{channel_id}\n\nList All Categories\n\nGET /vimeo/categories\n\nResponse:\n\n{\n  \"total\": 10,\n  \"data\": [\n    {\"uri\": \"/categories/animation\", \"name\": \"Animation\"},\n    {\"uri\": \"/categories/comedy\", \"name\": \"Comedy\"},\n    {\"uri\": \"/categories/documentary\", \"name\": \"Documentary\"}\n  ]\n}\n\nGet Category Videos\n\nGET /vimeo/categories/{category}/videos"
      },
      {
        "title": "Pagination",
        "body": "Vimeo uses page-based pagination:\n\nGET /vimeo/me/videos?page=1&per_page=25\n\nResponse:\n\n{\n  \"total\": 50,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"paging\": {\n    \"next\": \"/me/videos?page=2\",\n    \"previous\": null,\n    \"first\": \"/me/videos?page=1\",\n    \"last\": \"/me/videos?page=2\"\n  },\n  \"data\": [...]\n}\n\nParameters:\n\npage - Page number (default 1)\nper_page - Results per page (default 25, max 100)"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/vimeo/me/videos',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/vimeo/me/videos',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Python (Create Folder)",
        "body": "import os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/vimeo/me/folders',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'name': 'New Folder'}\n)\nfolder = response.json()\nprint(f\"Created folder: {folder['uri']}\")"
      },
      {
        "title": "Python (Update Video)",
        "body": "import os\nimport requests\n\nvideo_id = \"1163160198\"\nresponse = requests.patch(\n    f'https://gateway.maton.ai/vimeo/videos/{video_id}',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'name': 'Updated Title',\n        'description': 'New description'\n    }\n)\nvideo = response.json()\nprint(f\"Updated video: {video['name']}\")"
      },
      {
        "title": "Notes",
        "body": "Video IDs are numeric (e.g., 1163160198)\nUser IDs are numeric (e.g., 254399456)\nFolders are called \"projects\" in the API paths\nAlbums are also known as \"Showcases\" in the Vimeo UI\nDELETE and PUT operations return 204 No Content on success\nVideo uploads require the TUS protocol (not covered here)\nRate limits vary by account type\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Vimeo connection or bad request401Invalid or missing Maton API key403Insufficient permissions or scope404Resource not found429Rate limited4xx/5xxPassthrough error from Vimeo API\n\nVimeo errors include detailed messages:\n\n{\n  \"error\": \"Your access token does not have the \\\"create\\\" scope\"\n}"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with vimeo. For example:\n\nCorrect: https://gateway.maton.ai/vimeo/me/videos\nIncorrect: https://gateway.maton.ai/me/videos"
      },
      {
        "title": "Resources",
        "body": "Vimeo API Reference\nVimeo Developer Portal\nVimeo API Authentication\nVimeo Upload API\nMaton Community\nMaton Support"
      }
    ],
    "body": "Vimeo\n\nAccess the Vimeo API with managed OAuth authentication. Upload and manage videos, create showcases and folders, manage likes and watch later, and interact with the Vimeo community.\n\nQuick Start\n# Get current user info\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/vimeo/me')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/vimeo/{resource}\n\n\nThe gateway proxies requests to api.vimeo.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Vimeo OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=vimeo&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'vimeo'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"a6ecb894-3148-4f4c-a54c-e9d917e3f2a9\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-09T08:56:53.522100Z\",\n    \"last_updated_time\": \"2026-02-09T08:58:39.407864Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"vimeo\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Vimeo connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/vimeo/me')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'a6ecb894-3148-4f4c-a54c-e9d917e3f2a9')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nUser Operations\nGet Current User\nGET /vimeo/me\n\n\nResponse:\n\n{\n  \"uri\": \"/users/254399456\",\n  \"name\": \"Chris\",\n  \"link\": \"https://vimeo.com/user254399456\",\n  \"account\": \"free\",\n  \"created_time\": \"2026-02-09T07:00:20+00:00\",\n  \"pictures\": {...},\n  \"metadata\": {\n    \"connections\": {\n      \"videos\": {\"uri\": \"/users/254399456/videos\", \"total\": 2},\n      \"albums\": {\"uri\": \"/users/254399456/albums\", \"total\": 0},\n      \"folders\": {\"uri\": \"/users/254399456/folders\", \"total\": 0},\n      \"likes\": {\"uri\": \"/users/254399456/likes\", \"total\": 0},\n      \"followers\": {\"uri\": \"/users/254399456/followers\", \"total\": 0},\n      \"following\": {\"uri\": \"/users/254399456/following\", \"total\": 0}\n    }\n  }\n}\n\nGet User by ID\nGET /vimeo/users/{user_id}\n\nGet User Feed\nGET /vimeo/me/feed\n\nVideo Operations\nList User Videos\nGET /vimeo/me/videos\n\n\nResponse:\n\n{\n  \"total\": 2,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"paging\": {\n    \"next\": null,\n    \"previous\": null,\n    \"first\": \"/me/videos?page=1\",\n    \"last\": \"/me/videos?page=1\"\n  },\n  \"data\": [\n    {\n      \"uri\": \"/videos/1163160198\",\n      \"name\": \"My Video\",\n      \"description\": \"Video description\",\n      \"link\": \"https://vimeo.com/1163160198\",\n      \"duration\": 20,\n      \"width\": 1920,\n      \"height\": 1080,\n      \"created_time\": \"2026-02-09T07:05:00+00:00\"\n    }\n  ]\n}\n\nGet Video\nGET /vimeo/videos/{video_id}\n\nSearch Videos\nGET /vimeo/videos?query=nature&per_page=10\n\n\nQuery parameters:\n\nquery - Search query\nper_page - Results per page (max 100)\npage - Page number\nsort - Sort order: relevant, date, alphabetical, plays, likes, comments, duration\ndirection - Sort direction: asc, desc\nUpdate Video\nPATCH /vimeo/videos/{video_id}\nContent-Type: application/json\n\n{\n  \"name\": \"New Video Title\",\n  \"description\": \"Updated description\"\n}\n\nDelete Video\nDELETE /vimeo/videos/{video_id}\n\n\nReturns 204 No Content on success.\n\nFolder Operations (Projects)\nList Folders\nGET /vimeo/me/folders\n\n\nResponse:\n\n{\n  \"total\": 1,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"data\": [\n    {\n      \"uri\": \"/users/254399456/projects/28177219\",\n      \"name\": \"My Folder\",\n      \"created_time\": \"2026-02-09T08:59:20+00:00\",\n      \"privacy\": {\"view\": \"nobody\"},\n      \"manage_link\": \"https://vimeo.com/user/254399456/folder/28177219\"\n    }\n  ]\n}\n\nCreate Folder\nPOST /vimeo/me/folders\nContent-Type: application/json\n\n{\n  \"name\": \"New Folder\"\n}\n\nUpdate Folder\nPATCH /vimeo/me/projects/{project_id}\nContent-Type: application/json\n\n{\n  \"name\": \"Renamed Folder\"\n}\n\nDelete Folder\nDELETE /vimeo/me/projects/{project_id}\n\n\nReturns 204 No Content on success.\n\nGet Folder Videos\nGET /vimeo/me/projects/{project_id}/videos\n\nAdd Video to Folder\nPUT /vimeo/me/projects/{project_id}/videos/{video_id}\n\n\nReturns 204 No Content on success.\n\nRemove Video from Folder\nDELETE /vimeo/me/projects/{project_id}/videos/{video_id}\n\nAlbum Operations (Showcases)\nList Albums\nGET /vimeo/me/albums\n\nCreate Album\nPOST /vimeo/me/albums\nContent-Type: application/json\n\n{\n  \"name\": \"My Showcase\",\n  \"description\": \"A collection of videos\"\n}\n\n\nResponse:\n\n{\n  \"uri\": \"/users/254399456/albums/12099981\",\n  \"name\": \"My Showcase\",\n  \"description\": \"A collection of videos\",\n  \"created_time\": \"2026-02-09T09:00:00+00:00\"\n}\n\nUpdate Album\nPATCH /vimeo/me/albums/{album_id}\nContent-Type: application/json\n\n{\n  \"name\": \"Updated Showcase Name\"\n}\n\nDelete Album\nDELETE /vimeo/me/albums/{album_id}\n\n\nReturns 204 No Content on success.\n\nGet Album Videos\nGET /vimeo/me/albums/{album_id}/videos\n\nAdd Video to Album\nPUT /vimeo/me/albums/{album_id}/videos/{video_id}\n\n\nReturns 204 No Content on success.\n\nRemove Video from Album\nDELETE /vimeo/me/albums/{album_id}/videos/{video_id}\n\nComments\nGet Video Comments\nGET /vimeo/videos/{video_id}/comments\n\nAdd Comment\nPOST /vimeo/videos/{video_id}/comments\nContent-Type: application/json\n\n{\n  \"text\": \"Great video!\"\n}\n\n\nResponse:\n\n{\n  \"uri\": \"/videos/1163160198/comments/21372988\",\n  \"text\": \"Great video!\",\n  \"created_on\": \"2026-02-09T09:05:00+00:00\"\n}\n\nDelete Comment\nDELETE /vimeo/videos/{video_id}/comments/{comment_id}\n\n\nReturns 204 No Content on success.\n\nLikes\nGet Liked Videos\nGET /vimeo/me/likes\n\nLike a Video\nPUT /vimeo/me/likes/{video_id}\n\n\nReturns 204 No Content on success.\n\nUnlike a Video\nDELETE /vimeo/me/likes/{video_id}\n\n\nReturns 204 No Content on success.\n\nWatch Later\nGet Watch Later List\nGET /vimeo/me/watchlater\n\nAdd to Watch Later\nPUT /vimeo/me/watchlater/{video_id}\n\n\nReturns 204 No Content on success.\n\nRemove from Watch Later\nDELETE /vimeo/me/watchlater/{video_id}\n\n\nReturns 204 No Content on success.\n\nFollowers and Following\nGet Followers\nGET /vimeo/me/followers\n\nGet Following\nGET /vimeo/me/following\n\nFollow a User\nPUT /vimeo/me/following/{user_id}\n\nUnfollow a User\nDELETE /vimeo/me/following/{user_id}\n\nChannels and Categories\nList All Channels\nGET /vimeo/channels\n\nGet Channel\nGET /vimeo/channels/{channel_id}\n\nList All Categories\nGET /vimeo/categories\n\n\nResponse:\n\n{\n  \"total\": 10,\n  \"data\": [\n    {\"uri\": \"/categories/animation\", \"name\": \"Animation\"},\n    {\"uri\": \"/categories/comedy\", \"name\": \"Comedy\"},\n    {\"uri\": \"/categories/documentary\", \"name\": \"Documentary\"}\n  ]\n}\n\nGet Category Videos\nGET /vimeo/categories/{category}/videos\n\nPagination\n\nVimeo uses page-based pagination:\n\nGET /vimeo/me/videos?page=1&per_page=25\n\n\nResponse:\n\n{\n  \"total\": 50,\n  \"page\": 1,\n  \"per_page\": 25,\n  \"paging\": {\n    \"next\": \"/me/videos?page=2\",\n    \"previous\": null,\n    \"first\": \"/me/videos?page=1\",\n    \"last\": \"/me/videos?page=2\"\n  },\n  \"data\": [...]\n}\n\n\nParameters:\n\npage - Page number (default 1)\nper_page - Results per page (default 25, max 100)\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/vimeo/me/videos',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/vimeo/me/videos',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nPython (Create Folder)\nimport os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/vimeo/me/folders',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'name': 'New Folder'}\n)\nfolder = response.json()\nprint(f\"Created folder: {folder['uri']}\")\n\nPython (Update Video)\nimport os\nimport requests\n\nvideo_id = \"1163160198\"\nresponse = requests.patch(\n    f'https://gateway.maton.ai/vimeo/videos/{video_id}',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'name': 'Updated Title',\n        'description': 'New description'\n    }\n)\nvideo = response.json()\nprint(f\"Updated video: {video['name']}\")\n\nNotes\nVideo IDs are numeric (e.g., 1163160198)\nUser IDs are numeric (e.g., 254399456)\nFolders are called \"projects\" in the API paths\nAlbums are also known as \"Showcases\" in the Vimeo UI\nDELETE and PUT operations return 204 No Content on success\nVideo uploads require the TUS protocol (not covered here)\nRate limits vary by account type\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Vimeo connection or bad request\n401\tInvalid or missing Maton API key\n403\tInsufficient permissions or scope\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Vimeo API\n\nVimeo errors include detailed messages:\n\n{\n  \"error\": \"Your access token does not have the \\\"create\\\" scope\"\n}\n\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with vimeo. For example:\nCorrect: https://gateway.maton.ai/vimeo/me/videos\nIncorrect: https://gateway.maton.ai/me/videos\nResources\nVimeo API Reference\nVimeo Developer Portal\nVimeo API Authentication\nVimeo Upload API\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/vimeo",
    "publisherUrl": "https://clawhub.ai/byungkyu/vimeo",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vimeo",
    "downloadUrl": "https://openagent3.xyz/downloads/vimeo",
    "agentUrl": "https://openagent3.xyz/skills/vimeo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vimeo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vimeo/agent.md"
  }
}