Vimeo Albums API

The Albums API from Vimeo — 2 operation(s) for albums.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/vimeo-albums-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vimeo-albums-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Vimeo Albums API
  version: '3.4'
  description: 'The Vimeo REST API enables programmatic upload, management, embedding,

    and analytics of videos, albums, channels, groups, and users.

    Authentication uses OAuth 2.0 Bearer tokens. All requests are made

    against https://api.vimeo.com.

    '
  contact:
    name: Vimeo Developer Docs
    url: https://developer.vimeo.com/api/reference
servers:
- url: https://api.vimeo.com
  description: Vimeo API base URL
security:
- bearerAuth: []
tags:
- name: Albums
paths:
  /users/{user_id}/albums:
    parameters:
    - name: user_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Albums
      summary: List a user's albums
      operationId: listUserAlbums
      responses:
        '200':
          description: Albums list
    post:
      tags:
      - Albums
      summary: Create an album for a user
      operationId: createUserAlbum
      responses:
        '201':
          description: Album created
  /users/{user_id}/albums/{album_id}:
    parameters:
    - name: user_id
      in: path
      required: true
      schema:
        type: string
    - name: album_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Albums
      summary: Get an album
      operationId: getUserAlbum
      responses:
        '200':
          description: Album
    delete:
      tags:
      - Albums
      summary: Delete an album
      operationId: deleteUserAlbum
      responses:
        '204':
          description: Deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 Bearer token
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.vimeo.com/oauth/authorize
          tokenUrl: https://api.vimeo.com/oauth/access_token
          scopes:
            public: Access public data
            private: Access private data
            create: Create albums, channels, etc.
            edit: Edit videos, albums, channels
            delete: Delete videos, albums, channels
            upload: Upload videos
        clientCredentials:
          tokenUrl: https://api.vimeo.com/oauth/authorize/client
          scopes:
            public: Access public data